/* About Us Section */

        .abt-us{
            color: #000;
        }

        .about-us-sec {
            background-color: #e8f4ff;
            padding: 100px 20px;
            text-align: center;
        }

        .about-us-container {
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .about-us-container.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-images {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .about-images img {
            width: 100%;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .about-images img:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* Image Logo Section */
        .image-logo-section {
            padding: 80px 20px;
            background-color: #f0f7ff;
            text-align: center;
        }

        .images-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .content-image {
            width: 100%;
            max-width: 350px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .content-image:hover {
            transform: scale(1.05);
        }

        .brand-logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .logo-image {
            height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.5s ease;
        }

        .logo-image:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Team Section */
        .team-section {
            padding: 100px 20px;
            background-color: #e8f4ff;
            text-align: center;
        }

        .team-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .team-member {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            width: 100%;
            max-width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .team-member.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .team-photo {
            width: 200px;
            height: auto;
            border-radius: 40%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid #e8f4ff;
            transition: all 0.5s ease;
        }

        .team-member:hover .team-photo {
            border-color: #3a7bd5;
            transform: scale(1.05);
        }

        .team-info {
            margin-top: 15px;
        }

        .team-info h3 {
            font-size: 1.3rem;
            color: #3a7bd5;
            margin-bottom: 5px;
        }

        .team-info p {
            color: #777;
            font-size: 0.9rem;
        }

        /* Mission & Vision Section Styles */
        .mission-vision-section {
            padding: 80px 10%;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 36px;
            color: #1a4f8e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1a4f8e, #c8a971);
            border-radius: 2px;
        }

        .section-header p {
            color: #4a5568;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        .mission-vision-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mv-card {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .mv-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .mv-card-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mv-card.mission .mv-card-content {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .mv-card.vision .mv-card-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .mv-card h3 {
            font-size: 28px;
            color: #1a4f8e;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .mv-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, #c8a971, #1a4f8e);
            border-radius: 2px;
        }

        .mv-card p {
            color: #4a5568;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .mv-card-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 350px;
        }

        .mv-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mv-card:hover .mv-card-image img {
            transform: scale(1.05);
        }

        .mv-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(26, 79, 142, 0.1), rgba(200, 169, 113, 0.1));
            z-index: 1;
        }

        .mv-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(26, 79, 142, 0.3);
        }

        .mv-values {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .value-pill {
            padding: 8px 18px;
            background: rgba(26, 79, 142, 0.1);
            color: #1a4f8e;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .value-pill:hover {
            background: #1a4f8e;
            color: white;
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .mission-vision-section {
                padding: 60px 5%;
            }
        }

        @media (max-width: 900px) {
            .mv-card {
                flex-direction: column;
            }
            
            .mission .mv-card-content {
                order: 2;
            }
            
            .mission .mv-card-image {
                order: 1;
            }
            
            .vision .mv-card-content {
                order: 2;
            }
            
            .vision .mv-card-image {
                order: 1;
            }
            
            .mv-card-image {
                min-height: 250px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 28px;
            }
            
            .mv-card-content {
                padding: 25px;
            }
            
            .mv-card h3 {
                font-size: 24px;
            }
        }

        /* What Sets Us Apart Section */
        .apart-section {
            padding: 100px 20px;
            background-color: #f0f7ff;
            text-align: center;
        }

        .cards-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 30px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .card:nth-child(1) {
            transition-delay: 0.1s;
        }
        .card:nth-child(2) {
            transition-delay: 0.2s;
        }
        .card:nth-child(3) {
            transition-delay: 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            font-size: 3rem;
            color: #3a7bd5;
            margin-bottom: 20px;
            transition: all 0.5s ease;
        }

        .card:hover .card-icon {
            color: #00d2ff;
            transform: scale(1.1);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }