:root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-color: #0f4c75;
            --highlight-color: #00b7c2;
            --light-bg: #f8f9fa;
            --text-light: #e6e6e6;
            --text-dark: #333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--highlight-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--highlight-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: var(--text-light);
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .section-title {
            color: var(--accent-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--highlight-color);
        }
        .text-center.section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .info-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            border-left: 5px solid var(--accent-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 20px;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--accent-color);
            margin-bottom: 20px;
        }
        .contact-info li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 30px;
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 60px 0 20px;
        }
        .footer a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--highlight-color);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--highlight-color);
            transform: scale(1.1);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--highlight-color);
            color: var(--primary-dark);
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            padding: 10px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: var(--highlight-color);
            border-color: var(--highlight-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .content-section {
            padding: 80px 0;
        }
        .content-section:nth-of-type(even) {
            background-color: var(--light-bg);
        }
        .content-text {
            line-height: 1.8;
            font-size: 1.1rem;
            text-align: justify;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-color);
            display: block;
        }
        .stats-label {
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        .img-fluid-rounded {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
        }
        .img-fluid-rounded:hover {
            transform: scale(1.02);
        }
