@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
               'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #f3f2f0ff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

body.scrolled .primary-navigation {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-navigation .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d2e6fa;
  padding: 10px;
  width: 100%;
}

.home-link {
  display: inline-block;
  padding: 0;
}

.home-link:hover {
  color: #3ca0e7;
}

.home-logo {
  height: 50px; 
  width: auto;
}

.menu-icon {
  order: 2;
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
}

.menu {
  order: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 80px;
}

.menu li {
  position: relative;
  color: #000000;
  padding: 0 30px;
  font-weight: 800; 
  /*border-left: 2px solid #3ca0e7;*/
}

.menu li:first-child {
  border-left: none;
}

.menu li a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 800; 
}

.menu li a:hover,
.submenu-label:hover {
  color: white;
}

.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #d2e6fa;
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 260px; 
  box-sizing: border-box;
  white-space: nowrap;
  
}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  padding: 10px 15px;
}

.menu li ul li a {
  padding: 8px 30px 8px 12px; 
  display: block;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
  color: #000000 !important;
}

.menu li ul li a:hover {
  border-left-color: #3ca0e7;
  color: #000000 !important; 
}

.menu li:last-child ul {
  right: 0;
  left: auto;
  width: 260px; 
}

  .logo {
  display: flex;
  justify-content: center;
}
  
  .logo img {
  width: 25%;
  height: auto;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .primary-navigation .nav-container {
    padding-top: 0;
    padding-bottom: 0;
  }
    .home-link {
    margin-left: 140px;
  }
  
  .home-logo {
    height: 70px;
  }
  .menu li:last-child {
    margin-right: 80px; 
  }
}


/* Mobile Styles */
@media (max-width: 768px) {
  .primary-navigation .nav-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  ul.menu {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  background: #d2e6fa;
  border-radius: 0;
  margin: 0;
  padding: 15px 20px; 
}

ul.menu li ul {
  width: 100%;
  position: static;
  box-shadow: none;
  background: #eee;
  padding: 0;
  display: none;
}
  .menu-icon {
    display: block;
    font-size: 28px;
    padding: 10px 20px;
    color: #000000;
  }

  .menu {
    display: none;
    background: #d2e6fa;
    flex-direction: column;
    width: 100%;
    /*background: #f9f9f9;*/
    border-radius: 20px;
    margin-top: 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu li {
    width: 100%;
    padding: 15px 20px;
    border-left: none;
    
  }

  .menu li ul {
    position: static;
    display: none;
    background: #d2e6fa !important;
    padding: 0;
    box-shadow: none;
    width: 100%;
    font-weight: 800; 
  }

  .submenu-label {
	color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800; 
  }

  .submenu-label::after {
    content: "▼";
    font-size: 12px;
    margin-left: auto;
  }

  .submenu-toggle:checked + .submenu-label::after {
    content: "▲";
  }

  .submenu-toggle:checked + .submenu-label + ul {
    display: block;
  }

  .menu li ul li {
    width: 100%;
    padding: 15px 20px;
    /*border-top: 1px solid #ccc;*/
  }

  .menu li:hover > ul {
    display: none; 
  }
  
    .home-link {
    margin-left: 2rem; 
  }
  
   .menu li ul li a {
    font-weight: 800; 
  }
    .content {
    text-align: justify;
  }

  .content p {
    text-align: justify;
  }
  
  .logo img {
    width: 55%;   /* mobile size */
  }
  
  
  
}



.content {
  background: #f3f2f0ff;
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 120px; 
  padding-bottom: 80px;
}

@media (min-width: 769px) {
  .content {
	background: #f3f2f0ff;
    padding-top: 120px; 
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 100px;
    
    font-size: 1.4rem;        
	line-height: 1.7;        
    text-align: justify;
  }
}

.myGallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.myGallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  border-radius: 8px;
  cursor: pointer;
}


/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border: 4px solid white;
  border-radius: 10px;
}

