:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-color: #121212;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1440404653325-ab127d49abc1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-custom:hover {
            background-color: #e65100;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            color: white;
        }
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            transition: var(--transition);
            border: 1px solid #eee;
            box-shadow: var(--shadow);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-color) !important;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 5px solid #f1f1f1;
            transition: var(--transition);
        }
        .team-member:hover .team-img {
            border-color: var(--accent-color);
        }
        .contact-info-box {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            border-left: 4px solid var(--primary-color);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .footer {
            background-color: var(--dark-color);
            color: #bbb;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--accent-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: var(--transition);
        }
        .social-icons a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 4px;
            color: #ddd;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: var(--shadow);
        }
        .timeline-item:nth-child(odd)::before {
            content: " ";
            position: absolute;
            top: 15px;
            right: -13px;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--secondary-color);
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item:nth-child(even)::before {
            content: " ";
            position: absolute;
            top: 15px;
            left: -13px;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--secondary-color);
            border-radius: 50%;
            z-index: 1;
        }
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item:nth-child(odd)::before,
            .timeline-item:nth-child(even)::before {
                left: 18px;
                right: auto;
            }
        }
        .portfolio-item {
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
            box-shadow: var(--shadow);
        }
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.9);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stats-box:hover {
            background: white;
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-color);
        }
        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid #eee;
        }
        .client-info h5 {
            margin-bottom: 0.2rem;
        }
        .client-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .form-control-custom {
            border-radius: 4px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            transition: var(--transition);
        }
        .form-control-custom:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .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: #999;
        }
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
