    /* Hero Section Styles */
        .hero {
            position: relative;
            height: auto;
            width: 100%;
            overflow: hidden;
            background-color: #f0f4f8; /* Lighter background color */
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90%;
        }

        .hero-text {
            width: 50%;
            animation: fadeIn 1s ease-in;
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: bold;
            color: #034760;
        }

        .hero-subtitle {
            text-align: justify;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: #4a5568;
        }

        .hero-button {
            padding: 1rem 2rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-button a{
        text-decoration: none;
        color: white;
        }

        .hero-button:hover {
            background-color: #45a049;
            transform: translateY(-2px);
        }

        .hero-image {
            width: 40%;
            animation: fadeIn 1s ease-in;
        }

        .circular-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 8s infinite ease-in-out;
        }
        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }

            .hero-text, .hero-image {
                width: 100%;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-button {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }

            .circular-image {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-button {
                font-size: 0.9rem;
                padding: 0.7rem 1.2rem;
            }

            .circular-image {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .hero-button {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }

            .circular-image {
            width: 200px;
            height: 200px;
            }
        }

    /* Services */

        .service-container {
            max-width: 100%;
            padding: 1rem;
            background-color: #f9f9fc;
            text-align: center;
        }
        
        .service-container h2 {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
            padding-bottom: 0.5rem;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: #034760;
        }

        .service-container h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 100px; /* Adjust width as needed */
            height: 3px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        
        .service-container h2:hover::after {
            width: 150px; /* Slightly longer underline on hover */
        }
        
        .service-section {
            display: flex;
            overflow-x: auto;
            gap: 1.5rem;
            padding: 1rem;
            scroll-snap-type: x mandatory;
            scroll-padding: 0 20px;
        }
        
        .service-section::-webkit-scrollbar {
            height: 8px;
        }
        
        .service-section::-webkit-scrollbar-track {
            background:transparent;
        }
        
        .care-card {
            flex: 0 0 350px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 62, 80, 0.05);
            scroll-snap-align: start;
        }
        
        .care-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .care-card:hover .card-image {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 1.5rem;
            text-align: left;
        }
        
        .card-title {
            font-size: 1.25rem;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .care-card:hover .card-title {
            color: #056E92;
        }
        
        .card-description {
            color: #7f8c8d;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* Responsive Adjustments */
        @media screen and (max-width: 768px) {
            .service-container h2 {
                font-size: 2rem;
            }
        
            .care-card {
                flex: 0 0 280px;
            }
        }
        @media(max-width:480px) {
            .care-card{
                height: 350px;
            }
            .card-image{
                height: 180px;
            }
            .card-title{
                font-size: 1rem;
                margin-bottom: 0;
            }
            .card-description{
                font-size: 13px;
            }
            .card-content{
                padding: 1rem 2rem 1rem;
            }
        }
        /* Accessibility and Interaction Improvements */
        .care-card:focus-within {
            outline: 3px solid #3498db;
            outline-offset: 4px;
        }

        /* Nav buttons */
        .service-container {
            position: relative;
        }
        
        .navigation-buttons {
            display: none;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
            padding: 0 1rem;
        }
        
        .nav-button {
            background-color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(52, 152, 219, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .nav-button:hover {
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .navigation-buttons .prev-button {
            position: absolute;
            left: 0;
        }
        
        .navigation-buttons .next-button {
            position: absolute;
            right: 0;
        }
        
        .nav-button svg {
            stroke: #3498db;
            height: 30px;
            width: 30px;
        }
        
        .nav-button.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        /* Show buttons only when scrollable */
        .service-section.is-scrollable + .navigation-buttons {
            display: block;
        }

        @media screen and (max-width: 768px) {
            .nav-button {
                width: 35px;
                height: 35px;
            }

            .nav-button svg {
                width: 18px;
                height: 18px;
            }
        }


    /* Partners section */
        
        .partners-section {
            padding: 2rem 1rem;
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .partners-section .container {
            max-width: 1200px;
            margin: 0 auto; /* Center the container */
            width: 100%;
        }
        
        .partners-section .section-title h2 {
            color: #034760;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .partners-section .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            height: 3px;
            border-radius: 1rem;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transform: translateX(-50%);
            width: 80px;
        }
        
        .partners-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        
        .partner-logo {
            position: relative;
            width: 180px;
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.6s ease;
            cursor: pointer;
            border-radius: 50%;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .partner-logo img {
            max-width: 120px;
            max-height: 120px;
            object-fit: contain;
            transition: all 0.5s ease;
        }
        
        @media (max-width: 768px) {
            .partners-section {
                padding: 1rem;
            }
        
            .partners-container {
                gap: 1rem;
            }
        
            .partner-logo {
                width: 120px;
                height: 120px;
            }
        
            .partner-logo img {
                max-width: 80px;
                max-height: 80px;
            }
        }
        
        @media (max-width: 480px) {
            .partners-container {
                gap: 0.5rem;
            }
        
            .partner-logo {
                width: 100px;
                height: 100px;
            }
        
            .partner-logo img {
                max-width: 70px;
                max-height: 70px;
            }
        }
        