* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(180deg, #D7C1E0 0%, #FFFFFF 100%); /*Light Pinkish-Purple to white gradient*/
    color: #7B6B9A; /* Grayish-Purple for body text */
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar */
.top-bar {
    background-color: #4A3C6D; /* Dark Purple */
    color: #FFFFFF;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: top 0.1s ease-in-out;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end; /* Move content to the right to avoid logo overlap */
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.operating-hours i {
    margin-right: 0.5rem;
}

.top-bar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-link, .top-bar-phone {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.top-bar-link i, .top-bar-phone i {
    margin-right: 0.5rem;
}

.top-bar-link:hover, .top-bar-phone:hover {
    color: #D7C1E0; /* Light Pinkish-Purple */
}

.top-bar-button {
    background-color: #FFFFFF; /* White background for button */
    color: #4A3C6D; /* Dark Purple text */
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.top-bar-button i {
    margin-right: 0.5rem;
}

.top-bar-button:hover {
    background-color: #D7C1E0; /* Light Pinkish-Purple on hover */
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 12rem 0 2rem;
    text-align: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4A3C6D;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-cta {
    background-color: #FFFFFF; /* White background for button */
    color: #4A3C6D; /* Dark Purple text */
    padding: 1rem 2rem;
    border: 2px solid #4A3C6D;

    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.hero-cta:hover {
    background-color: #4A3C6D; /* Dark Purple on hover */
    color: #FFFFFF;
}

.subtext {
    font-size: 0.9rem;
    color: #7B6B9A; /* Grayish-Purple */
    margin-top: 1rem;
}

.hero-images {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}



.hero-side-image {
  width: 70%; /* Adjusted for side-by-side layout */
  max-width: 300px;
  height: 250px;
  border: 2px solid #4A3C6D;
  border-radius: 10px;
}


/* Welcome Section */
.welcome {
    padding: 2rem 0;
    text-align: center;
    background-color: rgba(215, 193, 224, 0.2); /* Light Pinkish-Purple with opacity for a subtle background */
}

.welcome h2 {
    font-size: 2rem;
    color: #4A3C6D; /* Dark Purple */
    margin-bottom: 1rem;
}

.welcome p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Intro Section */
.intro {
    padding: 2rem 0;
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.inline-cta {
    color: #4A3C6D; /* Dark Purple */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #D7C1E0; /* Light Pinkish-Purple */
}

/* Content Section (Our Services) */
.content {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(215, 193, 224, 0.1); /* Subtle Light Pinkish-Purple background */
}

.content h2 {
    font-size: 2rem;
    color: #4A3C6D; /* Dark Purple */
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px; /* Rounded corners to match screenshot */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    max-width: 350px; /* Smaller size for a balanced look */
    height: 210px;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 2px solid #D7C1E0; /* Light Pinkish-Purple border */
}

.service-item h3 {
    color: #4A3C6D; /* Dark Purple */
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-item p {
    font-size: 0.9rem;
    color: #7B6B9A;
}

/* Insurance Section */
.insurance {
    padding: 4rem 0;
    text-align: center;
    background-color: #FFFFFF;
}

.insurance h2 {
    font-size: 2rem;
    color: #4A3C6D; /* Dark Purple */
    margin-bottom: 1rem;
}

.insurance p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.insurance-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.insurance-logo {
    width: 100px;
    height: auto;
    border: 1px solid #D7C1E0; /* Light Pinkish-Purple border */
    border-radius: 5px;
    padding: 0.5rem;
    background-color: #F8F8F8; /* Light background for contrast */
    transition: transform 0.3s;
}

.insurance-logo:hover {
    transform: scale(1.05); /* Slight zoom on hover for "WOW" effect */
}

.insurance-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.insurance-column {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.insurance-column p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #4A3C6D;
}

/* Footer */
.footer {
    background-color: #4A3C6D; /* Dark Purple */
    color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

  
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Four columns */
    grid-template-rows: repeat(4, auto);   /* Two rows */
    gap: 20px;
    width: 100%;

  }
  
  
  .grid-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .grid-item:hover {
    transform: translateY(-5px);
    align-items: center;

  }
  
  .title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    align-items: center;

  }
  
  .description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-size: 0.95rem;
    align-items: center;

    color: #333;
  }
  
  .grid-item:hover .description {
    max-height: 100px;
    opacity: 1;
    align-items: center;

    margin-top: 10px;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
    text-align: center;
  }
  
  .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: #4A3C6D;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above */
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .tooltip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal-width columns */
    gap: 2rem;
    width: 600px; /* 🔧 Set your custom width here */
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
  }

/* Services Section Box Styling */
.services-section-box {
    background-color: rgba(215, 193, 224, 0.2); /* Soft pastel purple with transparency */
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Heading style inside service section */
.services-section-box h2 {
    color: #4A3C6D; /* Dark Purple */
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

  
  .contact-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 1rem;
    padding-top: 180px;
    text-align: center;
}
.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section {
    text-align: center;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    width: 100%;
}

.contact-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8b2c55; /* brand color or dark plum */
}

.contact-section .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
}

.contact-info i {
    color: #8b2c55;
    margin-right: 8px;      
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
        transition: none;
    }
}
@media (max-width: 768px) {
    .hero-images {
      display: none;
    }

    .hero-side-image{
      display: none;
    }
  }

  .image-carousel {
    max-width: 100%;       /* make it responsive */
    width: 900px;          /* max width on bigger screens */
    overflow: hidden;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    will-change: transform;  /* for smoother animation */
  }
  
  .carousel-track img {
    width: 300px;
    max-width: 100%;       /* prevent overflow on small screens */
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    margin-right: 40px;
  }
  
  /* Continuous scrolling keyframes */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (300px + 40px) * 5)); /* 5 images width + margin */
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 960px) {
    .image-carousel {
      width: 100%;        /* full width on smaller screens */
    }
  
    .carousel-track img {
      width: 200px;       /* smaller images on tablets */
      margin-right: 30px;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-1 * (200px + 30px) * 5));
      }
    }
  }
  
  @media (max-width: 480px) {
    .carousel-track img {
      width: 150px;       /* even smaller images on phones */
      margin-right: 20px;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-1 * (150px + 20px) * 5));
      }
    }
  }
  
  
  .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-icons a {
    color: #fff; /* White or any color you like */
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #D7C1E0; /* Light pinkish-purple or your highlight color */
  }
    /* Custom Styles */
    .form-selection {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 40px;
  }

  .form-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .form-buttons button {
      background-color: #4A3C6D;
      color: white;
      font-weight: bold;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      padding: 15px 30px;
      cursor: pointer;
      transition: background-color 0.3s;
  }

  .form-buttons button:hover {
      background-color: #4A3C6D;
  }

  .quick-forms-container {
      text-align: center;
      margin-top: 50px;
  }

  .quick-forms-container h2 {
      font-size: 28px;
      margin-bottom: 30px;
  }

  .quick-forms {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .form-card {
      text-align: center;
      width: 180px;
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
  }

  .form-card:hover {
      transform: translateY(-10px);
  }

  .form-card i {
      font-size: 40px;
      color: #4A3C6D;
  }

  .form-card button {
      background-color: #4A3C6D;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
      font-weight: bold;
  }

  .form-card button:hover {
      background-color: #0056b3;
  }

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

.footer-links ul li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-location {
    margin-top: 20px;
}

.footer-privacy {
    margin-top: 20px;
}

.footer-privacy button {
    padding: 10px 20px;
    background-color: #4A3C6D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.footer-privacy button:hover {
    background-color: #D7C1E0;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Blog Section */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
  }
  
  .blog-post {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .blog-post-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
  }
  
  .blog-text {
    flex: 1;
  }
  
  .blog-text h2 {
    font-size: 1.8rem;
    color: #4A3C6D; /* Matches your dark purple */
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .blog-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
  }
  
  .blog-image {
    flex: 1;
    max-width: 400px;
  }
  
  .blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .blog-post-content {
      flex-direction: column;
      text-align: center;
    }
  
    .blog-image {
      max-width: 100%;
    }
  }
/* Make the page background white */

  
  /* Style each policy section as a card */
  .policy-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings inside boxes */
  .policy-box h2 {
    margin-top: 0;
    color: #333;
  }
  
  /* List styling inside boxes */
  .policy-box ul {
    padding-left: 1.5rem;
  }
  
  .policy-box li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  

