/* Import fonts to match style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Define CSS variables to match style.css */
:root {
  --orange:#F15A22;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 26px;
  --fs-body: 16px;
  --fs-small: 14px;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
}
header.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

header.header.scrolled {
  background: #fff;
}

.navbar {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  max-height: 70px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler-icon {
  background-image: linear-gradient(to right, #1e87d7, #a43e89);
}

.navbar-collapse {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.navbar-nav#mainNav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.navbar-nav#mainNav .nav-link {
  color: var(--orange);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  padding: 2rem;
  transition: all 0.3s ease;
  font-weight: 800;
}

.navbar-nav#mainNav .nav-link:hover,
.navbar-nav#mainNav .nav-link:focus {
  transform: scale(1.3);
}

.navbar-nav#mainNav .nav-link.active {
  color: red;
  font-weight: 700;
}

.navbar-nav#bookNav {
  margin-left: auto;
  flex-shrink: 0;
}

#bookNav .book-button {
  /* background: #2455A2; */
  background-color: var(--teal);
  color: #fff;
  padding: 12px 25px;
  padding-left: 60px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
}
@media (min-width:970px){
  #bookNav .book-button {
  padding-left: 50px;
  }
}
#bookNav .book-button::before{
  content: "";
  position: absolute;
  background-image: url('../images/call.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 100%;
  top: 0;
  left: -7%;
  border-radius: 30px;
  background-color:var(--orange);
  z-index: 1;
} 


#bookNav .book-button:hover {
  background: #ff5f03c6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  width: 600px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 1050;
}

.dropdown-menu .row {
  margin-left: -15px;
  margin-right: -15px;
}

.dropdown-menu .col-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 15px;
  clear: both;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--fs-body);
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .navbar-collapse {
    flex-grow: 1;
    justify-content: center;
  }
  .navbar-nav#mainNav {
    flex-grow: 1;
    justify-content: center;
  }
  .navbar-nav#bookNav {
    margin-left: auto;
  }
  .dropdown-menu {
    width: 700px;
  }
  .navbar-brand img {
    max-height: 70px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .dropdown-menu {
    width: 550px;
  }
  .navbar-brand img {
    max-height: 70px;
  }
}

/* ✅ Medium & Small: Make dropdown single column */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .navbar-nav#mainNav {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .navbar-nav#bookNav {
    margin-left: 0;
    width: 80%;
    margin-top: 1rem;
  }
  #bookNav .book-button::before{
   border-radius: 31px;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 1.2rem;
  }
  #bookNav .book-button {
    max-width: 200px;
    width: 68%;
    /* margin-top: 0.5rem; */
    font-size: 1rem;
    margin: 0.5rem auto 0;
    padding-left: 36px;
  }
  #bookNav .book-button::before{
    width: 55px;
    left: -5%;
    background-position: center;
  }
  .navbar-brand img {
    max-height: 50px;
  }
  .dropdown-menu {
    width: 100%;
    left: 0 !important;
    padding: 15px;
    text-align: center;
  }
  .dropdown-menu .row {
    display: block;
    margin: 0;
  }
  .dropdown-menu .col-6 {
    width: 100%;
    padding: 0;
  }
  .dropdown-menu .dropdown-item {
    padding: 10px;
    font-size: var(--fs-body);
    text-align: left;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    font-size: var(--fs-small);
  }
  #bookNav .book-button {
    width: 100%;
    font-size: var(--fs-small);
  }
}
.btn-king{
  padding: 15px 10px;
  background-color: #d94d1e;
  color: white;
    /* border: 1px solid black; */
    border: none;
    outline: none;
border-radius: 20px;
text-decoration: none;
}
.btn-king:hover{
  text-decoration: none;
  color: white;
 background: #cf3f0f;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(54, 194, 201, 0.5);
}
.btn-center {
  max-width: 200px;
  display: block;
  margin: 20px auto 0; /* top auto bottom */
  text-align: center;
}
.en-button{
  padding:5px  20px ;
  border:1px solid #36C2C9 ;
  background-color: transparent;
  border-radius: 20px;
}
.service-card{
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}
.service-card p{
  color: white;
  z-index: 2;
  font-size: 1.2rem;
}
.service-card h3{
  z-index: 2;
  font-size: 1.5rem;
}

.black{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
}
.service-card button{
  font-size: var(--fs-body);
  font-weight: 700;
}
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #36C2C9;
}

#contactForm {
    position: relative;
  background: url('Image/624185.jpg') no-repeat center center/cover;
  padding: 60px 0;
  color: var(--black);
  font-family: 'Roboto', sans-serif;

}

#contactForm .overlay {
  background: linear-gradient(to bottom, #d8f9f8, #b6f1ec);
  padding: 60px 20px;
}

/* Centered Form */
#contactForm .form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Form Card */
#contactForm .booking-form {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

#contactForm .booking-form:hover {
  transform: translateY(-3px);
}

/* Form Fields */
#contactForm .form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

#contactForm label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ff842d;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(54,194,201,0.1);
  outline: none;
}

/* Buttons */
#contactForm .form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#contactForm .btn-orange,
#contactForm .btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

#contactForm .btn-orange {
  background: orangered;
  color: #fff;
}
#contactForm .btn-orange:hover { background: #d94d1e; }

/* Consent Text Styling */
.consent-text {
  font-size: 13px;
  color: #444;
  text-align: center;
  margin: 10px 0 15px;
  line-height: 1.4;
}
/* WhatsApp Round Button */
.btn-whatsapp {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: scale(1);
}

