:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #2d3748;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --text-light: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title h2 {
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--primary-color);
            margin: 0 0.5rem;
            transition: var(--transition);
            position: relative;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            content: '';
            position: absolute;
            width: 80%;
            height: 2px;
            background: var(--secondary-color);
            bottom: 0;
            left: 10%;
        }
        .navbar-toggler {
            border: none;
            padding: 0;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1445205170230-053b83016050?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') no-repeat center center/cover;
            color: white;
            padding: 10rem 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            color: var(--primary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: transparent;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .about-img:hover {
            transform: translateY(-10px);
        }
        .about-content h3 {
            margin-top: 1.5rem;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--secondary-color);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.95)), url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
        }
        .stat-item h3 {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .stat-item p {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 2rem;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        .team-info {
            padding: 1.5rem;
        }
        .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: var(--light-color);
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 5px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--secondary-color);
            color: white;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--secondary-color);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .contact-form .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .contact-form .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 5px;
            color: var(--primary-color);
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-decoration: none;
        }
        .flink:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 8rem 0 4rem;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .stat-item h3 {
                font-size: 2.5rem;
            }
        }
