:root {
            --primary-color: #1a237e;
            --secondary-color: #ff4081;
            --accent-color: #00bcd4;
            --dark-color: #0d1533;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 21, 51, 0.85), rgba(13, 21, 51, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e91e63;
            border-color: #e91e63;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        section {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title h2 {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .about-content {
            font-size: 1.1rem;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 188, 212, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
            font-size: 1.8rem;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background-color: var(--dark-color);
            color: white;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }
        .contact-form .form-control {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
            transition: border-color 0.3s ease;
        }
        .contact-form .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .flink:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            section {
                padding: 3rem 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }
        #backToTop:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }
