/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(to right, #FFC100, #FF7400, #FF0000);
    color: white;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    transform: translateY(-3px);
    border-bottom-color: white;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ---------- RESPONSIVE NAVBAR ---------- */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 220px;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, #FF7400, #FF0000);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.8rem;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background-color: #f4f7f6;
}

        .hero h1 {
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subtitle {
            font-size: 28px;
            color: #666;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .hero .description {
            font-size: 18px;
            color: #777;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .cta-button {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        a{
            color: white;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-card p {
            font-size: 16px;
            color: #777;
            line-height: 1.6;
        }

        .cta-section {
            max-width: 900px;
            margin: 80px auto 60px;
            padding: 0 20px;
        }

        .cta-box {
            background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
        }

        .cta-box h2 {
            font-size: 42px;
            color: white;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-box p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
        }

        .shop-now-button {
            background: white;
            color: #667eea;
            border: none;
            padding: 18px 45px;
            font-size: 20px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .shop-now-button:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: #f4f7f6;
        }
        .subtitle2 {
        font-size: 28px;
            color: #666;
            margin-bottom: 25px;
            font-weight: 400;
            margin-bottom: 4rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #667eea;
        }
.container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 20px;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 450px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .card-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
        }

        .card-content {
            padding: 30px;
        }

        .card-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .card-role {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .role-developer {
            color: #10b981;
        }

        .role-business {
            color: #f97316;
        }

        .card-description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .team-section {
                gap: 30px;
            }
            
            .team-card {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                flex-direction: column;
                gap: 30px;
            }

            .team-card {
                max-width: 100%;
            }

            .card-image {
                height: 350px;
            }

            .card-content {
                padding: 25px;
            }

            .card-title {
                font-size: 24px;
            }

            .card-role {
                font-size: 16px;
            }

            .card-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .card-image {
                height: 300px;
            }

            .card-content {
                padding: 20px;
            }

            .card-title {
                font-size: 22px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .header p {
            font-size: 18px;
            color: #6c757d;
            font-weight: 400;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 50px 30px;
            text-align: center;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .card:nth-child(1) .icon-wrapper {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        .card:nth-child(2) .icon-wrapper {
            background: linear-gradient(135deg, #ff8c42, #ff6b35);
        }

        .card:nth-child(3) .icon-wrapper {
            background: linear-gradient(135deg, #95b840, #6b8e23);
        }

        .icon-wrapper svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .card p {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .header p {
            font-size: 18px;
            color: #6c757d;
            font-weight: 400;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid transparent;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .card:hover::before {
            opacity: 0.15;
        }

        .card:nth-child(1) {
            background: #e8f5e9;
            border-color: #e8f5e9;
        }

        .card:nth-child(1)::before {
            background: #2ecc71;
        }

        .card:nth-child(2) {
            background: #fff3e0;
            border-color: #fff3e0;
        }

        .card:nth-child(2)::before {
            background: #ff8c42;
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .card:hover .icon-wrapper {
            transform: scale(1.15) rotate(-5deg);
        }

        .card:nth-child(1) .icon-wrapper {
            background: #2ecc71;
        }

        .card:nth-child(2) .icon-wrapper {
            background: #ff8c42;
        }

        .icon-wrapper svg {
            width: 30px;
            height: 30px;
            stroke: white;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .card h3 {
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .card p {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 968px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }

            .card {
                padding: 40px 30px;
            }
        }