body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F9F7F7;
  color: #112D4E;
}
header nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;

  background-color: rgba(63, 114, 175, 0.5); /* half-transparent blue */
  backdrop-filter: blur(10px); /* optional: adds nice blur behind */
  border-radius: 50px; /* oval effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  z-index: 1000;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.menu-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  z-index: 1100;
  cursor: pointer;
  color: white;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background-color: rgba(63, 114, 175, 0.5); /* semi-transparent */
  backdrop-filter: blur(10px);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 2rem 1rem;
  transition: left 0.4s ease;
  z-index: 1000;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-nav.show {
  left: 0;
}

.logo {
  width: 80px;
  margin-bottom: 1rem;
}
/* Logo */
.logo {
  width: 50px;
}

/* Navigation menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

/* Hover effect */
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: white;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: bottom right;
}
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Touch effect (temporary background color change) */
nav a:active {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
nav a.clicked {
  background-color: #F9F7F7;
  color: black;
  border-radius: 4px;
}

/* Smart text color on background */
header.scrolled {
  background-color: #ffffff;
  color: black;
}
header.scrolled nav a {
  color: black;
}
header.scrolled nav a::after {
  background-color: black;
}
.desktop-nav {
  display: flex;
}
.menu-btn,
.mobile-nav {
  display: none;
}


/* On small screens: show mobile, hide desktop nav */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important; /* 💥 FORCE hide desktop nav */
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    display: block;
  }
}
#home {
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* So text stacks */
  justify-content: center;
  align-items: center;
  color: white;
  padding:0px;
  text-align: center;
}

/* Text styling for responsiveness */
#home .overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#home .overlay h2 {
  font-size: 1.5rem;
  max-width: 90%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #home {
    background-attachment: scroll;
    height: 100vh;
  }

  #home .overlay h1 {
    font-size: 2rem;
  }

  #home .overlay h2 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #home .overlay h1 {
    font-size: 1.5rem;
  }

  #home .overlay h2 {
    font-size: 0.95rem;
  }
}
#home .overlay ul {
  list-style: none; /* removes browser's default dots */
  padding-left: 0;  /* removes left indent */
}

#home .overlay ul li p {
  font-size: 1.5rem;      /* same as h2 */
  font-weight: normal;    /* removes bold */
}
.split-section {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}


.switch-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  max-width: 1000px;
  margin: 2rem auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.switch-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-group button {
  background-color: #2196f3;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-group button:hover {
  background-color: #1769aa;
}
/* Entry animation */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-content {
  font-size: 1rem;
  line-height: 1.6;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  transition: all 0.3s ease;
}

.text-content ol {
  padding-left: 1.5rem;
}

.text-content li {
  margin-bottom: 0.8rem;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .switch-section {
    padding: 1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-group button {
    width: 100%;
    max-width: 300px;
  }

  .text-content {
    font-size: 0.95rem;
    padding: 1rem;
  }
}
footer {
  background-color: #112D4E;
  color: white;
  text-align: center;
  padding: 1rem;
}
.service-section {
  background-color: #DBE2EF;
  padding: 60px 0;
  width: 100%;
}

.service-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.text-side {
  flex: 1;
  min-width: 300px;
}

.text-side h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.text-side p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.download-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3F72AF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #2c598c;
}

.image-side {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.text-content {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #222e3a;
  background: #f4f7fb;
  padding: 28px 32px;
  margin: 28px 0 0 0;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(63, 114, 175, 0.07);
  text-align: left;
  transition: background 0.3s, color 0.3s;
}

@media (max-width: 700px) {
  .text-content {
    font-size: 16px;
    padding: 16px 8px;
  }
}

/* Optional: improve button group spacing and accessibility */
.btn-group {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-group button {
  font-family: inherit;
  font-size: 17px;
  border-radius: 6px;
  margin-right: 0;
  padding: 12px 26px;
  background: #3F72AF;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
}

.btn-group button:hover,
.btn-group button:focus {
  background: #2c598c;
  color: #eaf0fa;
}
.split-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.gallery-container {
  flex: 1 1 50%;
  position: relative;
  height: 100%;
  max-height: 600px;
  overflow: hidden;
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  font-size: 2rem;
  color: #333;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}
.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.text-content {
  flex: 1 1 50%;
  padding: 30px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }

  .gallery-container,
  .text-content {
    flex: 1 1 100%;
    max-height: 300px;
  }

  .gallery img {
    height: 300px;
  }
}
    * {
      font-family: 'Nunito', sans-serif;
      box-sizing: border-box;
    }

.faq-section {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  height: 70vh;
  background: #fff;
  border-radius: 0;
  overflow: auto;
}

.faq-left {
  flex: 1 1 40%;
  background: #03a9f4;
  color: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 👈 Pushes content up */
  padding-top: 80px;           /* 👈 Makes it higher from top */
}

.faq-left h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 16px;
  line-height: 1.5;
}

.faq-right {
  flex: 1 1 60%;
  padding: 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px; /* 👈 Adds spacing between FAQs */
}

.faq {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.faq-question {
  font-size: 18px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  transition: max-height 0.4s ease;
  padding-left: 15px;
}

.faq.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

.faq.active .arrow {
  transform: rotate(180deg);
}

@media(max-width: 768px) {
  .faq-section {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .faq-left, .faq-right {
    flex: 1 1 100%;
    padding: 30px;
  }

  .faq-right {
    gap: 15px;
  }
}
.doc-box {
  width: 100vw;
  min-height:50vh;
  background: #f5f9ff;
  padding: 4rem 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease;
}

.doc-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.doc-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.doc-content ol {
  list-style: none;
  padding-left: 0;
}

.doc-content li {
  margin: 0.8rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-btn {
  margin-left: auto;
  font-size: 0.9rem;
  background-color: #2196f3;
  color: white;
  padding: 5px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #1769aa;
}

/* Entry animation */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .doc-box {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .doc-content {
    padding: 1.5rem;
  }

  .doc-content h2 {
    font-size: 1.5rem;
  }

  .doc-content li {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .download-btn {
    margin-top: 0.5rem;
  }
}

.video-section {
  padding: 2rem;
  text-align: center;
  background: #f0f8ff;
  border-radius: 15px;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#show-video-btn {
  background-color: #2196f3;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 1rem 0;
}

#show-video-btn:hover {
  background-color: #1769aa;
}

#video-container {
  margin-top: 1rem;
  display: none;
}

#video-container video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Optional animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#video-container.show {
  display: block;
  animation: fadeIn 0.5s ease-out;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  background: #112D4E;
  color: #ffffff;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid #97a7b5;
}

.footer-left, .footer-right {
  flex: 1 1 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.footer-left h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2196f3;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  margin: 0.5rem 0;
}

.footer-left a {
  color: #2196f3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-left a:hover {
  color: #0d47a1;
}

.footer-right p {
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 1rem;
}

.footer-right a {
  color: #2196f3;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
    padding: 1rem 0;
  }

  .footer-left ul {
    padding-left: 0;
  }
}