    /* Full-screen section with the image */
        
        .hero-section {
            position: relative;
            height: 60vh;
            /* Full viewport height */
            background: url('assets/images/about.jpeg') no-repeat center center/cover;
        }
        /* Dark overlay */
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            /* Dark overlay with transparency */
            z-index: 1;
        }
        /* Text overlay */
        
        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: white;
            text-align: center;
        }
        
        .hero-text h1 {
            font-size: 4rem;
            font-weight: bold;
        }
        /* Responsive adjustments */
        
        @media (max-width: 1200px) {
            .hero-section {
                height: 75vh;
                /* Adjust height for smaller screens */
            }
            .hero-text h1 {
                font-size: 3.5rem;
                /* Slightly reduce heading size */
            }
        }
        
        @media (max-width: 992px) {
            .hero-section {
                height: 70vh;
                /* Further reduce height */
            }
            .hero-text h1 {
                font-size: 3rem;
                /* Adjust font size */
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: 60vh;
                /* Reduce height for tablets */
                background-position: center top;
                /* Adjust background position */
            }
            .hero-text h1 {
                font-size: 2.5rem;
                /* Further reduce heading size */
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                height: 30vh;
                /* Smaller height for mobile */
                background-position: center top;
            }
            .hero-text {
                top: 40%;
                /* Move text higher to ensure visibility */
            }
            .hero-text h1 {
                font-size: 2rem;
                /* Smaller font size for mobile screens */
            }
        }



        .responsive-title {
            font-size:42px;
        }
        .responsive-text {
            font-size: 20px;
        }
        .responsive-image {
            height: 500px;
            width: auto;
        }

        .card {
            background-color: white;
            color: #181160;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .card-text {
            font-size: 1rem;
            color: #181160;
        }
        .icon {
            font-size: 3rem;
            color: #181160;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        .card:hover {
            background-color: #181160;
            color: white;
        }
        .card:hover .icon {
            color: white;
        }
        .card:hover .card-text {
            font-size: 1rem;
            color: white;
        }
        /* Responsive styling for smaller screens */
        @media (max-width: 576px) {
            .responsive-title {
                font-size: 28px;
            }
            .responsive-text {
                font-size: 16px;
            }
            .responsive-image {
                height: 300px;
                width: auto;
            }
        }


        .corousel-height{
            height: 400px;
            overflow: hidden;
        }