    /* Hero Section */
        .welcome-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .welcome-content {
            max-width: 800px;
            z-index: 2;
        }

        .welcome-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .welcome-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .welcome-section h1 {
                font-size: 2.5rem;
            }
        }
        
    /* Services Section */
        .slideshow-container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            position: relative;
        }

        .carousel-heading {
            color: #2c3e50;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .carousel-heading::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left:50%;
            height: 3px;
            border-radius: 1rem;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transform: translateX(-50%);
            width: 80px;
        }

        .carousel {
            position: relative;
            height: 70%;
            width: 100%;
            overflow: hidden;
            align-items: center;
        }

        .image-slide {
            left: 15%; 
            width: 70%; 
            height: 450px;
            position: relative;
            border-radius: 2rem;
        }

        .image-slide img {
            width: 100%;
            border-radius: 2rem;
            height: 100%;
            object-fit: cover;
        }

        .hover-text {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 1));
            color: white;
            opacity: 1; /* Always visible */
            transition: opacity 0.3s ease;
            padding: 30px;
            display: flex;
            border-radius: 2rem;
            flex-direction: column;
            justify-content: center;
        }

        .hover-text h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .hover-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .hover-text ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        .hover-text li {
            margin: 5px 0;
        }

        /* Navigation buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 16px;
            color: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            font-weight: bold;
            font-size: 20px;
            border-radius: 50%;
            user-select: none;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .next {
            right: 2%;
        }

        .prev {
            left: 2%;
        }

        .prev:hover, .next:hover {
            background: rgba(0, 0, 0, 0.8);
            color: whitesmoke;
        }

        /* Dots/bullets/indicators */
        .dots-container {
            text-align: center;
            padding: 15px 0;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #9c9393;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .dot:hover {
            background-color: #717171;
        }

    /* Support Section */
        .support-section {
            max-width: 85%;  
            width: 100%;   
            margin: 2rem auto; 
            padding: 2.5rem;
            background-color: #DBEAFE;
            border-radius: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .support-section:hover {
            transform: scale(1.02);
        }
        
        .support-section h2 {
            color: #2c3e50;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block; 
            margin-left: auto;
            margin-right: auto;
        }
        
        .support-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px; 
            left: 50%;
            height: 4px;
            border-radius: 1rem;
            background: var(--secondary-color);
            transform: translateX(-50%);
            width: 100px; 
        }
        
        .support-section p {
            color: #34495e;
            font-size: 1rem;
            max-width: 800px;
            margin: 1rem auto; 
            line-height: 1.8;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 600px) {
            .support-section {
                margin: 1rem auto;
                padding: 1.5rem;
            }
        
            .support-section h2 {
                font-size: 2rem;
            }
        
            .support-section p {
                font-size: 1rem;
                max-width: 100%;
                padding: 0 1rem; 
            }
        }

        @media screen and (max-width: 768px) {
            /* Hero Section Mobile Adjustments */
            .welcome-section {
                padding: 2rem 1rem;
            }
        
            .welcome-section h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
        
            .welcome-section p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
        
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
        
            /* Services Section Mobile Adjustments */
            .slideshow-container {
                padding: 10px;
            }
        
            .carousel-heading {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
        
            .image-slide {
                left: 10%;
                width: 80%;
                height: 300px;
            }
        
            .hover-text {
                padding: 15px;
            }
        
            .hover-text h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }
        
            .prev, .next {
                padding: 10px;
                font-size: 16px;
            }
        
            .next {
                right: 2%;
            }
        
            .prev {
                left: 2%;
            }
        
            /* Support Section Mobile Adjustments */
            .support-section {
                max-width: 95%;
                margin: 1rem auto;
                padding: 1.5rem;
            }
        
            .support-section h2 {
                font-size: 1.8rem;
            }
        
            .support-section p {
                font-size: 0.9rem;
                max-width: 100%;
                padding: 0 0.5rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            /* Additional Fine-tuning for Smaller Mobile Devices */
            .welcome-section h1 {
                font-size: 1.8rem;
            }
        
            .welcome-section p {
                font-size: 0.9rem;
            }
        
            .image-slide {
                height: 250px;
            }
        
            .hover-text {
                padding: 10px;
                font-size:10px;
            }
        
            .hover-text h3 {
                font-size: 12px;
            }

            .hover-text p{
                margin-bottom: 0;
            }

            .next {
                right: 0%;
            }
        
            .prev {
                left: 0;
            }
        
            .support-section h2 {
                font-size: 1.6rem;
            }
        }

        .footer{
            background-color: var(--primary-dark);
        }