
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
       

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            margin-top: -10px;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-right: 30px;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
            width: 200px;
            margin-right: 15px;
            transition: transform 0.3s ease;
        }

        

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: #2c3e50;
        }

        .logo-text span {
            color: #e74c3c;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #e74c3c;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: #e74c3c;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #2c3e50;
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('background.png') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 0px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
           
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        

        /* About Us Section */
        .about-us {
            padding: 80px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #e74c3c;
        }

        .about-content h3 {
            font-size: 1.5rem;
            color: #e74c3c;
            margin: 25px 0 15px;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Content Sections */
        .section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            overflow: hidden;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            animation: titleUnderline 1.5s ease forwards;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: #e74c3c;
            animation: underlineGrow 1s ease forwards 0.5s;
        }

        /* Mission & Vision Section */
        .mission-vision {
            background-color: #fff;
        }

        .mv-container {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }

        .mv-card {
            flex: 1;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: perspective(1000px) rotateY(0deg);
        }

        .mv-card:hover {
            transform: perspective(1000px) rotateY(5deg) translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .mv-header {
            background-color: #2c3e50;
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mv-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0.3),
                rgba(255, 255, 255, 0)
            );
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }

        .mv-header:hover::before {
            left: 100%;
        }

        .mv-header.mission {
            background-color: #3498db;
        }

        .mv-header.vision {
            background-color: #2c3e50;
        }

        .mv-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            position: relative;
        }

        .mv-header i {
            transition: transform 0.3s ease;
        }

        .mv-card:hover .mv-header i {
            transform: scale(1.2);
        }

        .mv-content {
            padding: 30px;
            position: relative;
        }

        .mv-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            position: relative;
        }

        /* Objectives Section */
        .objectives {
            background-color: #f1f2f6;
        }

        .objectives-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .objective-item {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateX(-20px);
            opacity: 0;
        }

        .objective-item.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .objective-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background-color: #e74c3c;
            transition: height 0.6s ease;
        }

        .objective-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .objective-item:hover::before {
            height: 100%;
        }

        .objective-number {
            background-color: #e74c3c;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .objective-item:hover .objective-number {
            transform: scale(1.1);
            box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.3);
        }

        .objective-text {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .objective-text h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color:  #1a5276;
            transition: color 0.3s ease;
        }

        .objective-item:hover .objective-text h3 {
            color: #e74c3c;
        }

        .objective-icon {
            margin-left: 20px;
            color: #e74c3c;
            font-size: 2rem;
            opacity: 0.2;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .objective-item:hover .objective-icon {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Values Section */
       .values {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
        }

        .values .section-title h2 {
            color: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-card {
            text-align: center;
            padding: 30px;
            background: rgba(109, 8, 8, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .value-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .value-card:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.15);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #e74c3c;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: rotate(15deg) scale(1.2);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
        }

        .value-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: #e74c3c;
            transition: width 0.3s ease;
        }

        .value-card:hover h3::after {
            width: 80px;
        }
    /* Services Section */
        .services {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
           background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color:  #1a5276;
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #e74c3c;
            transition: width 0.3s ease;
        }

        .footer-column:hover h3::after {
            width: 80px;
        }

        .footer-column p, .footer-column li {
            margin-bottom: 10px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-column:hover p, .footer-column:hover li {
            opacity: 1;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: #e74c3c;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #e74c3c;
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                transform: translateY(20px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes underlineGrow {
            from { width: 0; }
            to { width: 80px; }
        }

        @keyframes titleUnderline {
            0% { 
                letter-spacing: 20px;
                opacity: 0;
            }
            50% { 
                letter-spacing: normal;
                opacity: 1;
            }
            100% { 
                letter-spacing: normal;
                opacity: 1;
            }
        }
/* Contact Section */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .mv-container {
                flex-direction: column;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
                transform: perspective(1000px) rotateX(-5deg);
            }
            
            .about-image:hover {
                transform: perspective(1000px) rotateX(0deg);
            }
            
            .objective-item {
                flex-direction: column;
            }
            
            .objective-number {
                margin-bottom: 15px;
            }
            
            .objective-icon {
                margin-left: 0;
                margin-top: 15px;
                align-self: flex-start;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 15px 0;
                animation: slideDown 0.5s ease forwards;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
            }
            
            nav ul li a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .mv-card {
                margin-bottom: 30px;
            }
            
            .value-card {
                padding: 20px;
            }
        }
    