
        :root {
            --emerald-green: #2ecc71;
            --champagne: #f7e7ce;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--emerald-green);
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        .navbar-brand i {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--emerald-green);
        }
        
        .btn-cta {
            background-color: var(--emerald-green);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(46, 204, 113, 0.8), rgba(46, 204, 113, 0.8)), url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:7rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--emerald-green);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--emerald-green);
        }
        
        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            object-fit: cover;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background-color: var(--champagne);
            border-radius: 10px;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--emerald-green);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--emerald-green);
        }
        
        .vision-mission-box {
            background-color: var(--champagne);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--emerald-green);
            margin-bottom: 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--emerald-green);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--champagne);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--emerald-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }
        
        .service-card {
            background-color: var(--champagne);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--emerald-green);
        }
        
        .service-card p {
            flex-grow: 1;
        }
        
        .review-card {
            background-color: var(--champagne);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .review-card i {
            font-size: 2rem;
            color: var(--emerald-green);
            margin-bottom: 15px;
        }
        
        .review-card .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            font-weight: bold;
            margin-top: 15px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--champagne);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: var(--champagne);
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 20px;
            display: none;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .cta-section {
            background-color: var(--emerald-green);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .contact-section {
           
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--emerald-green);
            margin-right: 15px;
        }
        
        .footer {
            background-color: #333;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h4 {
            color: var(--emerald-green);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer ul li a:hover {
            color: var(--emerald-green);
        }
        
        .footer-bottom {
            border-top: 1px solid #555;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--emerald-green);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
