﻿:root {
    /* ============ Color Variables ============ */
    /* Primary Colors */
    --primary-color: #00d4ff;
    --primary-light: #33e0ff;
    --primary-dark: #00a3cc;
    /* Secondary Colors */
    --secondary-color: #ff6b35;
    --accent-color: #7c3aed;
    /* Status Colors */
    --success-color: #06d6a0;
    --warning-color: #ffd23f;
    --danger-color: #ff4757;
    /* Base Colors */
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --white: #ffffff;
    /* ============ Neutral Colors ============ */
    --dark-900: #0f0f23;
    --dark-800: #1a1a2e;
    --dark-700: #16213e;
    --dark-600: #0f3460;
    --dark-500: #533483;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    /* ============ Typography ============ */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    /* ============ Spacing ============ */
    --section-padding: 6rem 0;
    --card-padding: .5rem 0;
    --container-padding: 0 1.5rem;
    /* ============ Border Radius ============ */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    /* ============ Shadows ============ */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    /* ============ Gradients ============ */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-700) 100%);
    --gradient-enterprise: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);

    --gradient-1: linear-gradient(135deg, #0ea5e9, #06b6d4);
    --gradient-2: linear-gradient(135deg, #8b5cf6, #d946ef);
}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8fafc;
}

.navbar {
    position: relative;
    background-color: rgba(15, 15, 35, 0.95);
    
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}



.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    padding: 0.8rem 1rem;
    margin: 0 0.25rem;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

.dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-top: 0.75rem;
    background-color: rgba(15, 15, 35, 0.97);
    color:#f5f5f5;
}

.mega-dropdown-menu {
    margin-top: -10px !important; /* Remove default margin */
    top: 100% !important; /* Stick directly below navbar */

    position: static;
}

.mega-dropdown {
    position: static;
}

.mega-dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 2rem;
}

.dropdown-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dropdown-item {
    padding: 0.5rem 0;
    color: var(--gray-500);
}

    .dropdown-item:hover {
        background-color: var(--dark-500);
        color: var(--primary-color);
    }

.tech-icon {
    width: 40px;
    height: 40px;
   
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
}

    .btn-primary:hover {
        background-color: #1d4ed8;
        border-color: #1d4ed8;
    }

.hero-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0;
    border-radius: 0 0 1rem 1rem;
}

/* FIX 3: Keep dropdown open when hovering over it */
.mega-dropdown:hover .dropdown-menu {
    display: block !important;
}

/* FIX 4: Smooth transitions */
.dropdown-menu {
    transition: all 2.3s ease;
}



.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}




.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--white);
    }



.whatsapp-btn {
    background: var(--success-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

    .whatsapp-btn:hover {
        background: #059669;
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/*Footer*/
.footer {
    background: var(--dark-800);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--primary-color);
        }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-3px);
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.contact-item a,
.contact-item span {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-item a:hover {
        color: var(--primary-color);
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .footer-logo img {
        width: 30px;
        height: 30px;
    }

.footer-logo-text {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
/*EndFooter*/




/*Hero*/


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-secondary:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-3px);
    }


/*EndHero*/






/*EnterPrice and Tech*/
/* Enterprise Features Section */
.enterprise-features {
    padding: var(--section-padding);
    background: var(--gradient-enterprise);
    position: relative;
    overflow: hidden;
}

    .enterprise-features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 15, 35, 0.8);
    }

    .enterprise-features .container {
        position: relative;
        z-index: 2;
    }

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: var(--gradient-primary);
        border-radius: var(--radius-xl);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: transparent;
        box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.3);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Tech Stack Section */
.tech-stack {
    
   
}
.tech-stack2 {
    padding: var(--card-padding);
    background: var(--dark-900);
}


.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

    .tech-item:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 212, 255, 0.3);
        background: rgba(255, 255, 255, 0.05);
    }

    .tech-item i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        display: block;
    }

    .tech-item h4 {
        color: var(--white);
        font-weight: 600;
        font-size: 1.1rem;
    }
/*End*/


.filter-section {
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 0.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-size: 0.9rem;
}

    .filter-btn:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: var(--primary-color);
        color: var(--primary-light);
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: var(--gradient-primary);
        border-color: var(--primary-color);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }

/* Phone Mockup Style Card */
.phone-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
}

.phone-mockup {
    width: 220px;
    height: 400px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 25px;
    padding: 20px 10px;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient-primary);
    position: relative;
}

    .phone-screen img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

/* Desktop App Card */
.desktop-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(15, 15, 35, 0.9) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    position: relative;
}

.desktop-mockup {
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 8px 8px 0 0;
    padding: 8px;
    margin: 1.5rem 1.5rem 0;
}

.desktop-titlebar {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 2px;
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff4757;
}

.yellow {
    background: #ffd23f;
}

.green {
    background: #06d6a0;
}

.desktop-screen {
    height: 310px;
    background: var(--gradient-enterprise);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

    .desktop-screen img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

/* Web App Card */
.web-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 15, 35, 0.9) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
}

.browser-mockup {
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 8px;
    margin: 1.5rem;
    overflow: hidden;
}

.browser-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
}

.browser-controls {
    display: flex;
    gap: 6px;
}

.address-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.browser-content {
    height: 310px;
    background: var(--gradient-secondary);
    overflow: hidden;
}

    .browser-content img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

/* API Card - Horizontal Layout */
.api-card {
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.1) 0%, rgba(15, 15, 35, 0.9) 100%);
    border: 1px solid rgba(255, 210, 63, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
}

.api-visual {
    background: var(--gradient-dark);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.api-diagram {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--warning-color);
}

.api-endpoint {
    background: rgba(255, 210, 63, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--warning-color);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.api-arrow {
    font-size: 2rem;
    color: var(--warning-color);
}

/* Shared Card Content Styles */
.card-content {
    padding: 1.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.badge-dotnet {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.badge-reactnative {
    background: rgba(6, 214, 160, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.badge-web {
    background: rgba(255, 107, 53, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.badge-api {
    background: rgba(255, 210, 63, 0.2);
    color: var(--warning-color);
    border: 1px solid var(--warning-color);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.project-description {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-stack {
    margin-bottom: 1.5rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0.25rem 0.25rem 0.25rem 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-family: var(--font-mono);
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
        color: var(--white);
    }

.btn-outline {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        color: var(--white);
    }

/* Hover Effects for Different Card Types */
.phone-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(6, 214, 160, 0.2);
    border-color: rgba(6, 214, 160, 0.3);
}

    .phone-card:hover .phone-mockup {
        transform: translateY(-5px) rotateY(5deg);
    }

.desktop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}

.web-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.api-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 210, 63, 0.2);
    border-color: rgba(255, 210, 63, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .phone-mockup {
        width: 160px;
        height: 300px;
        padding: 15px 8px;
    }

    .desktop-mockup, .browser-mockup {
        margin: 1rem;
    }

    .desktop-screen, .browser-content {
        height: 150px;
    }

    .api-diagram {
        flex-direction: column;
        gap: 1rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .action-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .phone-mockup {
        width: 130px;
        height: 240px;
        padding: 12px 6px;
    }

    .card-content {
        padding: 1.25rem;
    }
}

.carousel-inner {
    height: 100%;
}

.carousel {
    height: 100%;
}

.carousel-item {
    height: 100%;
}



.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

    .floating-icon:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-icon:nth-child(2) {
        top: 30%;
        right: 15%;
        animation-delay: 2s;
    }

    .floating-icon:nth-child(3) {
        bottom: 25%;
        left: 20%;
        animation-delay: 4s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.product-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

    .product-badge::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        animation: shimmer 3s linear infinite;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}


.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}




.tech-stack {
    padding: 8px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}



.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.action-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .action-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
        z-index: -1;
    }

    .action-btn:hover::before {
        left: 100%;
    }




.hero-section2 {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    position: relative;
}

    .hero-section2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23334155' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
.bgd1 {
    background-color: #1a1a2e;
    color:#f5f5f5;
}


.dropdown-item :hover {
    padding: 0.7rem 0;
    background-color: var(--gray-200);
}