
        :root {
            --peach: #ffdab9;
            --light-coral: #f08080;
            --cream: #fff8dc;
            --dark-coral: #e57373;
            --text-dark: #333333;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }

        .nav-item{
            margin-left:30px !important;
        }
        
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--light-coral);
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--light-coral);
        }
        
        .btn-primary-custom {
            background-color: var(--light-coral);
            border-color: var(--light-coral);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--dark-coral);
            border-color: var(--dark-coral);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(240, 128, 128, 0.3);
        }
        
        .hero-section {
            background: linear-gradient(rgba(240, 128, 128, 0.85), rgba(240, 128, 128, 0.85)), url('https://biotech-atelier.com/wp-content/uploads/2021/09/medicine-doctor-stethoscope-touching-icon-heart-1920.jpeg') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: white;
            padding: 100px 0;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-coral);
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--light-coral);
        }
        
        .about-img {
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(240, 128, 128, 0.2);
            border: 5px solid var(--peach);
        }
        
        .counter-box {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--light-coral), var(--dark-coral));
            color: white;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .counter-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 128, 128, 0.3);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--peach);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .vision-mission-box {
            background: linear-gradient(135deg, rgba(255, 218, 185, 0.3), rgba(255, 248, 220, 0.3));
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
            height: 100%;
            border-left: 4px solid var(--light-coral);
        }
        
        .vision-mission-box h3 {
            color: var(--light-coral);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(240, 128, 128, 0.1);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(240, 128, 128, 0.2);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--light-coral);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover i {
            color: var(--dark-coral);
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--light-coral), var(--peach));
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-coral), var(--dark-coral));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .process-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(240, 128, 128, 0.3);
        }
        
        .service-card {
            background-color: var(--peach);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 128, 128, 0.2);
            border-color: var(--light-coral);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            background-color: var(--cream);
        }
        
        .service-card-body h4 {
            font-weight: 700;
            color: var(--light-coral);
            margin-bottom: 15px;
        }
        
        .review-card {
            background: linear-gradient(135deg, rgba(255, 218, 185, 0.2), rgba(255, 248, 220, 0.2));
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            border-left: 3px solid var(--light-coral);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 3rem;
            color: var(--light-coral);
            opacity: 0.3;
        }
        
        .review-stars {
            color: #ffa500;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--light-coral);
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--light-coral), var(--dark-coral));
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--light-coral);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--light-coral), var(--dark-coral));
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23fff8dc" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(240, 128, 128, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid var(--light-coral);
        }
        
        .contact-info-box:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(240, 128, 128, 0.15);
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--light-coral);
            margin-right: 15px;
        }
        
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: var(--peach);
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--peach);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--peach);
            padding-left: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form button {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            border-radius: 0 25px 25px 0;
            background-color: var(--light-coral);
            color: white;
            border: none;
        }
        
        .newsletter-form button:hover {
            background-color: var(--dark-coral);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
