/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
   
html {
    scroll-behavior: smooth;
}

/* Set background color and text color */
body {
    background-color: #07897e;
    color: white;
    font-family: Arial, sans-serif;
}
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: radial-gradient(circle at 40% 60%, #07897e, #070707);
    /* Transparent effect */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    /* Smooth height transition */
    height: 70px;
  }
  
  /* Smaller navbar when scrolling */
  .navbar.scrolled {
    height: 70px;
    /* Reduced height when scrolled */
    padding: 15px;
    background-color: rgba(0, 0, 0, 1);
    /* Full opaque background when scrolled */
  }
  
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
   .logo a {
    text-decoration:none ;
    color: #ffffff;
  }

  .logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }
  
  #logo-text {
    font-size: 20px;
    font-weight: bold;
    display: flex;
  }
  
  #logo-text span {
    display: inline-block;
    transform: translateY(-50px);
    opacity: 0;
    animation: drop-letter 0.5s ease-in-out forwards;
  }
  
  
  
  
  .menu {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  .menu li {
    position: relative;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }
  
  .menu li:hover {
    color: gold;
  }
  
  .menu li a {
    text-decoration: none;
    color: white;
  }
  
  .menu li a:hover {
    color: gold;
  }
  
  .menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: gold;
    transition: width 0.3s ease;
  }
  
  .menu li:hover::after {
    width: 100%;
  }
  
  
  
  /* From Uiverse.io by ShrinilDhorda */ 
  .btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 0.4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: rgb(14, 14, 26);
    color: rgb(234, 234, 234);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 60px #1f4c65;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
  }
  
  .btn:active {
    scale: 0.92;
  }
  
  .btn:hover {
    background: rgb(2,29,78);
    background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
    color: rgb(4, 4, 38);
  }
  .call-icon {
    font-size: 18px;
  
  }
  
  
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 20px; /* Set top position of hamburger */
    right: 20px; /* Align hamburger to the right */
  }
  
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s;
  }
  
  /* Responsive Styles */
  @media (max-width: 950px) {
    /* Menu Settings for Small Screens */
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px; /* Adjust the top margin */
      right: 10px;
      background-color: #07897e;
      width: 100%; /* Decrease width for mobile view */
      padding: 20px;
      box-sizing: border-box;
      border-radius: 10px;
    }
  
    /* Contact Button inside hamburger (keeps existing style) */
    .btn {
      display: none;
      margin-top: 20px;
    }
  
    /* Show Hamburger Icon */
    .hamburger {
      display: flex;
    }
  
    /* Show Menu when Active */
    .menu.show {
      display: flex;
    }
  
    /* Cross Icon When Menu is Active */
    .hamburger.active .bar:nth-child(1) {
      transform: rotate(45deg);
      position: relative;
      top: 6px;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: rotate(-45deg);
      position: relative;
      top: -6px;
    }
  }
  
  
  /* Animations */
  @keyframes drop-letter {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes line-grow {
    0% {
      width: 0;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @keyframes pulse {
  
    0%,
    100% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.1);
    }
  }



/* Service Details Section */
.service-details {
    max-width: 70%;
    margin: 120px auto 50px;
    padding: 20px;
}

/* Main Heading */
.service-details h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

/* Subheadings */
.service-details h2,
.service-details h3 {
    text-align: left;
    font-size: 28px;
    color: black;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs */
.service-details p,
.service-details li {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Lists */
.service-details ul {
    text-align: left;
    padding-left: 20px;
    color: white;
}

/* Tables */
.service-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    color: white;
    font-size: 18px;
}
.service-details th, .service-details td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

/* Back Button */
.btn-2 {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #07897e;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-2:hover {
    background-color: #eee;
}



.table-header {
  background-color: #070707;
}


.faq-question {
    width: 100%;
    text-align: left;
    font-size: 20px;
    margin-top: 10px;
    padding: 12px;
    background-color: #07897e;
    color: white;
    border: none;
    cursor: pointer;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border-radius: 4px;
  }

  .faq-answer {
    display: none;
    padding: 10px 15px;
    background-color: #07897e;
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
    border-left: 4px solid #07897e;
  }

  .faq-answer.show {
    display: block;
  }


  /* Tablet Devices (768px – 1024px) */
@media screen and (max-width: 1024px) {
  .service-details {
    max-width: 90%;
    padding: 15px;
    margin: 100px auto 40px;
  }

  .service-details h1 {
    font-size: 30px;
  }

  .service-details h2,
  .service-details h3 {
    font-size: 24px;
  }

  .service-details p,
  .service-details ul,
  .service-details ol,
  .service-details .quote,
  .service-details .cta {
    font-size: 18px;
  }

  .service-details table th,
  .service-details table td {
    font-size: 16px;
    padding: 8px;
  }

  .btn-2 {
    font-size: 15px;
    padding: 10px 16px;
  }

  .faq .question,
  .faq .answer {
    font-size: 0.95rem;
  }
}

/* Mobile Devices (below 768px) */
@media screen and (max-width: 767px) {
  .service-details {
    max-width: 95%;
    padding: 10px;
    margin: 80px auto 30px;
  }

  .service-details h1 {
    font-size: 26px;
    text-align: left;
  }

  .service-details h2,
  .service-details h3 {
    font-size: 20px;
  }

  .service-details p,
  .service-details ul,
  .service-details ol,
  .service-details .quote,
  .service-details .cta {
    font-size: 16px;
  }

  .service-details ul,
  .service-details ol {
    padding-left: 18px;
  }

  /* Make table mobile-friendly */
  .service-details table {
    display: block;
    overflow-x: auto;
    font-size: 14px;
    margin: 20px 0;
  }

  .service-details table thead {
    display: none;
  }

  .service-details table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
  }

  .service-details table td {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .btn-2 {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 25px;
  }

  .faq .question,
  .faq .answer {
    font-size: 0.9rem;
    padding: 8px;
  }
}




  /* Footer css */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  flex-wrap: wrap;
  background-color: #014d46;
  color: white;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-left: 5%;
  flex: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

#logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-top: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info i {
  margin-right: 8px;
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgb(0, 0, 0);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.social-icons-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons-row a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons-row a:hover {
  color: gold;
}

.footer-links {
  display: flex;
  gap: 300px;
  margin-right: 5%;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: gold;
}

/* Bottom Footer Line and Copyright */
.footer-bottom {
  background-color: #014d46;
  text-align: center;
  padding: 15px 30px;
}

.footer-line {
  border: none;
  border-top: 5px solid #ffffff;
  margin-bottom: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.infonav-link {
  color: white;
  text-decoration: none;
}

.infonav-link:hover {
  color: gold;
  text-decoration: underline;
}





@media (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .footer-left {
    width: 100%;
    max-width: 48%;
    margin-left: 0;
  }

  .footer-links {
    width: 100%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    margin-right: 0;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .footer-bottom p {
    font-size: 0.95rem;
  }
}


/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .footer-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 15px;
    gap: 20px;
  }

  .footer-left,
  .footer-links {
    width: 100% !important;
    max-width: 100%;
    align-items: center;
  }

  .footer-links {
    flex-direction: column !important;
    justify-content: center;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column-title {
    font-size: 1rem;
  }

  .logo-link {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  #logo-text {
    font-size: 1.3rem;
  }

  .contact-info {
    align-items: center;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .social-icons-row {
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom {
    padding: 10px 15px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}
