/* Layout & Typography */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.features-section {
    padding: 6rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .title { font-size: 3.5rem; }
}

.subtitle {
    color: #6B7280;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.625;
}

/* Grid System */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Feature Card Base */
.feature-card {
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: 40px;
    padding: 0.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.visual-wrapper {
    border-radius: 34px;
    height: 320px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-content {
    padding: 0 2rem 2rem 2rem;
}

.card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card-content p {
    color: #6B7280;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.625;
}

/* Background Variations */
.bg-purple-soft { background: #F9F7FF; }
.bg-yellow-soft { background: #FFFDF2; }
.bg-blue-soft { background: #F2F8FF; }

/* Visual Elements - Editor Tool */
.editor-toolbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.75rem;
    border-radius: 1rem;
    display: flex;
    gap: 0.625rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
}

.tool-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.tool-icon.active {
    background: #000;
    color: white;
}

/* Visual Elements - Prototype */
.prototype-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-box {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yellow-square {
    width: 2.5rem;
    height: 2.5rem;
    background: #FACC15;
    border-radius: 0.375rem;
}

.connector-line {
    height: 4rem;
    width: 2px;
    background: #E5E7EB;
    margin: 0.5rem 0;
    position: relative;
}

.arrow-head {
    position: absolute;
    bottom: -4px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #D1D5DB;
    border-bottom: 2px solid #D1D5DB;
    transform: rotate(45deg);
}

.circle-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.2);
}

/* Visual Elements - Collaboration */
.collab-visual {
    position: relative;
    width: 14rem;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-1 { position: absolute; inset: 0; border: 1px solid #DBEAFE; border-radius: 50%; }
.orbit-2 { position: absolute; inset: 2.5rem; border: 1px solid #BFDBFE; border-radius: 50%; }

.center-icon {
    width: 4rem;
    height: 4rem;
    background: #6344F5;
    border-radius: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(99, 68, 245, 0.3);
}

.avatar {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.p-top { top: 1rem; left: 50%; transform: translateX(-50%); }
.p-left { bottom: 2.5rem; left: 1.5rem; }
.p-right { bottom: 2.5rem; right: 1.5rem; }

/* Special Effects */
.bg-purple-glow {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 12rem;
    height: 7rem;
    border-radius: 1.5rem;
    opacity: 0.5;
    filter: blur(24px);
    background: linear-gradient(to right, #E9D5FF, #E0E7FF);
    transition: opacity 0.5s;
}

.feature-card:hover .bg-purple-glow {
    opacity: 0.8;
}

/* --- Wide & Responsive Solutions Styles --- */

.solutions-section {
    background-color: #050505;
    color: #ffffff;
    padding: 120px 5%;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent; /* Removes blue flash on mobile tap */
}

/* Container Width Increased */
.solutions-container {
    max-width: 1400px; /* Increased for wider blocks */
    margin: 0 auto;
}

/* Header Adjustments */
.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.solutions-title {
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.solutions-desc {
    color: #888;
    max-width: 350px;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* --- Premium Popup Button --- */
.btn-main-popup {
    background: #d9f99d; /* Lime color */
    color: #000;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Desktop Hover */
@media (hover: hover) {
    .btn-main-popup:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 20px 40px rgba(217, 249, 157, 0.4);
    }
}

/* Mobile Popup (On Touch) */
.btn-main-popup:active {
    transform: scale(0.92);
    background: #c7eb7e;
}

/* --- Wide Grid & Cards --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Increased min-width */
    gap: 32px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px 40px;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Card Hover & Mobile Popup */
.solution-card:hover, 
.solution-card:active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(217, 249, 157, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Tilted Active Card */
.active-card {
    background: #ffffff;
    color: #000000;
    transform: rotate(-5deg); /* Desktop tilt */
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    z-index: 10;
}

.active-card:hover,
.active-card:active {
    background: #ffffff;
    transform: rotate(-3deg) translateY(-15px) scale(1.03);
}

/* Card Elements */
.card-icon { font-size: 36px; margin-bottom: 40px; color: #fff; }
.dark-icon { color: #000; }
.card-title { font-size: 32px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.card-text { color: #777; font-size: 16px; line-height: 1.6; }
.active-card .card-text { color: #444; }

/* Responsive Mobile Tweaks */
@media (max-width: 768px) {
    .solutions-header { text-align: center; justify-content: center; }
    .header-right { display: flex; flex-direction: column; align-items: center; }
    .solutions-desc { max-width: 100%; text-align: center; }
    
    .active-card { transform: rotate(0); } /* Remove tilt on mobile for better alignment */
    .active-card:hover, .active-card:active { transform: translateY(-10px) scale(1.02); }
    
    .solutions-grid { gap: 20px; }
}/* --- Hero Specific Styles --- */
.hero-section {
    background: radial-gradient(circle at top right, #fff0ea 0%, #ffffff 40%);
    overflow: hidden;
}

/* Floating Animation for Cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Custom Text Selection Color */
::selection {
    background: #fe6323;
    color: white;
}

/* Smooth Heading Animation */
.hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}/* Custom Menu Logic & Animations */
:root {
    --brand: #fe6323;
    --brand-light: #fff0ea;
}

/* Active Link State */
.active-menu { 
    color: var(--brand) !important; 
    font-weight: 700; 
}

/* MEGA MENU Logic */
.mega-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.group:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Sidebar Logic */
#mobile-sidebar { 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 150; 
}

.sidebar-open { 
    transform: translateX(0) !important; 
}

.menu-container { 
    display: flex; 
    width: 200%; 
    height: 100%; 
    transition: transform 0.3s ease-in-out; 
}

.menu-panel { 
    width: 50%; 
}

.slide-active { 
    transform: translateX(-50%); 
}

/* Utility to hide scrollbar */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}/* Sidebar Movement */
#mobile-sidebar {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-open {
    transform: translateX(0) !important;
}

/* Panel Sliding Logic */
.slide-active {
    transform: translateX(-50%);
}

/* Hide scrollbar for clean look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}/* --- Floating Blobs & Background --- */
.hero-wrapper {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 40px 40px; /* Subtle grid pattern */
    background-color: #faf9f6;
}

/* --- Scroll Indicator Animation --- */
@keyframes scroll-move {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.animate-scroll-dot {
    animation: scroll-move 2s infinite ease-in-out;
}

/* --- Heading Sharpness --- */
h1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0f172a;
}

/* --- Growth Animation Draw --- */
.growth-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-line 4s forwards infinite;
}

@keyframes draw-line {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* --- Final Polish for Buttons --- */
.btn-popup {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-popup:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(254, 99, 35, 0.3);
}/* Container height reduced */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0; /* Reduced vertical padding */
}

.logo-track {
    display: flex;
    width: calc(200px * 12); /* Adjusted width for smaller items */
    animation: scroll 25s linear infinite;
}

.logo-item {
    width: 200px; /* Reduced item width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.logo-item img {
    height: 30px; /* Smaller logo height */
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* Mobile height fix */
@media (max-width: 768px) {
    .logo-item {
        width: 150px;
        padding: 0 20px;
    }
    .logo-item img {
        height: 22px; /* Even smaller on mobile */
    }
    .logo-track {
        width: calc(150px * 12);
        animation: scroll 15s linear infinite;
    }
    @keyframes scroll {
        100% { transform: translateX(calc(-150px * 6)); }
    }
}/* Service Card Hover Effects */
.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Plus Icon Rotation */
.service-card:hover .plus-icon {
    transform: rotate(90deg);
}

/* Text Shadow for better readability over images */
.service-card h3 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Custom Gradient Overlay */
.service-card .bg-gradient-to-t {
    transition: opacity 0.5s ease;
}

.service-card:hover .bg-gradient-to-t {
    opacity: 1;
}/* Container & Global Section Styling */
.services-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Rotation cut-off rokne ke liye */
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Logic */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Mobile par automatic wrap hoga */
    gap: 30px;
    margin-bottom: 60px;
}

.services-heading {
    font-size: clamp(32px, 5vw, 56px); /* Fluid typography */
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.services-info {
    max-width: 320px;
}

.services-info p {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Brand Orange Button */
.cta-button-orange {
    background-color: #FF6B00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Grid Layout - Desktop to Mobile */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

/* Card Styling */
.service-card {
    background-color: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.service-icon {
    font-size: 24px;
    margin-bottom: 20px;
    color: #888;
}

.service-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: auto;
}

.service-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 30px;
}

/* Active Card - Brand Orange Theme */
.active-card-orange {
    background-color: #FF6B00; /* White ki jagah Orange */
    color: #fff;
    border: none;
    transform: rotate(-5deg);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.active-card-orange .service-icon,
.active-card-orange .service-text {
    color: #ffd8bd; /* Lighter shade for readability */
}

/* Mobile View Adjustments (BREAKING FIX) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .active-card-orange {
        transform: none; /* Mobile par rotation hata di */
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobile par single column */
    }
    .services-header {
        flex-direction: column;
    }
    .services-heading {
        font-size: 34px;
    }
}:root {
    --bixlash-orange: #ff7a30; /* Bright Orange Theme */
    --dark-bg: #1e1e1e;
    --text-gray: #a0a0a0;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
	
	
	/* Pricing Template Custom Styles */

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Margin-based spacing for cards */
.pricing-card-wrapper {
    margin: 1.5rem;
    padding: 2.5rem;
}

/* Smooth transitions for interactive elements */
#slider, #side-slider {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toggle-active {
    color: #000 !important;
    font-weight: 700;
}

/* Custom Bullet Point Spacing */
.bullet-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    margin-right: 4px;
}

/* Table Cell Padding & Alignment */
td, th {
    vertical-align: middle;
}

/* Better responsive margins for small screens */
@media (max-width: 768px) {
    .max-w-7xl {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .p-12 {
        padding: 2rem !important;
    }
}
}

.footer-container {
    position: relative;
    margin-top: 250px; /* Space for overlapping card */
}

/* Newsletter Wrapper */
.newsletter-wrapper {
    position: absolute;
    top: -180px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.newsletter-card {
    background-color: var(--bixlash-orange);
    border-radius: 30px;
    padding: 50px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 15px 35px rgba(255, 122, 48, 0.3); /* Orange tinted shadow */
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 40px;
}

.newsletter-visual img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.newsletter-form-container h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.input-group {
    background: rgba(255, 255, 255, 0.25);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
}

.at-icon {
    color: white;
    padding-left: 15px;
    font-weight: bold;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.8);
}

.input-group button {
    background: white;
    color: var(--bixlash-orange);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.input-group button:hover {
    transform: scale(1.05);
}

/* Main Dark Footer */
.footer-main {
    background-color: var(--dark-bg);
    border-radius: 50px 50px 0 0;
    padding: 220px 60px 50px 60px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.brand-logo-img {
    height: 40px;
    width: auto;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--bixlash-orange);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links ul li a:hover { color: var(--bixlash-orange); }

.footer-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 50px 0 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.legal-links { display: flex; gap: 25px; }
.legal-links a { color: var(--text-gray); text-decoration: none; }
.legal-links a:hover { color: white; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-card { padding: 30px 20px; }
    .input-group { flex-direction: column; gap: 10px; background: transparent; border: none; }
    .input-group input { background: rgba(255,255,255,0.2); border-radius: 30px; width: 100%; }
    .input-group button { width: 100%; }
    .footer-main { padding-top: 480px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}