.close,
.prev,
.next {
  position: absolute;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.close {
  top: 30px;
  right: 40px;
}

.prev {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.next {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.lightbox-img {
  cursor: pointer;
}

.brochure {
    max-width: 45em;     
    margin: 2em auto;    
    text-align: center;
  }

  .brochure img {
    width: 100%;         
    height: auto;        
    display: block;
    margin: 0 auto;
    border-radius: 10px; 
  }
  
@media (max-width: 768px) {
  /* Reduce gap between logo and first menu item */
  ul.menu {
    padding-top: 0; /* remove top padding */
  }

/*
  .menu li:first-child {
    padding-top: 10px; 
  }
*/
}

.content ul {
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0;
}

.content ul ul {
  list-style-type: circle;   /* sub-list */
  margin-left: 1.5em;
}

.content ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}

/* =========================
   CONTENT READABILITY LAYER
   ========================= */

.content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 8rem;
  padding: 1.5rem 1.2rem 4rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
}

/* Desktop improvements */
@media (min-width: 769px) {
  .content {
    max-width: 1000px;
    padding: 2.5rem 4rem 5rem;
    font-size: 1.15rem;
    line-height: 1.8;
  }
}

/* =========================
   HEADINGS
   ========================= */

.content h1 {
  font-size: 2rem;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}

.content h2 {
  font-size: 1.6rem;
  text-align: center;
  margin: 3rem 0 1.2rem;
}

/* Responsive heading sizes */
@media (min-width: 769px) {
  .content h1 {
    font-size: 2.4rem;
  }

  .content h2 {
    font-size: 1.8rem;
  }
}

/* =========================
   PARAGRAPHS
   ========================= */

.content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

/* Centered paragraphs (addresses, footer text) */
.content p.center {
  text-align: center;
}

/* =========================
   LISTS
   ========================= */

.content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.content ul ul {
  list-style-type: circle;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.content li {
  margin-bottom: 0.6rem;
}

/* =========================
   HORIZONTAL RULE
   ========================= */

.content hr {
  width: 70%;
  margin: 3rem auto;
  border: none;
  height: 2px;
  background: #333;
  opacity: 0.3;
}

/* =========================
   LINKS
   ========================= */

.content a {
  color: #3ca0e7;
  text-decoration: none;
  font-weight: 600;
}

.content a:hover {
  text-decoration: underline;
}

/* =========================
   DEVANAGARI / SPECIAL TEXT
   ========================= */

.devanagari-text {
  letter-spacing: 0.03em;
}
/* =====================================
   FLUID TYPOGRAPHY – TIGHT SPACING
   ===================================== */

.content {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 8rem;
  padding: clamp(1.3rem, 2.5vw, 2.5rem);
  font-size: clamp(1.1rem, 1.1vw + 0.9rem, 1.3rem);
  line-height: 1.75;
  color: #222;
}

/* =========================
   HEADINGS
   ========================= */

.content h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.6rem);
  text-align: center;
  margin: clamp(1.8rem, 3vw, 2.5rem) 0 clamp(0.8rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.content h2 {
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2rem);
  text-align: center;
  margin: clamp(2rem, 3vw, 2.6rem) 0 clamp(0.7rem, 1.3vw, 1rem);
}

/* =========================
   PARAGRAPHS
   ========================= */

.content p {
  margin-bottom: clamp(0.8rem, 1.2vw, 1.2rem);
  text-align: justify;
  hyphens: auto;
}

/* Reduce gap between consecutive paragraphs */
.content p + p {
  margin-top: 0;
}

/* =========================
   LISTS
   ========================= */

.content ul {
  list-style-type: disc;
  margin-left: clamp(1.2rem, 1.8vw, 1.6rem);
  margin-bottom: clamp(1rem, 1.8vw, 1.6rem);
}

.content ul ul {
  list-style-type: circle;
  margin-top: 0.4rem;
  margin-left: clamp(1.2rem, 1.6vw, 1.5rem);
}

.content li {
  margin-bottom: 0.4rem;
}

/* =========================
   HR
   ========================= */

.content hr {
  width: 70%;
  margin: clamp(2.2rem, 3vw, 3rem) auto;
  border: none;
  height: 2px;
  background: #333;
  opacity: 0.3;
}

/* =========================
   LINKS
   ========================= */

.content a {
  font-weight: 600;
  color: #3ca0e7;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

.logo-image1 {
  width: 80%;        /* scales relative to its container */
  max-width: 340px;  /* prevents it from being too large on big screens */
  height: auto;      /* maintains aspect ratio */
  display: block;    /* removes inline spacing */
  margin: 0 auto;    /* centers the logo */
}

/* Active menu link */
.menu li a.active {
    color: #3C6AE7 !important;      /* text turns white */
    border-bottom: 2px solid #3C6AE7;  /* underline */
    padding-bottom: 4px;          /* small spacing for underline */
}

/* Optional: keep hover effect */
.menu li a.active:hover {
    color: #3C6AE7 !important;
}


