        /* Hero Section */
        
        .welcome-section {
            height: 120%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding:2rem;
            background: #804383;
            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;
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }

    /* Vision and mission grid */
        .vision-mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: -80px auto 0;
            padding: 2rem;
            position: relative;
            z-index: 3;
        }

        .vision-card, .mission-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease;
        }

        .vision-card:hover, .mission-card:hover {
            transform: translateY(-5px);
        }

        .card-icon {
            font-size: 2.5rem;
            color: #804383;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .welcome-section h1 {
                font-size: 2.5rem;
            }

            .vision-mission-grid {
                grid-template-columns: 1fr;
                margin-top: -50px;
            }

        }

    /* Values Section */

        .values-section {
            padding: 3rem 2rem;
            background-color: white;
            text-align: center;
        }
        
        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .values-slider {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .value-card {
            background: var(--accent);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }
        
        @media (max-width: 1024px) {
            .values-slider {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .values-slider {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        
            .value-card {
                padding: 1.5rem;
            }
        
            .value-card h3 {
                font-size: 1.2rem;
            }
        
            .value-card p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .values-slider{
                grid-template-columns: 1fr;
            }
        }
        
    

    /* Team Section */
        .team-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .team-section h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 80%;
            margin: 0 auto;
        }

        .team-card {
            background: transparent;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 1rem;

        }

        .team-card img {
            padding: 1rem 1rem 0 1rem;
            width: 90%;
            height: auto;
            object-fit: cover;
            border-radius: 2rem;
        }

        .team-card h3 {
            color: #333;
        }

        .team-card p {
            color: #666;
        }

        .view-more-btn {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .view-more-btn:hover {
            background-color: #0056b3;
        }

        @media (max-width:600px){
            .team-grid{
                grid-template-columns: 1fr;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border-radius: 10px;
            max-width: 800px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .modal-close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 15px;
        }

        .modal-close:hover,
        .modal-close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .modal-body {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .modal-body img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .modal-description{
            font-size: 14px;
            padding: 1rem;
            padding-top: 6px;
            text-align: justify;
        }

        @media (max-width: 768px) {
            .modal-content, .modal-body {
                flex-direction: column;
                margin: 5% auto;
                width: 90%;
            }
        }

    /* Support Section */

        .support-section {
            max-width: 80%;  
            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; /* Ensures underline is only as wide as text */
            margin-left: auto;
            margin-right: auto;
        }
        
        .support-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px; /* Adjusted to ensure clear separation */
            left: 50%;
            height: 4px; /* Fixed height instead of percentage */
            border-radius: 1rem;
            background: var(--secondary-color);
            transform: translateX(-50%);
            width: 100px; /* Fixed width for consistent underline */
        }
        
        .support-section p {
            color: #34495e;
            font-size: 1rem;
            max-width: 800px; /* Limits text width for readability */
            margin: 1rem auto; /* Centers the paragraph */
            line-height: 1.8;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 600px) {
            .support-section {
                max-width: 95%; /* Slightly wider on small screens */
                margin: 1rem auto;
                padding: 1.5rem;
            }
        
            .support-section h2 {
                font-size: 2rem;
            }
        
            .support-section p {
                font-size: 1rem;
                max-width: 100%; /* Full width on small screens */
                padding: 0 1rem; /* Add some side padding */
            }
        }

            