/* ===== VARIABLES ===== */
        :root {
            --primary: #8B5CEB;
            --primary-dark: #7B4CD9;
            --secondary: #ffdb00;
            --dark: #121212;
            --dark-light: #1E1E2E;
            --text: #FFFFFF;
            --text-gray: #CCCCCC;
            --accent: #00D8FF;
        }

        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        p{
            color:#fff !important;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* ===== LAYOUT COMPONENTS ===== */
        .container {
            width: 100%;
            padding: 0 10%;
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--text-gray);
            margin-bottom: 60px;f\
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== HEADER ===== */
        .header-wrapper {
           position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .topbar {
            background:  linear-gradient(135deg, #360259, #5C148C, #360259, #7C17BF);
            color: #fff;
        }

        span{
            color: #8315b6;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
            gap: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 7%;
        }

        .logo img {
            height: 210px;
            width: auto;
            display: block;
        }

        .logo .brand-name {
            font-weight: 700;
            letter-spacing: .2px;
        }

        .logo h2 {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-icon {
            color: var(--primary);
            font-size: 24px;
        }

        .contact {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .phone {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            font-weight: 600;
        }

        .phone svg {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
        }

        .cta-content{
            width: 100%;
        }

        .ctaa {
            border: 2px solid #ffb02e;
            color: #fff;
            background: transparent;
            padding: 10px 14px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
        }

        .ctaa:hover {
            background: #ffb02e;
            color: #111;
        }

        .navwrap {
            border-bottom: 1px solid #eee;
            background: #fff;

        }

        nav {
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0 10%;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #0b1491;
            border-color: #0b1491;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .call-btn {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            padding: 2px 15px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 235, 0.3);
        }

        .call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 235, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }
        /* Button Services Section */
.button-services-section {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-header h2 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.services-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: center;
}

/* Services Interests Container */
.services-interests-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Interest Buttons */
.interest-btn {
    padding: 12px 24px;
    background: rgba(18, 18, 18, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    outline: none;
}

.interest-btn:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.interest-btn.selected {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}
/* Full Width Form Container */
.full-width-form-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.full-width-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Section - Full Width */
.contact-section-full {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.form-header h2 {
    color: var(--text);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
}

.input-group-full {
    position: relative;
    width: 100%;
}

.input-group-full i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
}

.input-group-full input,
.input-group-full textarea {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.6);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group-full textarea {
    min-height: 140px;
    resize: vertical;
    padding: 18px;
}

.input-group-full input:focus,
.input-group-full textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 235, 0.2);
}

/* Paragraph Services Section */
.paragraph-services-section {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.services-header-full h2 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.services-subtitle-full {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-align: center;
}

/* Paragraph Style Services */
.paragraph-services-container {
    width: 100%;
    max-width: 100%;
}

.services-paragraph {
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}

.service-tag-paragraph {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 6px;
    background: rgba(18, 18, 18, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.service-tag-paragraph:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.service-tag-paragraph.selected {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Selection Summary - Full Width */
.selection-summary-full {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.selected-info-full {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.selected-count {
    background: #3b82f6;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.selected-text {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

/* Submit Section - Full Width */
.submit-section-full {
    text-align: center;
    width: 100%;
}

.submit-btn-full {
    width: 100%;
    max-width: 400px;
    padding: 20px 40px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--text);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 235, 0.4);
}

.submit-btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 235, 0.6);
}

/* Animation for selection */
@keyframes paragraphSelect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.service-tag-paragraph.selected {
    animation: paragraphSelect 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-paragraph {
        font-size: 1.1rem;
    }
    
    .service-tag-paragraph {
        font-size: 1rem;
        padding: 6px 14px;
    }
}

@media (max-width: 768px) {
    .contact-section-full,
    .paragraph-services-section {
        padding: 30px 25px;
    }
    
    .services-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .service-tag-paragraph {
        font-size: 0.95rem;
        padding: 5px 12px;
        margin: 3px 4px;
    }
    
    .form-header h2,
    .services-header-full h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-section-full,
    .paragraph-services-section {
        padding: 25px 20px;
    }
    
    .services-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-tag-paragraph {
        font-size: 0.9rem;
        padding: 4px 10px;
        margin: 2px 3px;
    }
    
    .selected-info-full {
        padding: 10px 20px;
    }
}
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: var(--dark-light);
            z-index: 999;
            padding: 100px 40px 40px;
            transition: right 0.4s ease;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav ul li {
            margin-bottom: 20px;
        }

        .mobile-nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            transition: color 0.3s;
        }

        .mobile-nav ul li a:hover {
            color: var(--primary);
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 24px;
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        header.scrolled {
            padding: 15px 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* ===== HERO SECTION ===== */
        .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 100px 10%;
    position: relative;
    overflow: hidden;
    font-family: mulish;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}


        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.3s;
        }

        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 550px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.6s;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.9s;
        }
          .btn-primarys {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));

            padding: 15px 35px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(139, 92, 235, 0.4);
        }

        .btn-primarys:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 92, 235, 0.5);
        }


        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            font-size: 1.75rem;
            padding: 15px 35px;
            border-radius: 15px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(139, 92, 235, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 92, 235, 0.5);
        }

        .btn-secondary {
            background: transparent;
            padding: 15px 35px;
            border: 2px solid var(--primary);
            font-size: 1.75rem;
            border-radius: 28px;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(139, 92, 235, 0.1);
            transform: translateY(-3px);
        }
