:root {
            --primary-blue: #0a3d62;
            --secondary-teal: #079992;
            --accent-orange: #e58e26;
            --light-gray: #f8f9fa;
            --dark-gray: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-orange);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5799 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        .section-padding {
            padding: 100px 0;
        }
        .service-card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--secondary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .bg-light-gray {
            background-color: var(--light-gray);
        }
        .stats-section {
            background: linear-gradient(135deg, var(--secondary-teal) 0%, #38ada9 100%);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .btn-primary {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-outline-light {
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 50px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .friendlink {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        .flink {
            display: inline-block;
            margin: 10px 20px;
            padding: 10px 20px;
            background: white;
            border-radius: 8px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
            color: var(--secondary-teal);
            text-decoration: none;
        }
        .contact-info i {
            color: var(--secondary-teal);
            margin-right: 10px;
            width: 25px;
        }
        .company-logo {
            height: 50px;
            width: auto;
            margin-right: 10px;
        }
        .timeline-item {
            border-left: 3px solid var(--secondary-teal);
            padding-left: 30px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            width: 15px;
            height: 15px;
            background: var(--secondary-teal);
            border-radius: 50%;
            position: absolute;
            left: -9px;
            top: 5px;
        }
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        .form-control:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 0.25rem rgba(7, 153, 146, 0.25);
        }
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
        }
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }
