:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #2d3748;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 600;
            color: var(--primary-color) !important;
            margin: 0 8px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        section {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .about-content {
            background-color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            border-top: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top-color: var(--secondary-color);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .info-box {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        .info-box:hover {
            transform: translateY(-5px);
        }
        .info-box h3 {
            color: white;
            margin-bottom: 15px;
        }
        .info-box i {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 15px 25px;
            margin: 10px;
            border-radius: 5px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--accent-color);
            color: white;
            padding: 60px 0 20px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 100px 0 60px;
                min-height: 70vh;
            }
            section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .contact-form, .about-content {
                padding: 25px;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .stat-label {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        .img-fluid {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
