/* Universal and Font Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    line-height: 1.6;
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Root Colors */
:root {
    --nav-bg-start: #002d62;
    --nav-bg-end: #007BFF;
    --nav-text: #f1ebc9;
    --nav-hover: #ffffff;
    --nav-font-size: 16px;
}

/* Navbar */
.navbar {
    margin: 0;
    background: linear-gradient(90deg, var(--nav-bg-start) 0%, var(--nav-bg-end) 100%);
    padding: 15px 0;
    position: relative;
    width: 100%;
    z-index: 2000;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-logo {
    width: 200px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: var(--nav-font-size);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--nav-hover);
}

/* Appointment Button */
.appointment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--nav-text);
    border: 1.5px solid var(--nav-text);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: var(--nav-font-size);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.phone-icon {
    width: 16px;
    height: 16px;
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--nav-text);
    font-size: 26px;
    cursor: pointer;
}

/* Mobile responsive for Navbar */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--nav-bg-start);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
        gap: 20px;
        transition: right 0.5s ease-in-out;
        z-index: 1999;
    }

    .nav-links.active {
        right: 0;
    }

    .appointment-btn {
        display: none;
    }

    .nav-links li a {
        font-size: 20px;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 2001;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .container {
        justify-content: space-between;
    }
}

/* About Us Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('../images/aboutUs-img/Background.svg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    /* display: flex;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */
    display: inline-block;
  background: #0d6efd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.breadcrumb-link:hover {
    color: #ddd;
}

.breadcrumb-separator {
    color: #ccc;
    font-size: 0.95rem;
}

/* Responsive design for hero section */
@media (max-width: 768px) {
    .heading {
        font-size: 2.7rem;
    }
    .breadcrumb {
        padding: 8px 15px;
        gap: 6px;
    }
    .breadcrumb-link,
    .breadcrumb-separator {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 2.2rem;
    }
    .breadcrumb {
        padding: 6px 10px;
        gap: 5px;
    }
    .breadcrumb-link,
    .breadcrumb-separator {
        font-size: 0.75rem;
    }
}

/* About Content Section */
.about-content {
    background-color: #f1e5c9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Updated CSS for the text-block with more space */
.content-container {
    max-width: 900px; 
    width: 100%;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
    
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        padding: 40px 15px;
    }
    .content-container {
        max-width: 100%;
    }
    .about-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 30px 10px;
    }
    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}
/* /////////////////////////// */

/* Styling for the new image section */
.about-image-section {
    padding: 40px 20px; 
    background-color: #f1e5c9; 
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-image {
    max-width: 100%; /* Image will not exceed its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below the image */
    margin: 0 auto; /* Center the image within its container */
    border-radius: 8px; /* Optional: adds slightly rounded corners */
}

/* Responsive adjustments for image section */
@media (max-width: 768px) {
    .about-image-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .about-image-section {
        padding: 20px 10px;
    }
}

/* ///////////////////////////// */
.cta-final {
  padding: 60px 20px;
  text-align: center;
  background-color: #f1e5c9;
}

.cta-final h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.cta-box {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(135deg, #0096ff, #003366);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-box p {
  font-size: 18px;
  line-height: 1.6;
}

.cta-box strong {
  font-size: 20px;
  display: block;
  margin-bottom: 4px; 
}

.cta-box a {
  color: #ffeb3b;
  font-weight: bold;
  text-decoration: none;
}

.cta-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 20px;
  }

  .cta-box p {
    font-size: 16px;
  }

  .cta-box strong {
    font-size: 18px;
  }
}
/* /////////////////////////////////// */

/* Map Section CSS */
.map-section {
  width: 100%;
  height: 400px; 
   margin-top: 2px; 
  overflow: hidden; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

/* Make map responsive for smaller screens */
@media screen and (max-width: 768px) {
  .map-section {
    height: 300px; 
  }
}
/* //////////////////////////////////////// */

  /* --- Footer Section --- */

 /* Base Styles */
 .footer-section {
     background-color: #023E74;
     color: #F1EBC9;
     padding: 4rem 1rem;
     font-family: 'Urbanist', sans-serif;
 }

 .footer-container {
     max-width: 1280px;
     margin-left: auto;
     margin-right: auto;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     padding-bottom: 2.5rem;
     margin-bottom: 2rem;
     border-bottom: 1px solid #3B668D;
 }

 /* For Logo, Phone and Socials */
 .logo-contact-section {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .footer-logo {
     width: 200px;
     height: auto;
     display: block;
 }

 .contact-heading {
     font-family: 'Urbanist', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 0;
 }

 .phone-number {
     font-family: 'Urbanist', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     color: white;
 }

 /* Headings for Services and Links */
 .section-heading {
     font-family: 'Urbanist', sans-serif;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: white;
 }

 /* Social Links */
 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-link-icon {
     background-color: #191919;
     color: #F1EBC9;
     padding: 0.5rem;
     border-radius: 0.375rem;
     transition: transform 300ms ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .social-link-icon:hover {
     transform: scale(1.1);
 }

 .social-link-icon svg {
     fill: #F1EBC9;
 }

 /* Lists and Links */
 .services-list,
 .quick-links-list {
     list-style-type: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .services-list a,
 .quick-links-list a {
     color: inherit;
     text-decoration: none;
     transition: color 200ms ease;
 }

 .services-list a:hover,
 .quick-links-list a:hover {
     color: white;
 }

 /* Newsletter Subscription */
 .newsletter-input {
     width: 100%;
     padding: 1rem;
     border-radius: 0.75rem;
     color: #4B5563;
     border: none;
     outline: none;
 }

 .subscribe-button {
     width: 100%;
     background-color: #F1EBC9;
     color: #023E74;
     font-family: 'Urbanist', sans-serif;
     font-weight: 600;
     padding: 1rem;
     border-radius: 9999px;
     transition: background-color 200ms ease;
     border: none;
     cursor: pointer;
 }

 .subscribe-button:hover {
     background-color: #F8E48D;
 }

 /* Copyright Section */
 .copyright {
     text-align: center;
     font-size: 0.875rem;
     color: white;
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid #3B668D;
 }

 /* Mobile Responsive adjustments */
 @media (min-width: 768px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 3rem;
     }
 }

 @media (min-width: 1024px) {
     .footer-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 2rem;
     }

     .copyright {
         grid-column: 1 / -1;
         /* This makes the copyright span all 4 columns */
     }
 }