:root {
            --primary-blue: #1a56db;
            --secondary-blue: #3b82f6;
            --accent-orange: #f97316;
            --dark-bg: #111827;
            --light-bg: #f8fafc;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --border-radius: 12px;
            --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: #ffffff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
        }
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 2px;
        }
        .section-title p {
            max-width: 700px;
            margin: 1rem auto 0;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 0.7rem 0;
            background-color: rgba(255, 255, 255, 0.98);
        }
        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand i {
            color: var(--accent-orange);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: rgba(26, 86, 219, 0.08);
        }
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
            color: white;
            padding: 10rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
        }
        .btn-primary {
            background-color: var(--accent-orange);
            border-color: var(--accent-orange);
            padding: 0.8rem 2.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #ea580c;
            border-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
        }
        .btn-outline-light {
            padding: 0.8rem 2.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid #e5e7eb;
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-blue);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .feature-card h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .feature-card p {
            color: var(--text-light);
        }
        .about-section {
            background-color: var(--light-bg);
        }
        .about-content {
            display: flex;
            align-items: center;
        }
        .about-img {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transform: rotate(2deg);
            transition: var(--transition);
        }
        .about-img:hover {
            transform: rotate(0deg);
        }
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .about-text h2 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        .stats {
            display: flex;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
            padding: 0 1.5rem;
            border-right: 1px solid #e5e7eb;
        }
        .stat-item:last-child {
            border-right: none;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid #e5e7eb;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        .service-body {
            padding: 2rem;
        }
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .service-body h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .service-body p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        .service-link {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        .service-link:hover {
            color: var(--accent-orange);
        }
        .service-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        .service-link:hover i {
            transform: translateX(5px);
        }
        .team-section {
            background-color: var(--light-bg);
        }
        .team-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .team-img {
            height: 280px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .team-card:hover .team-img img {
            transform: scale(1.05);
        }
        .team-body {
            padding: 2rem 1.5rem;
        }
        .team-body h4 {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .team-position {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }
        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f3f4f6;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }
        .team-social a:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .contact-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            height: 100%;
            box-shadow: var(--box-shadow);
            border: 1px solid #e5e7eb;
        }
        .contact-info {
            margin-bottom: 2rem;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .contact-details h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--text-dark);
        }
        .contact-details p {
            color: var(--text-light);
            margin-bottom: 0;
        }
        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .contact-details a:hover {
            color: var(--primary-blue);
        }
        .form-control, .form-select {
            padding: 0.9rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #d1d5db;
            transition: var(--transition);
            margin-bottom: 1.5rem;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 86, 219, 0.15);
        }
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 4rem 0 0;
        }
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-orange);
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: var(--accent-orange);
            text-decoration: none;
        }
        .friendlink {
            background-color: #f9fafb;
            padding: 3rem 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            border: 1px solid #e5e7eb;
            transition: var(--transition);
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .stats {
                justify-content: center;
                flex-wrap: wrap;
            }
            .stat-item {
                flex: 0 0 50%;
                margin-bottom: 1.5rem;
                border-right: none;
                padding: 0 1rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 8rem 0 4rem;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .btn-primary, .btn-outline-light {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            .contact-card {
                padding: 1.5rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease forwards;
        }
        .schema-data {
            display: none;
        }
