:root {
            --primary: #1a365d;
            --secondary: #0d9488;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, #2d4a8a 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="white"/></svg>');
            background-size: 100% 120px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
        .btn-primary-custom {
            background: var(--secondary);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: #0b7c71;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-outline-light-custom {
            border: 2px solid white;
            background: transparent;
            color: white;
            padding: 10px 26px;
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-outline-light-custom:hover {
            background: white;
            color: var(--primary);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 8px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary);
        }
        .navbar-nav .nav-link.active {
            color: var(--secondary);
            font-weight: 600;
        }
        .section-padding {
            padding: 80px 0;
        }
        .bg-light-custom {
            background-color: var(--light);
        }
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--secondary);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(13, 148, 136, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--secondary);
            font-size: 1.8rem;
        }
        .stats-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .team-img {
            height: 250px;
            object-fit: cover;
        }
        .contact-info-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-left: 4px solid var(--secondary);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(13, 148, 136, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .form-control-custom {
            border: 1px solid #cbd5e1;
            border-radius: 4px;
            padding: 12px 15px;
            transition: var(--transition);
        }
        .form-control-custom:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
        }
        .footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-title {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .friendlink {
            background: #f1f5f9;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: white;
            border-radius: 4px;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--secondary);
            color: white;
            border-color: var(--secondary);
            transform: translateY(-2px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary);
            color: white;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--secondary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 8px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .breadcrumb-custom {
            background: transparent;
            padding: 15px 0;
        }
        .breadcrumb-custom .breadcrumb-item a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--gray);
        }
