:root {
            --primary-color: #1a237e;
            --secondary-color: #ff9800;
            --accent-color: #4caf50;
            --dark-color: #121212;
            --light-color: #f5f5f7;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            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 4px 12px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-color);
            margin: 0 0.5rem;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 5px solid var(--light-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .testimonial-card {
            background-color: var(--light-color);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            height: 100%;
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .client-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.2rem;
        }
        .contact-info-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin-bottom: 1.5rem;
        }
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        .footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .friendlinks {
            background-color: #1c1c1c;
            padding: 2rem 0;
            border-top: 1px solid #333;
        }
        .flink {
            display: inline-block;
            background-color: #2a2a2a;
            color: #ddd;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            margin: 0.5rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #444;
        }
        .flink:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        .schema-ld {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .navbar-collapse {
                background-color: white;
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }
        }
