:root {
            --primary: #2a2d7c;
            --secondary: #ff6b35;
            --accent: #00c9b7;
            --light: #f8f9ff;
            --dark: #1a1a2e;
            --gray: #6c757d;
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary) !important;
        }
        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: white !important;
            background-color: var(--secondary);
        }
        .hero-section {
            background: linear-gradient(rgba(42, 45, 124, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        .btn-primary-custom {
            background-color: var(--secondary);
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--accent);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .service-body {
            padding: 25px;
        }
        .stats-counter {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            position: relative;
        }
        .testimonial-card::before {
            content: "\201C";
            font-size: 5rem;
            color: var(--light);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: serif;
        }
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
        }
        .contact-info-box {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            border-left: 5px solid var(--secondary);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .form-control-custom {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(0, 201, 183, 0.25);
        }
        .footer {
            background-color: var(--dark);
            color: #bbb;
            padding: 60px 0 20px;
        }
        .footer-heading {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        .footer-link {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        .footer-link:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            background: var(--light);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            border: 1px solid #eee;
        }
        .flink:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background-color: #f9f9ff;
            padding: 50px 0;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
