:root {
            --primary-color: #1a365d;
            --secondary-color: #00a8e8;
            --accent-color: #ff6b35;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(26, 54, 93, 0.95);
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 80%;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d4a7a 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA2MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDEyMDB2NjAwSDB6IiBmaWxsPSIjMWExYTMxIi8+PHBhdGggZD0iTTAgMjM0LjY3N0MxNTAgMTQ3Ljg1MiAzMDAgMTQ3Ljg1MiA0NTAgMjM0LjY3N2MxNTAgODYuODI1IDMwMCA4Ni44MjUgNDUwIDBjMTUwLTg2LjgyNSAzMDAtODYuODI1IDQ1MCAwVjYwMEgweiIgZmlsbD0iIzAwYThlOCIgb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 700px;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #0091cc;
            border-color: #0091cc;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
        }
        .btn-outline-custom {
            border-color: rgba(255, 255, 255, 0.7);
            color: white;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .section-subtitle {
            color: var(--gray-color);
            font-size: 1.1rem;
            max-width: 700px;
            margin-bottom: 3rem;
        }
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .service-card h4 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .feature-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary-color);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d4a7a 100%);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .stats-counter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA2MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDEyMDB2NjAwSDB6IiBmaWxsPSIjMWExYTMxIi8+PHBhdGggZD0iTTAgNDY1QzE1MCA0NjUgMzAwIDQ2NSA0NTAgNDY1YzE1MCAwIDMwMCAwIDQ1MCAwYzE1MCAwIDMwMCAwIDQ1MCAwdjEzNUgweiIgZmlsbD0iIzAwYThlOCIgb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: white;
        }
        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .portfolio-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            margin-bottom: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 300px;
        }
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .portfolio-img {
            width: 100%;
            height: 100%;
            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(to top, rgba(26, 54, 93, 0.9), transparent);
            color: white;
            padding: 2rem;
            transform: translateY(30px);
            transition: transform 0.4s ease;
        }
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            height: 100%;
            border: 1px solid #e9ecef;
            position: relative;
        }
        .testimonial-card::before {
            content: "\201C";
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 5rem;
            color: rgba(0, 168, 232, 0.1);
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--secondary-color);
        }
        .contact-info-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            background: white;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
        }
        .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: 0.5rem;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .form-control-custom {
            border-radius: 8px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-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: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #0091cc;
            transform: translateY(-3px);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
