    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-blue: #0091EA;
        --dark-blue: #0047AB;
        --light-blue: #B3E5FC;
        --navy: #0A2E5A;
        --white: #FFFFFF;
        --light-gray: #F5F7FA;
        --dark-gray: #2D3748;
        --orange: #FF6B35;
        --success: #48BB78;
        --whatsapp: #25D366;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
        overflow-x: hidden;
    }

    /* Remove extra space and horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Fix mobile menu panel positioning */
    .mobile-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        padding: 100px 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        /* Ensure it doesn't affect layout when closed */
        visibility: hidden;
    }

    .mobile-nav-panel.active {
        right: 0;
        visibility: visible;
    }

    /* Fix navigation container */
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    /* Fix hero section on mobile */
    @media (max-width: 968px) {
        .hero {
            margin-top: 60px;
            padding: 4rem 1.5rem;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .hero-content {
            max-width: 100%;
            width: 100%;
        }

        /* Remove any margin/padding from sections */
        section {
            padding: 3rem 1.5rem;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 100%;
            padding: 0;
        }

        /* Fix about section */
        .about-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            width: 100%;
        }

        .about-image,
        .about-text {
            width: 100%;
            max-width: 100%;
        }
    }

    /* Fix smaller screens */
    @media (max-width: 480px) {
        .nav-container {
            padding: 0 1rem;
        }

        .hero {
            padding: 3rem 1rem;
        }

        section {
            padding: 2.5rem 1rem;
        }

        /* Ensure all containers fit screen */
        .services-grid,
        .portfolio-grid,
        .pricing-grid,
        .features-grid,
        .testimonials-slider {
            grid-template-columns: 1fr;
            width: 100%;
            max-width: 100%;
        }

        .service-card,
        .portfolio-item,
        .pricing-card,
        .feature-item,
        .testimonial-card {
            width: 100%;
            max-width: 100%;
        }
    }

    /* Remove any potential overflow from images */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Fix all containers */
    .container,
    .nav-container,
    .hero-content,
    .about-content,
    .services-grid,
    .tech-grid,
    .process-steps,
    .portfolio-grid,
    .features-grid,
    .testimonials-slider,
    .pricing-grid,
    .faq-list,
    .contact-content,
    .footer-content {
        box-sizing: border-box;
    }

    /* Remove white space from mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 46, 90, 0.7);
        backdrop-filter: blur(5px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
        display: none;
        overflow: hidden;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Ensure mobile menu doesn't create scroll */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        touch-action: none;
    }

    /* ========== Preloader with Logo ========== */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .preloader-content {
        text-align: center;
        animation: preloaderFadeIn 0.8s ease;
    }

    @keyframes preloaderFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Logo Container */
    .preloader-logo {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
        position: relative;
    }

    .logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        background: var(--white);
        padding: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: logoPulse 2s ease-in-out infinite;
    }

    @keyframes logoPulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 145, 234, 0.5);
        }
    }

    /* Loading Dots Animation */
    .preloader-text {
        margin-bottom: 2rem;
    }

    .loading-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .loading-dots span {
        width: 12px;
        height: 12px;
        background: var(--white);
        border-radius: 50%;
        animation: dotBounce 1.4s ease-in-out infinite both;
        opacity: 0.6;
    }

    .loading-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .loading-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes dotBounce {

        0%,
        80%,
        100% {
            transform: scale(0.6);
            opacity: 0.6;
        }

        40% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Progress Bar */
    .preloader-progress {
        width: 200px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        margin: 0 auto;
        overflow: hidden;
    }

    .progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
        border-radius: 10px;
        transition: width 0.3s ease;
        animation: progressLoad 2s ease-in-out forwards;
    }

    @keyframes progressLoad {
        0% {
            width: 0%;
        }

        30% {
            width: 40%;
        }

        60% {
            width: 75%;
        }

        100% {
            width: 100%;
        }
    }

    /* Loading Text */
    .preloader-text::after {
        content: 'Loading';
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-top: 1rem;
        animation: textFade 1.5s ease-in-out infinite;
    }

    @keyframes textFade {

        0%,
        100% {
            opacity: 0.6;
        }

        50% {
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 480px) {
        .preloader-logo {
            width: 100px;
            height: 100px;
        }

        .preloader-progress {
            width: 160px;
        }
    }

    /* Scroll Progress Bar */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--orange), var(--primary-blue));
        z-index: 9999;
        width: 0%;
        transition: width 0.1s;
    }

    /* Navigation */
    /* ========== NAVIGATION BASE STYLES ========== */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0.75rem 0;
        transition: all 0.3s ease;
    }

    #navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.99);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Logo */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        z-index: 1001;
    }

    .logo img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .logo:hover img {
        transform: rotate(360deg);
    }

    .logo-text {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-blue);
        white-space: nowrap;
    }

    /* Desktop Navigation */
    .desktop-nav {
        display: flex;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .nav-link {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary-blue);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Desktop CTA Button */
    .desktop-cta {
        display: flex;
        align-items: center;
    }

    .btn-get-quote {
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
        padding: 0.7rem 1.4rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 145, 234, 0.3);
        border: none;
        cursor: pointer;
        white-space: nowrap;
    }

    .btn-get-quote:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 145, 234, 0.4);
        background: linear-gradient(135deg, var(--orange), var(--primary-blue));
    }

    .btn-get-quote i {
        font-size: 1rem;
        transition: transform 0.3s;
    }

    .btn-get-quote:hover i {
        transform: rotate(-10deg) scale(1.2);
    }

    /* Mobile Menu Toggle (Hamburger) */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 46, 90, 0.7);
        backdrop-filter: blur(5px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Mobile Navigation Panel */
    .mobile-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
        padding: 100px 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-panel.active {
        right: 0;
    }

    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--light-blue);
        border: none;
        border-radius: 50%;
        color: var(--primary-blue);
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-nav-close:hover {
        background: var(--primary-blue);
        color: var(--white);
        transform: rotate(90deg);
    }

    .mobile-nav-links {
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 1;
    }

    .mobile-nav-link {
        display: block;
        padding: 1.2rem 1.5rem;
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    }

    .mobile-nav-panel.active .mobile-nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

    .mobile-nav-panel.active .mobile-nav-link:nth-child(6) {
        transition-delay: 0.35s;
    }

    .mobile-nav-link:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--white));
        padding-left: 2rem;
        color: var(--primary-blue);
    }

    .mobile-nav-cta {
        padding: 1.5rem 0 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .btn-get-quote.mobile {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        box-shadow: 0 8px 25px rgba(0, 145, 234, 0.3);
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* ========== MOBILE RESPONSIVE STYLES ========== */
    @media (max-width: 968px) {
        .nav-container {
            padding: 0 1.5rem;
        }

        .logo-text {
            font-size: 1.1rem;
        }

        .logo img {
            width: 40px;
            height: 40px;
        }

        /* Hide desktop elements */
        .desktop-nav,
        .desktop-cta {
            display: none !important;
        }

        /* Show mobile toggle */
        .mobile-menu-toggle {
            display: flex;
        }

        /* Adjust navbar padding for mobile */
        #navbar {
            padding: 0.6rem 0;
        }

        #navbar.scrolled {
            padding: 0.4rem 0;
        }
    }

    @media (max-width: 480px) {
        .nav-container {
            padding: 0 1rem;
        }

        .logo-text {
            font-size: 1rem;
        }

        .logo img {
            width: 35px;
            height: 35px;
        }

        .mobile-nav-panel {
            width: 90%;
            padding: 90px 1.5rem 1.5rem;
        }

        .mobile-nav-link {
            font-size: 1rem;
            padding: 1rem 1.2rem;
        }

        .btn-get-quote.mobile {
            padding: 0.9rem;
            font-size: 0.95rem;
        }
    }

    /* Smooth scrollbar for mobile menu */
    .mobile-nav-panel::-webkit-scrollbar {
        width: 5px;
    }

    .mobile-nav-panel::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-nav-panel::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-blue), var(--orange));
        border-radius: 10px;
    }

    /* Fix hero section margin for fixed nav */
    .hero {
        margin-top: 70px;
    }

    @media (max-width: 968px) {
        .hero {
            margin-top: 60px;
        }
    }

    /* Hero Section */
    .hero {
        margin-top: 70px;
        background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
        color: var(--white);
        padding: 8rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 145, 234, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite 2s;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 15s infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translateY(-100vh) rotate(720deg);
            opacity: 0;
        }
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
        margin: 0 auto 2rem;
        border-radius: 50%;
        background: var(--white);
        padding: 20px;
        animation: bounce 2s infinite;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, var(--white), var(--light-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeInUp 1s ease;
    }

    .hero p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        animation: fadeInUp 1s ease 0.2s backwards;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.4s backwards;
    }

    .btn {
        padding: 1.2rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary {
        background: var(--orange);
        color: var(--white);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }

    .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--dark-blue);
        transform: translateY(-5px);
    }

    .btn-whatsapp {
        background: var(--whatsapp);
        color: var(--white);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }

    .btn-whatsapp:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }

    /* Section Styles */
    section {
        padding: 6rem 2rem;
        position: relative;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }

    .section-title h2 {
        font-size: 2.8rem;
        color: var(--navy);
        margin-bottom: 1rem;
        display: inline-block;
        position: relative;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
        border-radius: 2px;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 1.5rem auto 0;
    }

    /* Services Section */
    .services {
        background: var(--light-gray);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .service-card {
        background: var(--white);
        padding: 3rem 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
        font-size: 3.5rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        transition: transform 0.3s;
    }

    .service-card:hover i {
        transform: rotateY(360deg) scale(1.2);
    }

    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: var(--navy);
    }

    .service-card p {
        color: #666;
        line-height: 1.8;
    }

    /* About Section */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        display: block;
        transition: transform 0.5s;
    }

    .about-image:hover img {
        transform: scale(1.1);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.5s;
        opacity: 0;
    }

    .about-image:hover::before {
        animation: shine 0.5s ease-in-out;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
            opacity: 0;
        }
    }

    .about-text h3 {
        font-size: 2.2rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
    }

    .about-text p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: linear-gradient(135deg, var(--light-blue), var(--white));
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        cursor: pointer;
    }

    .stat-item:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .stat-item h4 {
        font-size: 2.5rem;
        color: var(--dark-blue);
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
        margin: 0;
        color: var(--navy);
        font-weight: 600;
    }

    /* Technology Stack */
    .tech-stack {
        background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
        color: var(--white);
    }

    .tech-stack .section-title h2 {
        color: var(--white);
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }

    .tech-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2rem 1rem;
        border-radius: 15px;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s;
        cursor: pointer;
    }

    .tech-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-10px) rotate(5deg);
        border-color: var(--orange);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .tech-item i {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .tech-item span {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Portfolio Section */
    .portfolio {
        background: var(--light-gray);
    }

    .portfolio-filter {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.8rem 2rem;
        border: 2px solid var(--primary-blue);
        background: transparent;
        color: var(--primary-blue);
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 145, 234, 0.3);
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }

    .portfolio-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        height: 350px;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 71, 171, 0.95) 0%, rgba(0, 145, 234, 0.9) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.4s;
        color: var(--white);
        padding: 2rem;
        text-align: center;
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-item:hover img {
        transform: scale(1.2) rotate(2deg);
    }

    .portfolio-overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        transform: translateY(20px);
        transition: transform 0.4s;
    }

    .portfolio-overlay p {
        transform: translateY(20px);
        transition: transform 0.4s 0.1s;
    }

    .portfolio-item:hover .portfolio-overlay h3,
    .portfolio-item:hover .portfolio-overlay p {
        transform: translateY(0);
    }

    .portfolio-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .portfolio-links a {
        width: 50px;
        height: 50px;
        background: var(--white);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all 0.3s;
    }

    .portfolio-links a:hover {
        background: var(--orange);
        color: var(--white);
        transform: rotate(360deg);
    }

    /* Process Section */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .step-card {
        text-align: center;
        padding: 2.5rem 2rem;
        position: relative;
        transition: all 0.4s;
    }

    .step-card:hover {
        transform: translateY(-10px);
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
        margin: 0 auto 1.5rem;
        position: relative;
        transition: all 0.4s;
        box-shadow: 0 10px 30px rgba(0, 145, 234, 0.3);
    }

    .step-card:hover .step-number {
        transform: rotate(360deg) scale(1.1);
    }

    .step-card h3 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 1rem;
    }

    /* Why Choose Us */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
        padding: 2rem;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s;
        border-left: 4px solid transparent;
    }

    .feature-item:hover {
        transform: translateX(10px);
        border-left-color: var(--primary-blue);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        min-width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--light-blue), var(--white));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-blue);
        transition: all 0.3s;
    }

    .feature-item:hover .feature-icon {
        transform: rotateY(360deg) scale(1.1);
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
    }

    .feature-text h3 {
        color: var(--navy);
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
    }

    /* ========== Testimonials Carousel - Multiple Cards ========== */
    .testimonials {
        background: var(--white);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .testimonials-carousel {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        padding: 2rem 0;
    }

    .carousel-track {
        display: flex;
        gap: 1.5rem;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    /* Testimonial Card */
    .testimonial-card {
        min-width: calc(33.333% - 1rem);
        /* Show 3 cards on desktop */
        padding: 2rem 1.5rem;
        background: var(--white);
        border: 2px solid var(--light-gray);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .testimonial-card:hover {
        border-color: var(--primary-blue);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 145, 234, 0.15);
    }

    /* Testimonial Header */
    .testimonial-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .client-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .testimonial-header strong {
        display: block;
        color: var(--navy);
        font-size: 0.95rem;
    }

    .client-role {
        font-size: 0.8rem;
        color: #64748b;
    }

    /* Stars */
    .stars {
        color: #FFD700;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    /* ========== Testimonials Carousel ========== */
    .testimonials {
        background: var(--white);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .testimonials-carousel {
        position: relative;
        max-width: 1200px;
        /* Increased width to fit 3 cards */
        margin: 0 auto;
        overflow: hidden;
        padding: 2rem 0;
    }

    .carousel-track {
        display: flex;
        gap: 1.5rem;
        /* Gap between cards */
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    /* Testimonial Card - Desktop (3 Cards) */
    .testimonial-card {
        /* 33.333% width minus the calculated gap share */
        min-width: calc(33.333% - 1rem);
        padding: 2rem 1.5rem;
        background: var(--white);
        border: 2px solid var(--light-gray);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s;
        flex-shrink: 0;
        /* Prevents cards from shrinking */
    }

    .testimonial-card:hover {
        border-color: var(--primary-blue);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 145, 234, 0.15);
    }

    /* Testimonial Header */
    .testimonial-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .client-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .testimonial-header strong {
        display: block;
        color: var(--navy);
        font-size: 1.1rem;
    }

    .client-role {
        font-size: 0.85rem;
        color: #64748b;
    }

    /* Stars */
    .stars {
        color: #FFD700;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }

    /* Testimonial Text */
    .testimonial-card p {
        color: #475569;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        font-style: italic;
    }

    /* Footer & Project Link */
    .testimonial-footer {
        padding-top: 1rem;
        border-top: 1px solid var(--light-gray);
    }

    .view-project {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .view-project:hover {
        color: var(--orange);
        gap: 0.8rem;
    }

    .view-project i {
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .view-project:hover i {
        transform: translateX(3px);
    }

    /* Carousel Controls */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--light-gray);
        color: var(--primary-blue);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .carousel-btn:hover {
        background: var(--primary-blue);
        color: var(--white);
        border-color: var(--primary-blue);
        transform: translateY(-50%) scale(1.1);
    }

    .prev-btn {
        left: -25px;
    }

    .next-btn {
        right: -25px;
    }

    /* Carousel Indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 2rem;
    }

    .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--light-gray);
        border: 2px solid var(--primary-blue);
        cursor: pointer;
        transition: all 0.3s;
    }

    .carousel-indicator.active {
        background: var(--primary-blue);
        transform: scale(1.2);
    }

    /* ========== Responsive Changes ========== */

    /* Tablet & Mobile: Show 2 Cards */
    @media (max-width: 968px) {
        .testimonial-card {
            /* 50% width minus half the gap */
            min-width: calc(50% - 0.75rem);
            padding: 1.5rem 1rem;
        }

        .carousel-track {
            gap: 1.5rem;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }
    }

    /* Small Mobile: Show 1 Card */
    @media (max-width: 480px) {
        .testimonial-card {
            min-width: 100%;
            /* 1 card on very small screens */
        }

        .carousel-btn {
            display: none;
        }

        .testimonials {
            padding: 4rem 1.5rem;
        }

        .testimonial-header {
            flex-direction: column;
            gap: 0.5rem;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            font-size: 1.1rem;
        }

        .testimonial-card p {
            font-size: 1rem;
        }
    }

    /* Auto-scroll pause on hover */
    .testimonials-carousel:hover .carousel-track {
        animation-play-state: paused;
    }

    /* ========== Responsive Breakpoints ========== */


    @media (max-width: 768px) {
        .testimonials {
            padding: 4rem 1.5rem;
        }

        .testimonial-card {
            min-width: calc(50% - 0.75rem);
            /* Show 2 cards on mobile */
            padding: 1.5rem 1rem;
        }

        .testimonial-header {
            flex-direction: column;
            gap: 0.5rem;
        }

        .client-avatar {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
        }

        .testimonial-header strong {
            font-size: 0.85rem;
        }

        .client-role {
            font-size: 0.75rem;
        }

        .stars {
            font-size: 0.85rem;
        }

        .testimonial-card p {
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }

        .carousel-track {
            gap: 1rem;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }
    }

    /* Very small mobile - show 1 card */
    @media (max-width: 480px) {
        .testimonial-card {
            min-width: 100%;
            /* Show 1 card on very small screens */
        }

        .carousel-btn {
            display: none;
            /* Hide buttons on very small screens */
        }
    }

    /* Auto-scroll pause on hover */
    .testimonials-carousel:hover .carousel-track {
        animation-play-state: paused;
    }

    /* Pricing Section - Compact Height */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Slightly smaller min-width */
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .pricing-card {
        background: var(--white);
        border: 2px solid var(--light-gray);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        /* Reduced from 3rem 2rem */
        text-align: center;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }

    /* Shine effect */
    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 145, 234, 0.1), transparent);
        transition: left 0.7s;
    }

    .pricing-card:hover::before {
        left: 100%;
    }

    .pricing-card.featured {
        border-color: var(--primary-blue);
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 145, 234, 0.25);
        z-index: 2;
        /* Ensure featured stays on top */
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        /* Reduced lift slightly */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    /* Badge */
    .badge {
        position: absolute;
        top: 15px;
        right: -30px;
        background: var(--orange);
        color: var(--white);
        padding: 0.4rem 2.5rem;
        transform: rotate(45deg);
        font-size: 0.75rem;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

    /* Titles */
    .pricing-card h3 {
        font-size: 1.5rem;
        /* Reduced from 1.8rem */
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    /* Price */
    .price {
        font-size: 2.8rem;
        /* Reduced from 3.5rem */
        color: var(--primary-blue);
        font-weight: bold;
        margin-bottom: 0.2rem;
        line-height: 1.1;
        /* Tighter line height */
        transition: transform 0.3s;
    }

    .pricing-card:hover .price {
        transform: scale(1.05);
    }

    .price span {
        font-size: 0.9rem;
        color: #666;
        display: block;
        margin-top: 0.2rem;
    }

    /* List Items */
    .pricing-card ul {
        list-style: none;
        margin: 1.5rem 0;
        /* Reduced from 2.5rem */
        text-align: left;
        padding: 0;
    }

    .pricing-card ul li {
        padding: 0.6rem 0;
        /* Reduced from 1rem */
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        transition: all 0.3s;
        font-size: 0.95rem;
        /* Slightly smaller text for list */
    }

    .pricing-card ul li:last-child {
        border-bottom: none;
        /* Remove line from last item */
    }

    .pricing-card ul li:hover {
        padding-left: 8px;
        color: var(--primary-blue);
    }

    .pricing-card ul li i {
        color: var(--success);
        font-size: 1rem;
        /* Reduced icon size */
    }

    /* Button area spacing */
    .btn-plan {
        margin-top: 1rem;
        /* Reduced from 1.5rem */
    }

    /* Pricing Grid - Optimized for 4 columns */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Plan Buttons - Highly Visible */
    .btn-plan {
        width: 100%;
        padding: 1rem 1.5rem;
        border: 2px solid var(--primary-blue);
        background: transparent;
        color: var(--primary-blue);
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
        appearance: none;
        -webkit-appearance: none;
    }

    .btn-plan:hover {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 145, 234, 0.35);
    }

    /* Featured Plan Button */
    .btn-popular {
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
        border: none;
        box-shadow: 0 8px 25px rgba(0, 145, 234, 0.4);
    }

    .btn-popular:hover {
        background: linear-gradient(135deg, var(--orange), var(--primary-blue));
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
        transform: translateY(-5px) scale(1.02);
    }

    /* Mobile adjustment */
    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }
    }

    /* FAQ Section */
    .faq {
        background: var(--light-gray);
    }

    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--white);
        margin-bottom: 1.5rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
    }

    .faq-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        padding: 1.8rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--navy);
        font-size: 1.1rem;
        transition: all 0.3s;
    }

    .faq-question:hover {
        background: rgba(0, 145, 234, 0.05);
        padding-left: 2rem;
    }

    .faq-question i {
        transition: transform 0.4s;
        color: var(--primary-blue);
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 0 1.8rem 1.8rem;
        display: none;
        line-height: 1.8;
        color: #666;
    }

    .faq-item.active .faq-answer {
        display: block;
        animation: slideDown 0.4s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    /* Contact Section */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }

    .contact-info h3 {
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        color: #555;
    }

    .contact-details {
        margin-top: 2.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 2rem;
        padding: 1.2rem;
        background: var(--light-gray);
        border-radius: 12px;
        transition: all 0.3s;
    }

    .contact-item:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--white));
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary-blue);
        width: 55px;
        height: 55px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .contact-item:hover i {
        transform: rotate(360deg);
        background: var(--primary-blue);
        color: var(--white);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        text-decoration: none !important;
    }

    .social-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--orange), var(--primary-blue));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .social-links a:hover::before {
        opacity: 1;
    }

    .social-links a:hover {
        transform: translateY(-8px) rotate(360deg);
        box-shadow: 0 10px 25px rgba(0, 145, 234, 0.4);
    }

    .social-links a i {
        position: relative;
        z-index: 1;
    }

    .form-note {
        text-align: center;
        color: #666;
        margin-top: 1rem;
        font-size: 0.85rem;
    }

    .form-note i {
        color: var(--primary-blue);
        margin-right: 0.3rem;
    }

    /* Button loading state */
    .submit-btn.loading {
        opacity: 0.7;
        cursor: wait;
        pointer-events: none;
    }

    .submit-btn.loading i {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Clickable Phone Numbers */
    .contact-info p a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-info p a:hover {
        color: #ff6600;
        text-decoration: none;
    }

    /* Mobile - Make phone numbers more prominent */
    @media (max-width: 768px) {
        .contact-info p a {
            font-size: 1.1rem;
            font-weight: 600;
        }
    }

    /* Checkbox Styling */
    .checkbox-group {
        margin-bottom: 20px;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        cursor: pointer;
        font-size: 0.95rem;
        line-height: 1.4;
        color: #333;
    }

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        cursor: pointer;
        accent-color: #ff6600;
        /* Matches your brand */
        flex-shrink: 0;
    }

    .checkbox-label a {
        color: #ff6600;
        text-decoration: underline;
        font-weight: 500;
    }

    .checkbox-label a:hover {
        color: #e55b00;
    }

    /* Validation States */
    .form-group input:invalid:not(:placeholder-shown),
    .form-group textarea:invalid:not(:placeholder-shown) {
        border-color: #dc3545;
    }

    .form-group input:valid:not(:placeholder-shown),
    .form-group textarea:valid:not(:placeholder-shown) {
        border-color: #28a745;
    }

    .contact-form {
        background: var(--white);
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.8rem;
        position: relative;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--navy);
        font-weight: 600;
        transition: color 0.3s;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem 1.2rem;
        border: 2px solid #e1e8ed;
        border-radius: 10px;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 4px rgba(0, 145, 234, 0.1);
    }

    .form-group input:focus+label,
    .form-group textarea:focus+label {
        color: var(--primary-blue);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }

    .submit-btn {
        width: 100%;
        padding: 1.3rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .submit-btn:hover::before {
        width: 400px;
        height: 400px;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 145, 234, 0.4);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
    }

    .whatsapp-btn {
        width: 65px;
        height: 65px;
        background: var(--whatsapp);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        cursor: pointer;
        transition: all 0.3s;
        animation: whatsappPulse 2s infinite;
        text-decoration: none;
    }

    @keyframes whatsappPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .whatsapp-btn:hover {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        animation: none;
    }

    .whatsapp-tooltip {
        position: absolute;
        right: 75px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--white);
        padding: 0.8rem 1.2rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        font-weight: 600;
        color: var(--navy);
    }

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-left-color: var(--white);
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        right: 80px;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-blue), var(--orange));
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 998;
        box-shadow: 0 5px 20px rgba(0, 145, 234, 0.3);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 145, 234, 0.5);
    }

    /* Footer */
    footer {
        background: var(--navy);
        color: var(--white);
        padding: 4rem 2rem 1rem;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section h3 {
        margin-bottom: 1.5rem;
        color: var(--light-blue);
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
    }

    .footer-section p {
        line-height: 1.8;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.9rem;
    }

    .footer-section a {
        color: var(--white);
        text-decoration: none;
        opacity: 0.85;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section a:hover {
        opacity: 1;
        color: var(--light-blue);
        padding-left: 8px;
    }

    .footer-section a::before {
        content: '→';
        opacity: 0;
        transition: opacity 0.3s;
    }

    .footer-section a:hover::before {
        opacity: 1;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.85;
    }

    .footer-bottom a {
        color: var(--light-blue);
        text-decoration: none;
    }

    /* Chat Widget */
    .chat-widget {
        position: fixed;
        bottom: 110px;
        right: 30px;
        width: 350px;
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        z-index: 997;
        overflow: hidden;
        transform: scale(0);
        transform-origin: bottom right;
        transition: transform 0.3s;
    }

    .chat-widget.active {
        transform: scale(1);
    }

    .chat-header {
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
        padding: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chat-header h4 {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .chat-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .chat-close:hover {
        transform: rotate(90deg);
    }

    .chat-body {
        padding: 1.5rem;
        max-height: 350px;
        overflow-y: auto;
    }

    .chat-message {
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 12px;
        background: var(--light-gray);
    }

    .chat-message.bot {
        background: var(--light-blue);
    }

    .chat-input {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--light-gray);
        display: flex;
        gap: 0.75rem;
    }

    .chat-input input {
        flex: 1;
        padding: 0.8rem 1.2rem;
        border: 2px solid var(--light-gray);
        border-radius: 25px;
        outline: none;
        transition: border-color 0.3s;
    }

    .chat-input input:focus {
        border-color: var(--primary-blue);
    }

    .chat-send {
        width: 45px;
        height: 45px;
        background: var(--primary-blue);
        color: var(--white);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

    .chat-send:hover {
        background: var(--orange);
        transform: scale(1.1);
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }

        .mobile-menu {
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .stats {
            grid-template-columns: 1fr;
        }

        .portfolio-grid {
            grid-template-columns: 1fr;
        }

        .pricing-card.featured {
            transform: scale(1);
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        section {
            padding: 4rem 1.5rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
        }

        .chat-widget {
            width: 90%;
            right: 5%;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .services-grid,
        .features-grid {
            grid-template-columns: 1fr;
        }

        .whatsapp-float {
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-btn {
            width: 55px;
            height: 55px;
            font-size: 1.8rem;
        }
    }

    /* Skills Bar Animation */
    .skills-container {
        margin-top: 2rem;
    }

    .skill-item {
        margin-bottom: 1.5rem;
    }

    .skill-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }

    .skill-name {
        font-weight: 600;
        color: var(--navy);
    }

    .skill-bar {
        height: 10px;
        background: var(--light-gray);
        border-radius: 10px;
        overflow: hidden;
    }

    .skill-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-blue), var(--orange));
        border-radius: 10px;
        width: 0;
        transition: width 1.5s ease;
        position: relative;
    }

    .skill-progress::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 20px;
        background: rgba(255, 255, 255, 0.3);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(20px);
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            transform: translateX(-20px);
            opacity: 0;
        }
    }

    /* ========== Embedded WhatsApp Chat ========== */
    .wa-embedded-chat {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Toggle Button */
    .wa-chat-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.95rem;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .wa-chat-toggle:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    }

    .wa-chat-toggle i {
        font-size: 1.3rem;
    }

    .wa-chat-label {
        white-space: nowrap;
    }

    .wa-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 12px;
        height: 12px;
        background: #ff3b30;
        border-radius: 50%;
        animation: waPulse 2s infinite;
    }

    @keyframes waPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
        }

        50% {
            box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
        }
    }

    /* Chat Container */
    .wa-chat-container {
        position: absolute;
        bottom: 65px;
        right: 0;
        width: 350px;
        max-width: 92vw;
        height: 500px;
        max-height: 80vh;
        background: #ECE5DD;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: scale(0.94) translateY(20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        transform-origin: bottom right;
    }

    .wa-chat-container.active {
        transform: scale(1) translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Chat Header */
    .wa-chat-head {
        padding: 12px 16px;
        background: linear-gradient(135deg, #075E54, #128C7E);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }

    .wa-chat-head-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .wa-chat-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .wa-chat-head-info h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .wa-online-status {
        font-size: 0.75rem;
        opacity: 0.95;
    }

    .wa-chat-close {
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .wa-chat-close:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    /* Chat Body */
    .wa-chat-body {
        flex: 1;
        padding: 14px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .wa-msg {
        display: flex;
        margin: 4px 0;
    }

    .wa-msg-received {
        justify-content: flex-start;
    }

    .wa-msg-sent {
        justify-content: flex-end;
    }

    .wa-msg-bubble {
        max-width: 85%;
        padding: 10px 14px;
        border-radius: 18px;
        font-size: 0.92rem;
        line-height: 1.4;
        position: relative;
        animation: waSlideIn 0.2s ease;
    }

    @keyframes waSlideIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wa-msg-received .wa-msg-bubble {
        background: white;
        border-radius: 18px 18px 18px 6px;
        color: #111;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    }

    .wa-msg-sent .wa-msg-bubble {
        background: #DCF8C6;
        border-radius: 18px 18px 6px 18px;
        color: #111;
    }

    .wa-msg-time {
        display: block;
        font-size: 0.7rem;
        color: #999;
        text-align: right;
        margin-top: 4px;
    }

    /* Quick Options */
    .wa-quick-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 4px 2px 0;
    }

    .wa-quick-btn {
        padding: 8px 14px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .wa-quick-btn:hover {
        background: #25D366;
        border-color: #25D366;
        color: white;
        transform: translateY(-2px);
    }

    /* Chat Footer */
    .wa-chat-footer {
        padding: 12px 14px 14px;
        background: #f0f0f0;
        border-top: 1px solid #ddd;
        flex-shrink: 0;
    }

    .wa-input-box {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .wa-input-box input {
        flex: 1;
        padding: 12px 16px;
        border: none;
        border-radius: 24px;
        background: white;
        font-size: 0.95rem;
        outline: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.2s;
    }

    .wa-input-box input:focus {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .wa-send {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border: none;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .wa-send:hover {
        transform: scale(1.08);
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    }

    .wa-send:active {
        transform: scale(0.95);
    }

    .wa-note {
        display: block;
        margin-top: 8px;
        font-size: 0.75rem;
        color: #777;
        text-align: center;
    }

    /* Scrollbar */
    .wa-chat-body::-webkit-scrollbar {
        width: 5px;
    }

    .wa-chat-body::-webkit-scrollbar-track {
        background: transparent;
    }

    .wa-chat-body::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 480px) {
        .wa-embedded-chat {
            bottom: 12px;
            right: 12px;
        }

        .wa-chat-toggle {
            padding: 10px 16px;
            font-size: 0.9rem;
        }

        .wa-chat-label {
            display: none;
        }

        .wa-chat-container {
            width: 92vw;
            height: 70vh;
            bottom: 58px;
            right: -4px;
        }

        .wa-msg-bubble {
            max-width: 90%;
            font-size: 0.9rem;
        }
    }

    /* ========== What We Build Section ========== */
    .build-showcase {
        background: var(--white);
        padding: 6rem 2rem;
        position: relative;
    }

    .build-showcase::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(0, 145, 234, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .build-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto 4rem;
        position: relative;
        z-index: 1;
    }

    /* Build Card Base */
    .build-card {
        background: var(--white);
        border: 2px solid var(--light-gray);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .build-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 50px rgba(0, 145, 234, 0.15);
    }

    /* Featured Card */
    .build-card.featured {
        border-color: var(--primary-blue);
        background: linear-gradient(135deg, rgba(0, 145, 234, 0.03), var(--white));
    }

    .build-card.featured:hover {
        box-shadow: 0 25px 60px rgba(0, 145, 234, 0.25);
    }

    /* Badge */
    .build-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: var(--orange);
        color: var(--white);
        padding: 0.4rem 3rem;
        transform: rotate(45deg);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    /* Icon */
    .build-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--light-blue), var(--white));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .build-card:hover .build-icon {
        transform: rotate(-8deg) scale(1.1);
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
    }

    /* Typography */
    .build-card h3 {
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .build-card p {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    /* Features List */
    .build-features {
        list-style: none;
        margin: 0 0 2rem;
        padding: 0;
        flex: 1;
    }

    .build-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: #475569;
        font-size: 0.9rem;
        transition: all 0.2s;
    }

    .build-features li i {
        color: var(--success);
        font-size: 0.9rem;
        width: 16px;
    }

    .build-card:hover .build-features li {
        padding-left: 8px;
        color: var(--primary-blue);
    }

    /* CTA Button */
    .build-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 1.8rem;
        background: transparent;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s;
        justify-content: center;
        margin-top: auto;
    }

    .build-cta:hover {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateX(5px);
    }

    .build-cta i {
        transition: transform 0.3s;
    }

    .build-cta:hover i {
        transform: translateX(4px);
    }

    /* Bottom CTA */
    .build-cta-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--light-gray);
    }

    .build-cta-bottom p {
        margin-bottom: 1.5rem;
        color: #475569;
        font-size: 1.1rem;
    }

    .build-cta-bottom strong {
        color: var(--navy);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .build-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .build-showcase {
            padding: 4rem 1.5rem;
        }

        .build-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .build-card {
            padding: 2rem 1.5rem;
        }

        .build-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .build-card h3 {
            font-size: 1.25rem;
        }

        .build-cta-bottom p {
            font-size: 1rem;
        }
    }

    /* Hover Animation Enhancements */
    @keyframes floatUp {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .build-card:hover .build-icon {
        animation: floatUp 2s ease-in-out infinite;
    }