/* WhatsApp Icon */
.btn-whatsapp .whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}
/* Responsive Fix */
@media (max-width: 600px) {
  #contactForm .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  #contactForm .btn-orange,
  #contactForm .btn-whatsapp {
    width: 100%;
    flex: unset;
  }
}
#successMessage {
  font-size: 16px;
  color: #36C2C9;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
#faq {
  background: #ffffff;
  padding: 60px 20px;
}

#faq .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 30px;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  background-color: #fff;
  border: none;
  box-shadow: none;
  padding: 15px;
  transition: 0.3s ease;
}

.accordion-button:hover {
  background: #eef6ff;
  color: #ff6a00;
}

.accordion-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #555;
  background: #fff;
  padding: 15px 20px;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.btn-consult {
  display: inline-block;
  background-color: #F15A22;
  color: #ffffff;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-consult:hover {
  background-color: #d94e1e;
}
#faq .btn-container {
  text-align: center; /* Centers the button */
  margin-top: 30px;
}
.hero [data-aos] {
  opacity: 0;
  transition: all 1s ease !important;
}

/* =========================
   Shared FAQ Styles
   ========================= */
#faq, 
#care-faq {
  background: #ffffff; /* Light background */
  padding: 60px 20px;
}

#faq .section-title, 
#care-faq .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

/* Accordion Buttons */
#faq .accordion-button, 
#care-faq .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  background-color: #ffdddd;
  border: none;
  box-shadow: none;
  padding: 15px 20px;
  transition: background 0.3s ease;
  border-radius: 6px;
}

/* Active/Open Accordion Button */
#faq .accordion-button:not(.collapsed), 
#care-faq .accordion-button:not(.collapsed) {
  background-color: var(--teal);
  color: var(--white);
  border-color: #49f3ff !important;
  box-shadow: none !important;
}

/* Accordion Body */
#faq .accordion-body, 
#care-faq .accordion-body {
  font-size: 16px;
  color: #000000;
  padding: 15px 20px;
  background: #ffdddd;
}

/* Accordion Items */
#faq .accordion-item, 
#care-faq .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffd7d7;
}

/* CTA Button */
#faq .btn-cta, 
#care-faq .btn-cta {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
}

#faq .btn-cta:hover, 
#care-faq .btn-cta:hover {
  background-color: #d84d1c;
  color: #fff;
}
footer {
            background-color: #f0f2f5; /* Dark blue-gray for a professional look */
            color: #000000; /* Light text for contrast */
            padding: 40px 20px 20px;
            font-family: Arial, sans-serif;
            margin-top: 0px;
        }

        .footer-container {
            display: flex;
            justify-content: space-around;
            align-items: flex-start; /* Aligns columns to the top */
            max-width: 100vw;
            margin: 0 auto;
            flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
            gap: 11px;
        }

        .footer-column {
            /* flex: 1; */
            max-width: 400px;
            width: 100%;
             /* Adjusted min-width for 4 columns */
            margin: 20p 10pxx;
        }

        .footer-column h3 {
            font-size: 1.3em;
            margin-bottom: 20px;
            color: #000000;
            font-weight: bold;
        }

        .footer-column ul {
          gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: auto auto;

        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #64b5f6; /* A hover effect for interaction */
        }

        /* Logo & Brand Styling */
        .footer-logo {
            margin-bottom: 15px;
        }
        .footer-logo img {
            width: 150px; /* Adjust logo size as needed */
        }
        .footer-logo p {
            font-size: 0.9em;
          color: #000000;
            line-height: 1.5;
        }

        /* Social Media Icons */
        .social-icons a {
            font-size: 1.5em;
            margin-right: 15px;
           color: #ffffff;
            transition: color 0.3s ease;
        }
        .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 0.25rem;
  background: var(--orange);
  /* color: var(--white); */
  transition: opacity 0.3s ease;
}

        .social-icons a:hover {
            color: #64b5f6;
        }
        
        /* Contact Information Styling */
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 15px 0 0 0;
        }
        .contact-info li {
            margin-bottom: 8px;
            font-size: 0.9em;
            color: #000000;
        }

        /* Bottom Bar */
        .footer-bottom {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #334054;
            color: #000000;
            font-size: 0.85em;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-column {
                margin: 20px 0;
            }
            .action-button{
      flex-direction: column;
        margin:0 auto;
        }
        action-button a{
      width: 100px;
        }
        }
        .action-button{
          width: 60%;
          display: flex;
          /* justify-content: center; */ 
          margin:0 auto;
          gap:20px;
        }
          .action-button a{
          width: 200px;
          
        }
        .whatsapp-icon{
  position: fixed;
  right: 3%;
  bottom: 10%;
  z-index: 100;
}
.whatsapp-icon img{
  width: 50px;
}
.navbar-toggler {
  border: none !important;
}

@media (max-width:1400px){

 .navbar-nav#mainNav .nav-link{
 padding: 1rem 0.9rem;
 font-size: 0.9rem;
 }
}
@media (max-width:1200px){

 .navbar-nav#mainNav .nav-link{
 padding: 1rem 0.7rem;
 font-size: 0.7rem;
 }
}
@media (max-width:1000px){

 .navbar-nav#mainNav .nav-link{
 padding: 1rem 0.6rem;
 font-size: 1rem;
 }
}