    /* ============================================
    HARIVA TECH - MODERN LIGHT THEME STYLES
    ============================================ */

    :root {
        --primary-color: #309fee;
        --secondary-color: #1658af;
        --accent-color: #fea003;
        --accent-secondary: #ffb204;
        --success-color: #10b981;
        --light-bg: #ffffff;
        --light-gray: #f8fafc;
        --medium-gray: #e2e8f0;
        --dark-gray: #64748b;
        --text-dark: #1e293b;
        --text-medium: #475569;
        --text-light: #94a3b8;
        --gradient-1: linear-gradient(135deg, #309fee 0%, #1658af 100%);
        --gradient-2: linear-gradient(135deg, #fea003 0%, #ffb204 100%);
        --gradient-3: linear-gradient(135deg, #309fee 0%, #fea003 100%);
        --gradient-blue: linear-gradient(135deg, #309fee 0%, #1658af 100%);
        --gradient-orange: linear-gradient(135deg, #fea003 0%, #ffb204 100%);
        --shadow-sm: 0 1px 2px 0 rgba(48, 159, 238, 0.1);
        --shadow-md: 0 4px 6px -1px rgba(48, 159, 238, 0.15);
        --shadow-lg: 0 10px 15px -3px rgba(48, 159, 238, 0.2);
        --shadow-xl: 0 20px 25px -5px rgba(48, 159, 238, 0.25);
        --shadow-orange: 0 10px 15px -3px rgba(254, 160, 3, 0.2);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--light-bg);
        color: var(--text-dark);
        overflow-x: hidden;
        line-height: 1.6;
    }

    /* ============================================
    NAVIGATION
    ============================================ */

    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 0.4rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--medium-gray);
        min-height: 100px;
        animation: slideDown 0.6s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.99);
        box-shadow: var(--shadow-md);
    }

    .navbar-brand {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-color) !important;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        height: 100%;
    }

    .navbar-logo {
        height: 90px;
        width: auto;
        object-fit: contain;
        max-width: none;
    }

    .navbar-brand span {
        color: var(--text-dark);
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .navbar {
            min-height: 85px;
        }
        
        .navbar-logo {
            height: 75px;
        }
        
        .navbar-brand {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 576px) {
        .navbar {
            min-height: 75px;
        }
        
        .navbar-logo {
            height: 65px;
        }
        
        .navbar-brand {
            font-size: 1.2rem;
        }
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-weight: 500;
        margin: 0 0.25rem;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0.375rem 0.75rem !important;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
        background: rgba(37, 99, 235, 0.1);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--gradient-1);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* ============================================
    HERO SECTION
    ============================================ */

    .hero-section {
        position: relative;
        min-height: auto;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
        padding-top: 120px;
        padding-bottom: 2rem;
        background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 50%, #f0f7ff 100%);
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.3;
    }

    .particles {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(3px 3px at 20% 30%, rgba(48, 159, 238, 0.15), transparent),
            radial-gradient(3px 3px at 60% 70%, rgba(254, 160, 3, 0.15), transparent),
            radial-gradient(2px 2px at 50% 50%, rgba(48, 159, 238, 0.1), transparent),
            radial-gradient(2px 2px at 80% 10%, rgba(254, 160, 3, 0.15), transparent),
            radial-gradient(3px 3px at 90% 80%, rgba(22, 88, 175, 0.1), transparent);
        background-size: 200% 200%;
        animation: particleMove 20s ease infinite;
    }

    @keyframes particleMove {
        0%, 100% { background-position: 0% 0%; }
        50% { background-position: 100% 100%; }
    }

    .grid-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(48, 159, 238, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(254, 160, 3, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .hero-content .row {
        margin: 0;
    }

    .hero-text {
        padding: 0.5rem 0 0 0;
        width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        margin-top: 0;
        animation: fadeInUp 1s ease forwards;
        color: var(--text-dark);
        text-align: center;
        word-wrap: break-word;
        opacity: 0;
    }

    .gradient-text {
        background: var(--gradient-3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        word-break: keep-all;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-medium);
        margin-bottom: 2rem;
        margin-top: 0;
        animation: fadeInUp 1s ease 0.2s forwards;
        font-weight: 400;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        opacity: 0;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.4s both;
        justify-content: center;
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .btn-primary {
        background: var(--gradient-blue);
        border: none;
        padding: 0.875rem 2rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        color: white;
        box-shadow: var(--shadow-md);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-xl);
        color: white;
        background: var(--gradient-blue);
    }

    .btn-primary i {
        margin-left: 0.5rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary:hover i {
        transform: translateX(5px);
    }

    .btn-outline-light {
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
        padding: 0.875rem 2rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        position: relative;
        overflow: hidden;
    }

    .btn-outline-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-orange);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .btn-outline-light:hover::before {
        left: 0;
    }

    .btn-outline-light:hover {
        background: var(--gradient-orange);
        border-color: var(--accent-color);
        color: white;
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-orange);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(48, 159, 238, 0.1);
        color: var(--primary-color);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease 0.1s forwards, pulse 2s ease-in-out 1.5s infinite;
        border: 1px solid rgba(48, 159, 238, 0.2);
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .hero-badge:hover {
        transform: scale(1.05);
        background: rgba(48, 159, 238, 0.15);
    }

    .hero-badge i {
        color: var(--accent-color);
        animation: pulse 2s ease-in-out infinite;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 2rem 0 3rem 0;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.3s forwards;
        padding: 0;
        opacity: 0;
    }

    .stat-item {
        text-align: center;
        transition: all 0.3s ease;
        animation: scaleIn 0.6s ease forwards;
        opacity: 0;
    }

    .stat-item:nth-child(1) {
        animation-delay: 0.4s;
    }

    .stat-item:nth-child(2) {
        animation-delay: 0.5s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-item:hover .stat-number {
        transform: scale(1.1);
    }

    .stat-item {
        text-align: center;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-item:hover .stat-number {
        transform: scale(1.1);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: var(--gradient-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.25rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-medium);
        font-weight: 500;
        margin: 0;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .mouse {
        width: 30px;
        height: 50px;
        border: 2px solid var(--primary-color);
        border-radius: 20px;
        position: relative;
    }

    .wheel {
        width: 4px;
        height: 10px;
        background: var(--accent-color);
        border-radius: 2px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% { opacity: 1; top: 10px; }
        100% { opacity: 0; top: 30px; }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes shimmer {
        0% {
            background-position: -1000px 0;
        }
        100% {
            background-position: 1000px 0;
        }
    }

    /* Animation Classes */
    .animate-on-scroll {
        opacity: 0;
        transition: all 0.6s ease;
    }

    .animate-on-scroll.animated {
        opacity: 1;
    }

    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
    }

    .fade-in-left {
        animation: fadeInLeft 0.8s ease forwards;
    }

    .fade-in-right {
        animation: fadeInRight 0.8s ease forwards;
    }

    .scale-in {
        animation: scaleIn 0.6s ease forwards;
    }

    .slide-up {
        animation: slideUp 0.8s ease forwards;
    }

    /* ============================================
    SECTIONS
    ============================================ */

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-dark);
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        text-align: center;
        width: 100%;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-medium);
        animation: fadeInUp 0.8s ease 0.2s forwards;
        opacity: 0;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .services-preview {
        background: var(--light-gray);
        padding: 5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .services-preview .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services-preview .row.text-center {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .service-card-preview {
        background: white;
        border: 1px solid var(--medium-gray);
        border-radius: 20px;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        box-shadow: var(--shadow-sm);
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .service-card-preview:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card-preview:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card-preview:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card-preview:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-xl);
    }

    .service-card-preview:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .service-card-preview:nth-child(1) .service-icon {
        background: var(--gradient-blue);
    }

    .service-card-preview:nth-child(2) .service-icon {
        background: var(--gradient-orange);
    }

    .service-card-preview:nth-child(3) .service-icon {
        background: var(--gradient-blue);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: var(--gradient-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: scaleIn 0.6s ease forwards;
    }

    .service-card-preview h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    .service-card-preview p {
        color: var(--text-medium);
        margin-bottom: 1.5rem;
    }

    .service-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        color: var(--accent-color);
    }

    .service-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

    /* ============================================
    CLIENTS & PROJECTS CAROUSEL
    ============================================ */

    .clients-section,
    .projects-section {
        padding: 2rem 0 5rem 0;
        overflow: hidden;
        background: white;
    }

    .clients-carousel,
    .projects-carousel {
        overflow: hidden;
        position: relative;
    }

    .clients-track,
    .projects-track {
        display: flex;
        gap: 2rem;
        animation: scrollHorizontal 30s linear infinite;
    }

    .clients-track:hover,
    .projects-track:hover {
        animation-play-state: paused;
    }

    @keyframes scrollHorizontal {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .client-card,
    .project-card {
        min-width: 300px;
        background: white;
        border: 1px solid var(--medium-gray);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        animation: fadeInLeft 0.6s ease forwards;
        opacity: 0;
    }

    .client-card:hover,
    .project-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-xl);
    }

    .client-card:hover .client-logo,
    .project-card:hover .project-image {
        transform: scale(1.1) rotate(5deg);
    }

    .client-card:nth-child(odd) .client-logo {
        background: var(--gradient-blue);
    }

    .client-card:nth-child(even) .client-logo {
        background: var(--gradient-orange);
    }

    .project-card:nth-child(odd) .project-image {
        background: var(--gradient-blue);
    }

    .project-card:nth-child(even) .project-image {
        background: var(--gradient-orange);
    }

    .client-logo {
        width: 80px;
        height: 80px;
        background: var(--gradient-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .client-card h5,
    .project-card h5 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    .client-card p,
    .project-card p {
        color: var(--text-medium);
    }

    .project-image {
        width: 100%;
        height: 200px;
        background: var(--gradient-blue);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: white;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .project-content {
        text-align: left;
    }

    .project-tag {
        display: inline-block;
        background: rgba(254, 160, 3, 0.1);
        color: var(--accent-color);
        padding: 0.25rem 1rem;
        border-radius: 20px;
        font-size: 0.875rem;
        margin-top: 1rem;
        font-weight: 500;
    }

    /* ============================================
    SERVICES PAGE
    ============================================ */

    .page-hero {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 100%);
        padding-top: 120px;
        padding-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .page-hero .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-hero .row {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(48, 159, 238, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(254, 160, 3, 0.05) 0%, transparent 50%);
    }

    .page-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 1rem;
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        text-align: center;
        width: 100%;
    }

    .page-subtitle {
        font-size: 1.25rem;
        color: var(--text-medium);
        margin-top: 0;
        animation: fadeInUp 0.8s ease 0.2s forwards;
        opacity: 0;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .services-main {
        padding: 4rem 0;
        background: white;
    }

    .service-card-modern {
        background: white;
        border: 2px solid var(--medium-gray);
        border-radius: 20px;
        padding: 0;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .service-card-modern:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card-modern:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card-modern:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card-modern:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-xl);
        transform: translateY(-10px) scale(1.02);
    }

    .service-card-modern:hover .service-icon-modern {
        transform: scale(1.1) rotate(10deg);
    }

    .service-card-header {
        background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 100%);
        padding: 2.5rem 2rem;
        text-align: center;
        border-bottom: 2px solid var(--medium-gray);
    }

    .service-icon-modern {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: scaleIn 0.6s ease forwards;
    }

    .service-icon-blue {
        background: var(--gradient-blue);
    }

    .service-icon-orange {
        background: var(--gradient-orange);
    }

    .service-card-header h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .service-tagline {
        font-size: 1rem;
        color: var(--text-medium);
        margin: 0;
        font-weight: 500;
    }

    .service-card-body {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        flex-grow: 1;
    }

    .service-features li {
        padding: 0.75rem 0;
        color: var(--text-medium);
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-features li i {
        color: var(--success-color);
        font-size: 1.1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .service-benefits-box {
        background: rgba(48, 159, 238, 0.05);
        padding: 1.25rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        margin-top: auto;
    }

    .service-benefits-box strong {
        color: var(--primary-color);
        font-size: 1rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .service-benefits-box p {
        color: var(--text-medium);
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        background: var(--light-gray);
        padding: 4rem 0;
    }

    .feature-box {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--medium-gray);
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .feature-box:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-box:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-box:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .feature-box:hover .feature-icon {
        transform: scale(1.15) rotate(5deg);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: var(--gradient-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: scaleIn 0.6s ease forwards;
    }

    .feature-box:nth-child(2) .feature-icon {
        background: var(--gradient-orange);
    }

    .feature-box h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .feature-box p {
        color: var(--text-medium);
        margin: 0;
        line-height: 1.6;
    }

    /* ============================================
    CONTACT PAGE
    ============================================ */

    .contact-section {
        padding: 4rem 0;
        background: white;
    }

    /* Quick Contact Cards */
    .quick-contact-card {
        background: white;
        border: 2px solid var(--medium-gray);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        height: 100%;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .quick-contact-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .quick-contact-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .quick-contact-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .quick-contact-card:hover {
        transform: translateY(-8px) scale(1.03);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-lg);
    }

    .quick-contact-card:hover .quick-contact-icon {
        transform: scale(1.15) rotate(10deg);
    }

    .quick-contact-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: scaleIn 0.6s ease forwards;
    }

    .quick-icon-blue {
        background: var(--gradient-blue);
    }

    .quick-icon-orange {
        background: var(--gradient-orange);
    }

    .quick-contact-card h4 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .quick-contact-card p {
        color: var(--text-medium);
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .quick-contact-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .quick-contact-link:hover {
        color: var(--accent-color);
        gap: 0.75rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        background: white;
        border: 2px solid var(--medium-gray);
        border-radius: 0;
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInLeft 0.8s ease forwards;
        opacity: 0;
    }

    .contact-info-wrapper {
        animation: fadeInRight 0.8s ease forwards;
    }

    .contact-form-wrapper:hover,
    .contact-info-wrapper:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--medium-gray);
        transform: translateY(-5px);
    }

    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--light-gray);
    }

    .form-header h2 {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-size: 1.75rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .form-header h2 i {
        color: var(--primary-color);
    }

    .form-header p {
        color: var(--text-medium);
        margin: 0;
        font-size: 0.95rem;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2 {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .contact-form-wrapper h2 i,
    .contact-info-wrapper h2 i {
        color: var(--primary-color);
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .contact-form .form-label {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .contact-form .form-label i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        background: var(--light-gray);
        border: 2px solid var(--medium-gray);
        color: var(--text-dark);
        border-radius: 0;
        padding: 0.75rem 1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .contact-form .form-control:nth-of-type(1) {
        animation-delay: 0.1s;
    }

    .contact-form .form-control:nth-of-type(2) {
        animation-delay: 0.15s;
    }

    .contact-form .form-control:nth-of-type(3) {
        animation-delay: 0.2s;
    }

    .contact-form .form-select {
        animation-delay: 0.25s;
    }

    .contact-form textarea {
        animation-delay: 0.3s;
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        background: white;
        border-color: var(--medium-gray);
        color: var(--text-dark);
        box-shadow: none;
        outline: none;
        transform: translateY(-2px);
    }

    .contact-form .form-control::placeholder {
        color: var(--text-light);
        opacity: 0.7;
    }

    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 150px;
    }

    .contact-form .row.g-3 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.75rem;
        margin-bottom: 0;
    }

    .contact-form .row.g-3 > * {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: calc(var(--bs-gutter-y) * 0.5);
        margin-bottom: calc(var(--bs-gutter-y) * 0.5);
    }

    .contact-info-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: white;
        flex-shrink: 0;
        box-shadow: var(--shadow-md);
    }

    .contact-details h5 {
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .contact-info-item:nth-child(even) .contact-icon {
        background: var(--gradient-orange);
    }

    .contact-details p {
        color: var(--text-medium);
        margin: 0;
    }

    .map-wrapper {
        margin-top: 2rem;
    }

    .map-wrapper h3 {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .map-wrapper h3 i {
        color: var(--primary-color);
    }

    .map-container {
        border-radius: 0;
        overflow: hidden;
        border: 2px solid var(--medium-gray);
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.3s;
    }

    .map-container:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--medium-gray);
        transform: scale(1.02);
    }

    .map-container iframe {
        display: block;
        width: 100%;
    }

    #formMessage {
        padding: 1rem;
        border-radius: 0;
        display: none;
    }

    #formMessage.success {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success-color);
        border: 1px solid var(--success-color);
        display: block;
    }

    #formMessage.error {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border: 1px solid #ef4444;
        display: block;
    }

    .cta-section {
        background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 100%);
        padding: 5rem 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    .cta-section p {
        font-size: 1.25rem;
        color: var(--text-medium);
        margin-bottom: 2rem;
    }

    /* ============================================
    FOOTER
    ============================================ */

    .footer {
        background: var(--text-dark);
        padding: 4rem 0 2rem;
        color: white;
    }

    .footer h5 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .footer h5:nth-child(even) {
        color: var(--accent-color);
    }

    .footer p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1.5rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-contact li {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-contact i {
        color: var(--primary-color);
        width: 20px;
    }

    .footer-contact li:nth-child(even) i {
        color: var(--accent-color);
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--gradient-blue);
        border-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

    .social-links a:nth-child(even):hover {
        background: var(--gradient-orange);
        border-color: var(--accent-color);
    }

    .footer-divider {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 2rem 0 1rem;
    }

    .footer .text-center {
        color: rgba(255, 255, 255, 0.6);
    }

    /* ============================================
    RESPONSIVE DESIGN
    ============================================ */

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .hero-stats {
            gap: 2rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .page-title {
            font-size: 2rem;
        }
        
        .service-card-front h3 {
            font-size: 1.5rem;
        }
        
        .service-icon-large {
            font-size: 3rem;
        }
        
        .client-card,
        .project-card {
            min-width: 250px;
        }
        
        .hero-buttons {
            flex-direction: column;
        }
        
        .hero-buttons .btn {
            width: 100%;
        }
        
        .contact-form-wrapper,
        .contact-info-wrapper {
            padding: 2rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .services-grid {
            gap: 2rem;
        }
        
        .service-card-front,
        .service-card-back {
            padding: 2rem;
        }
        
        .page-title {
            font-size: 1.75rem;
        }
    }

    /* Fix for Overview Section Alignment */
.overview-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.overview-section > div {
    flex: 1;
}

@media (max-width: 991px) {
    .overview-section {
        flex-direction: column;
        gap: 2rem;
    }
}
