 /* Updated Color Palette */
 :root {
    --primary: #515d59;
    --primary-light: #849295;
    --primary-dark: #c8d5f9;
    --primary-bg: #eff6ff;
    --secondary: #bfdbfe;
    --accent: #dbeafe;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
  
}

a{
    text-decoration: none;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    color: var(--text-light);
    font-size: 1.1rem;
}



  
body {
    line-height: 1.6;
    color: var(--text);
    font-family: "Poppins", serif;
}

/* Navigation */

header{
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background-color:   #f0f0f035;
    padding: 1rem;
    position: relative;
    border-radius: 22px;
    backdrop-filter: blur(80px);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color:  #454b48;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #506860;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    color: #89a098;
    cursor: pointer;
    padding: 5px;
}


.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #89a098;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #bdd1ca;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
 
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
    

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: var(--accent);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-image img {
    width: 50%;
    height: auto;
   
}

.why-us {
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.bento-item  {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-item i {
    font-size: 4rem;
    color: #849295;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

/*
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

*/

.bento-item:hover::before {
    transform: scaleX(1);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-medium {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bento-large .bento-icon {
    font-size: 3.5rem;
}

.bento-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.bento-large .bento-title {
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large, .bento-medium {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-medium {
        grid-column: span 1;
    }
}



/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

/* Medical Aids */
.medical-aids {
    padding: 6rem 2rem;
    background: var(--secondary);
}

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

/* Insights */
.insights {
    padding: 6rem 2rem;
    background: white;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.insight-card  img{
    width: 210px;
    height: 210px;
    border-radius: 20px;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 4rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
   
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: none;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

        
        /* Enhanced Hero Section */
        .hero {
            padding: 4rem 2rem 6rem;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: slideIn 1s ease-out;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .hero-image {
            animation: floatIn 1.5s ease-out;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            /*box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
        }

        /* Enhanced Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Enhanced About Section */
        .about {
            padding: 8rem 2rem;
            background-color: #ffffff;
           
            /*background: linear-gradient(180deg, #F2F2F2 100%, #AEBBB7  100%);*/
        }



/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 20px;
}

.about-text .subheading {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text .description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: #777;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

        #about{
            background-color: #ffffff;
        }

        .about-hero{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8rem;
  

        }

        .about-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 6rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        /* Enhanced Services Section */

        .services { padding: 8rem 2rem 4rem;
            background: linear-gradient(135deg, var(--primary-bg) 0%, #fff 100%);
        }
        

    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    /* Services Section */
    .services-section {
      padding: 60px 0;
      background-color: #fff;
    }
    
    .services-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #777;
      margin-bottom: 40px;
    }
    
    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .service-card {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #007bff;
    }
    
    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
    }
    
    .service-card ul {
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px;
    }
    
    .service-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      color: #555;
    }
    
    .service-card ul li:last-child {
      border-bottom: none;
    }
    
    .learn-more {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--primary-light);
      color: #fff;
      text-decoration: none;
      border-radius: 22px;
      transition: background-color 0.3s ease;
    }
    
    .learn-more:hover {
      background-color: var(--primary);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    
      .service-card {
        margin-bottom: 20px;
      }
    }
     
        @media (max-width: 768px) {
            .services {
                padding: 4rem 1rem;
                display: flex;
                flex-direction: column;
            }
            
            .hero-image{
                display: none;
            }

        }
    

        /* Enhanced Medical Aids Section */
       .medical-grid{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
       }

        .medical-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .medical-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 247, 247, 0.1);
            background: #fff;
            color: rgba(17, 22, 21, 0.945);
        }

        .medical-card:hover p {
            color: rgba(116, 151, 144, 0.945);
        }

        

        .blog-container {
        
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .blog-post {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        .blog-post:hover {
            transform: translateY(-5px);
        }
        .blog-post img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .blog-post h2 {
            margin: 0 0 10px;
            font-size: 1.5em;
            color: #333;
        }
        .blog-post p {
            color: #555;
        }
        .read-more {
            display: inline-block;
            margin-top: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        .read-more:hover {
            text-decoration: underline;
        }
      

/* Previous styles remain the same */

/* Update background colors for sections */
.hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--accent) 100%);
}

.about {
    background: linear-gradient(180deg, var(--accent) 0%, var(--white) 100%);
}

.services {
    background: var(--primary-bg);
}

.medical-aids {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-bg) 100%);
}

/* New FAQ Section Styles */
.faq {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--primary-bg);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: var(--primary-bg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.faq-toggle::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(90deg);
    opacity: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 1rem;
    }
}


        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Footer */
        footer {
            background: var(--text);
            color: white;
            padding: 6rem 2rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-grid h3 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .footer-grid p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .social-icons i:hover {
            color: var(--primary);
        }

        /* Enhanced Responsiveness */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-images{
                display: none;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .btn {
                width: 100%;
                margin: 0.5rem 0;
            }

            .btn-secondary {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }
        }


        .copyright{
            text-align: center;
            margin-top: 1rem;
        }