.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1.2s;
    justify-self: center;
}


        /* ===== STATS SECTION ===== */
        .stats {
            display: flex;
            justify-content: space-around;
            padding: 80px 10%;
            background: var(--dark-light);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--text-gray);
            font-size: 1rem;
        }

        /* ===== SERVICES SECTION ===== */
        .services-preview {
            padding: 100px 10%;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--dark-light);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);

        }

        .service-card:nth-child(1) { animation: fadeUp 0.8s forwards 0.2s; }
        .service-card:nth-child(2) { animation: fadeUp 0.8s forwards 0.4s; }
        .service-card:nth-child(3) { animation: fadeUp 0.8s forwards 0.6s; }
        .service-card:nth-child(4) { animation: fadeUp 0.8s forwards 0.8s; }
        .service-card:nth-child(5) { animation: fadeUp 0.8s forwards 1s; }
        .service-card:nth-child(6) { animation: fadeUp 0.8s forwards 1.2s; }
        .service-card:nth-child(7) { animation: fadeUp 0.8s forwards 1.4s; }
        .service-card:nth-child(8) { animation: fadeUp 0.8s forwards 1.6s; }
        .service-card:nth-child(9) { animation: fadeUp 0.8s forwards 1.8s; }
        .service-card:nth-child(10) { animation: fadeUp 0.8s forwards 1.8s; }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            opacity: 0.1;
            transition: height 0.5s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card:hover:before {
            height: 100%;
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: rgb(131, 21, 182);
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* ===== PORTFOLIO SECTION ===== */
        .portfolio {
            padding: 100px 10%;
            background: var(--dark);
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .filter-btn {
            background: transparent;
            border: none;
            color: var(--text-gray);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 250px;
            cursor: pointer;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

    .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .portfolio-category {
            color: var(--primary);
            font-size: 0.9rem;
        }
        /* ===== TESTIMONIALS SECTION ===== */

.testimonials{
    margin-top: 120px;
}
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;

            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            padding: 30px 0;
        }

        .testimonial-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            gap: 25px;
        }

        .testimonial-slide {
            flex: 0 0 calc(33.333% - 25px);
            background: var(--dark-light);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(131, 21, 182, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

        }

        .testimonial-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #8315b6, #5c0d8a);
        }

        .testimonial-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(131, 21, 182, 0.2);
        }

        .quote-icon {
            color: #8315b6;
            font-size: 24px;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #fff;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1.2rem;
            font-weight: 600;
            color: #7B4CD9;
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #fff;
        }

        .testimonial-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #8315b6;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(131, 21, 182, 0.3);
        }

        .testimonial-arrow:hover {
            background: #5c0d8a;
            transform: translateY(-50%) scale(1.1);
        }

        .testimonial-arrow.prev {
            left: -25px;
        }

        .testimonial-arrow.next {
            right: -25px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d9bae8;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: #8315b6;
            transform: scale(1.3);
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .testimonial-slide {
                flex: 0 0 calc(50% - 25px);
            }
        }

        @media (max-width: 768px) {
            .testimonial-slide {
                flex: 0 0 100%;
            }

            .testimonial-arrow {
                width: 40px;
                height: 40px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* ===== CLIENTS SECTION ===== */
        .clients-section{
            margin-top: 120px;
        }

.company-location h2 span, .clients-section h2 span {
            color: var(--primary);
        }
         .company-location h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
 .company-location {
            padding: 80px 20px;
            background: var(--dark-light);
            text-align: center;
        }


        .clients-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;

            font-weight: 700;
        }

        .clients-section h2 span {
            color: #8315b6;
            position: relative;
        }

        .clients-section h2 span::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #8315b6, #5c0d8a);
            border-radius: 3px;
        }

        .clients-section p {
            text-align: center;
            font-size: 1.1rem;

            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .brand-showcase {
            position: relative;
            overflow: hidden;
            padding: 30px 0;
        }

        .brand-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: calc(250px * 12); /* 12 logos */
        }

        .brand-track:hover {
            animation-play-state: paused;
        }

          .brand-logo {
            flex: 0 0 250px;
            
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;

            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 20px;
            margin: 0 15px;
        }

        .brand-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(131, 21, 182, 0.15);
        }

        .brand-logo img {
            width: 220px;
            height: 270px;
            object-fit: contain;

            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .brand-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

      
        .brand-showcase::before,
        .brand-showcase::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }


        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 6)); /* Move by half the logos */
            }
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .brand-track {
                animation: scroll 25s linear infinite;
            }

            .brand-logo {
                flex: 0 0 200px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 6));
                }
            }
        }

        @media (max-width: 768px) {
            .clients-section {
                padding: 30px 20px;
            }

            .clients-section h2 {
                font-size: 2rem;
            }

            .brand-track {
                animation: scroll 20s linear infinite;
            }

            .brand-logo {
                flex: 0 0 180px;
                height: 130px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-180px * 6));
                }
            }
        }

        @media (max-width: 480px) {
            .brand-track {
                animation: scroll 18s linear infinite;
            }

            .brand-logo {
                flex: 0 0 150px;
                height: 110px;
                margin: 0 10px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-150px * 6));
                }
            }
        }
        /* ===== CTA SECTION ===== */

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            padding: 70px 10% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }



        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-col p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dark-light);
            color: var(--text);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* ===== UTILITY CLASSES ===== */
        .responsive-img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .shine-effect {
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .shine-effect::before {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255,255,255,0.6) 0%,
                rgba(255,255,255,0.2) 60%,
                transparent 100%
            );
            transform: skewX(-25deg);
            animation: shineMove 3s infinite;
            pointer-events: none;
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.2s;
            z-index: 1000;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.15;
            }
            100% {
                transform: scale(1);
                opacity: 0.1;
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes shineMove {
            0% { left: -75%; }
            100% { left: 125%; }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
             .hero {
        gap: 40px;
        padding: 100px 8%;
        margin-top:20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-video {
        max-width: 500px;
    }
        }

        @media (max-width: 992px) {
            header {
                padding: 15px 30px;
            }

             .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 120px 5% 60px;
         margin-top:20px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-video {
        max-width: 600px;
        order: 2;
    }

            .stats {
                flex-wrap: wrap;
                gap: 40px;
            }

            nav ul {
                display: none;
            }

            .menu-toggle {
                display: block;
            }


        }

        @media (max-width: 768px) {
    .hero {
        padding: 100px 5% 40px;
        min-height: auto;
         margin-top:20px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-video {
        max-width: 450px;
    }

            .btn-primary, .btn-secondary {
                justify-content: center;
            }

            .services-grid, .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .contact {
                display: none;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 15px 20px;
            }

            .navwrap{
              display: none;
            }

            .call-btn span {
                display: none;
            }

            .call-btn {
                padding: 10px 15px;
            }

             .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-video {
        max-width: 100%;
        border-radius: 15px;
    }

            .portfolio-filters {
                flex-wrap: wrap;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }


        }

        @media (max-width: 480px) {

        }
        /* Container */
.section-stats {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
    position: relative;

}

/* Left content */
.left {
    padding: 14px 4px;
}
.kicker {
    display: inline-block;
    background: rgba(139,92,235,0.10);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 22px;
    margin-bottom: 18px;
}
.title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.02;
    color: #0B64FF; /* bright blue like your sample */
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.lead {
    color: #4b5563;
    max-width: 540px;
    font-size: 15px;
    margin-bottom: 28px;
}

/* Right stats box */
.stats-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(20,20,30,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

/* Each stat cell */
.stat {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-left: 1px solid rgba(0,0,0,0.04);
    border-top: 1px solid rgba(0,0,0,0.04);
    background-clip: padding-box;
}

/* Remove top border for first row items */
.stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
.stat:nth-child(1), .stat:nth-child(3) { border-left: none; }

/* Big number and label */
.stat .num {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat .label {
    font-size: 13px;
    color:  #ffdb00;
    text-transform: lowercase;
}

/* Individual number colors (override using classes) */
.num.green { color: #14A44D; }     /* branding */
.num.blue  { color: #0B64FF; }     /* digital marketing */
.num.red   { color: #E53935; }     /* designing */
.num.gold  { color: #F6B30A; }     /* graphic design */

/* Decorative subtle dot-grid behind stats (left of the right card) */
.decor-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    right: calc(480px - 30px);
    top: 64px;
    background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.12;
    transform: translateX(-40px);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 980px) {
    .section-stats { grid-template-columns: 1fr; padding: 0 18px; gap: 28px; }
    .stats-wrapper { width: 100%; }
    .decor-dots { display: none; }
    .title { font-size: 36px; }
}
/* Container */
.section-stats {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Left content */
.left {
    padding: 14px 4px;
}
.kicker {
    display: inline-block;
    background: rgba(139,92,235,0.10);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 22px;
    margin-bottom: 18px;
}
.title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.02;
    color: #0B64FF; /* bright blue like your sample */
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.lead {
    color: #4b5563;
    max-width: 540px;
    font-size: 15px;
    margin-bottom: 28px;
}

/* Right stats box */
.stats-wrapper {
    background: var(--dark-light);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(20,20,30,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

/* Each stat cell */
.stat {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-left: 1px solid rgba(0,0,0,0.04);
    border-top: 1px solid rgba(0,0,0,0.04);
    background-clip: padding-box;
}

/* Remove top border for first row items */
.stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
.stat:nth-child(1), .stat:nth-child(3) { border-left: none; }

/* Big number and label */
.stat .num {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}
.stat .label {
    font-size: 13px;
    color: #6b7280;
    text-transform: lowercase;
}

/* Individual number colors (override using classes) */
.num.green { color: #14A44D; }     /* branding */
.num.blue  { color: #0B64FF; }     /* digital marketing */
.num.red   { color: #E53935; }     /* designing */
.num.gold  { color: #F6B30A; }     /* graphic design */

/* Decorative subtle dot-grid behind stats (left of the right card) */
.decor-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    right: calc(480px - 30px);
    top: 64px;
    background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.12;
    transform: translateX(-40px);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 980px) {
    .section-stats { grid-template-columns: 1fr; padding: 0 18px; gap: 28px; }
    .stats-wrapper { width: 100%; }
    .decor-dots { display: none; }
    .title { font-size: 36px; }
}

/* Form Section */
 /* Animated background */

    /* Animated background */

.cta{
    margin-top: 120px;
}
    .form-container {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 30px;
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 100px;
    }

    .services-section {
      background: rgba(30, 30, 46, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;

      border: 1px solid rgba(255, 255, 255, 0.1);
      height: fit-content;
    }

    .services-section h3 {
      color: var(--secondary);
      margin-bottom: 20px;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary);
    }

    .services-section h3 i {
      margin-right: 10px;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      padding: 10px;
      border-radius: 8px;
      background: rgba(18, 18, 18, 0.4);
      transition: all 0.2s ease;
    }

    .checkbox-item:hover {
      background: rgba(139, 92, 235, 0.2);
      transform: translateX(5px);
    }

    .checkbox-item input {
      display: none;
    }

    .checkbox-item label {
      display: flex;
      align-items: center;
      color: var(--text-gray);
      cursor: pointer;
      font-size: 0.95rem;
      width: 100%;
    }

    .checkbox-item label::before {
      content: "";
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary);
      border-radius: 4px;
      margin-right: 10px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .checkbox-item input:checked + label::before {
      content: "✓";
      background: var(--primary);
      color: white;
    }

    .form-section {
        width: 100%;
      position: relative;
      z-index: 1;
      padding: 40px;
      background: rgba(30, 30, 46, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 20px;

      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .form-header h2 {
      color: var(--secondary);
      margin-bottom: 10px;
      font-size: 2.2rem;
      position: relative;
      display: inline-block;
    }

    .form-header h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
    }

    .form-header p {
      color: var(--text-gray);
      margin-top: 20px;
      line-height: 1.6;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .input-group {
      position: relative;
    }

    .input-group i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
    }

    .input-group input,
    .input-group select {
      width: 100%;
      padding: 15px 15px 15px 45px;
      border: none;
      border-radius: 10px;
      background: rgba(18, 18, 18, 0.7);
      color: #fff;
      font-size: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .input-group input:focus,
    .input-group select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(139, 92, 235, 0.3);
    }

    input::placeholder,
    textarea::placeholder,
    select:invalid {
      color: var(--text-gray);
    }

    textarea {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 10px;
      background: rgba(18, 18, 18, 0.7);
      color: var(--text);
      font-size: 1rem;
      resize: vertical;
      min-height: 120px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .submit-btn {
      display: block;
      width: 200px;
      margin: 30px auto 0;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      color: var(--text);
      border: none;
      padding: 16px 24px;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(139, 92, 235, 0.4);
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(139, 92, 235, 0.6);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    .submit-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .submit-btn:hover::after {
      left: 100%;
    }

    /* Responsive adjustments */
    @media (max-width: 968px) {
      .form-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .services-section {
        order: 2;
      }

      .form-section {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .form-section {
        padding: 30px 20px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .submit-btn {
        width: 100%;
      }
    }
.cta {
  width: 60%;              /* Default for large screens */
  max-width: 1200px;       /* Prevent too wide stretch */
  margin: 0 auto;          /* Center horizontally */
}

/* Large laptops and desktops */
@media (max-width: 1200px) {
  .cta {
    width: 65%;
  }
}

/* Tablets (portrait) and small laptops */
@media (max-width: 992px) {
  .cta {
    width: 70%;
  }
}

/* Large mobile devices */
@media (max-width: 768px) {
  .cta {
    width: 80%;
  }
}

/* Small mobile devices (under 576px) */
@media (max-width: 576px) {
  .cta {
    width: 90%;
  }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
  .cta {
    width: 95%;
  }
}
