/* ============ CSS VARIABLES ============ */
:root {
    --bg-dark: #030712;
    --bg-card: #111827;
    --primary: #2CB2F1;
    --accent: #6366F1;
    --highlight: #01A68E;
    --text-white: #F9FAFB;
    --text-gray: #9CA3AF;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --text-blue: #90A4AE; /* Muted blue-gray */
}

/* ============ GLOBAL RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ============ CUSTOM SCROLLBAR ============ */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--primary));
}

/* ============ NAVIGATION BAR ============ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 5%;
    width: 100%;
    z-index: 1001;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
    will-change: transform;
}

/* Logo container - left side */
.logo-container {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
}

.logo span {
    color: var(--primary);
}

/* ============ NAVIGATION LINKS ============ */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex: 0 1 auto;
    justify-content: center;
}

/* Navigation items (exclude CTA button) */
.nav-links a:not(.btn-nav) {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* REMOVE underline effect on hover for nav items */
.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    display: none; /* Hide by default */
}

/* Hover effect - color change only, NO underline */
.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
    transform: translateY(-2px); /* Optional: Add lift effect */
}

/* Hover - explicitly hide underline */
.nav-links a:not(.btn-nav):hover::after {
    display: none;
    width: 0;
}

/* ============ ACTIVE STATE - WITH UNDERLINE ============ */
.nav-links a:not(.btn-nav).active {
    color: var(--primary);
    font-weight: 600;
}

/* Show underline ONLY on active state */
.nav-links a:not(.btn-nav).active::after {
    display: block; /* Show the underline */
    width: 100%;
    animation: underlineGrow 0.4s ease-out forwards;
}

/* Active underline animation */
@keyframes underlineGrow {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* Optional: Different hover effect without underline */
.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
    /* Add other hover effects instead of underline */
    text-shadow: 0 0 10px rgba(44, 178, 241, 0.3);
    transform: translateY(-2px);
}

/* Keep active state distinct */
.nav-links a:not(.btn-nav).active {
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(44, 178, 241, 0.5);
}

/* CTA button - right side */
.nav-cta {
    flex-shrink: 0;
}

/* ============ BUTTON STYLES ============ */
.btn {
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button */
.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 32px rgba(44, 178, 241, 0.3);
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 178, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Secondary Button */
.btn.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(44, 178, 241, 0.2);
}

/* Navbar CTA Button */
.btn.btn-nav {
    padding: 0.4rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50rem;
    background: linear-gradient(135deg, var(--primary), #4fc3f7);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 18px rgba(44, 178, 241, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Remove underline effect from CTA button */
.btn.btn-nav::after {
    display: none !important;
}

/* Remove aggressive ripple effect from CTA button */
.btn.btn-nav::before {
    display: none;
}

/* ============ HOVER EFFECT (NO UNDERLINE) ============ */
.btn.btn-nav:hover {
    /* Hover: Lighter, more glowing effect */
    background: linear-gradient(135deg, #4fc3f7, var(--primary));
    box-shadow: 0 8px 10px rgba(44, 178, 241, 0.5),
                0 0 20px rgba(44, 178, 241, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px) scale(1.02);
    /* NO underline on hover */
}

/* ============ DIFFERENT ACTIVE EFFECT ============ */
.btn.btn-nav:active {
    /* Active: Pressed/darker effect */
    background: linear-gradient(135deg, #0d8ec9, var(--primary));
    box-shadow: 0 2px 10px rgba(44, 178, 241, 0.3),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(1px) scale(0.98);
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: relative;
}

.hamburger i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    color: #ffffff;
    font-size: 1.8rem;
}

.hamburger .fa-bars {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hamburger .cross-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(-90deg);
}

.hamburger.active .fa-bars {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(90deg);
}

.hamburger.active .cross-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* ============ MOBILE MENU ============ */
.menu-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

body.menu-open .menu-blur-overlay {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

/* ============ RESPONSIVE NAVIGATION ============ */
@media (max-width: 1023px) {
    .logo-link { gap: 9px; }
    .logo-img { 
        height: 36px;
        width: 36px;
    }
    .logo { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 16px;
    }
    
    .logo-link { gap: 2px; }
    .logo-img { 
        height: 32px;
        width: 32px;
    }
    .logo { 
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
        margin-left: auto;
    }
    
    .nav-cta { display: none; }
    .nav-links { 
        display: none;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #030712, #0b1220);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 20px 20px;
        padding: 20px 0;
    }
    
    .nav-links.active li {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Mobile CTA button */
    .nav-links.active li.mobile-cta {
        margin-top: 5px;
        padding-top: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
    }
    
    .nav-links.active .mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 32px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        background: linear-gradient(135deg, var(--accent), var(--primary));
        color: white;
        text-decoration: none;
        border: none;
        box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
        transition: var(--transition);
        width: 100%;
        max-width: 280px;
    }
    
    .nav-links.active a:not(.btn-nav) {
        display: block;
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .nav-links.active a:not(.btn-nav):hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 480px) {
    .logo-link { gap: 6px; }
    .logo-img { 
        height: 28px;
        width: 28px;
    }
    .logo { font-size: 1.25rem; }
    
    .hamburger {
        padding: 8px;
        width: 36px;
        height: 36px;
    }
    
    .nav-links.active {
        height: 400px;
        padding: 25px 15px;
    }
    
    .nav-links.active a:not(.btn-nav) {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .nav-links.active .btn-nav {
        padding: 12px;
        font-size: 1rem;
    }
}
/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}


.hero::before {
    content: "";
    position: absolute;
    inset: -50%;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: drift 30s linear infinite;
    will-change: transform;
    z-index: 0;
}

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    to {
        transform: translate3d(-120px, -120px, 0) rotate(360deg);
    }
}

.hero-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content h1 { 
    font-size: clamp(2.8rem, 7vw, 5.5rem); 
    line-height: 1.05; 
    font-weight: 800; 
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, 
        var(--text-white) 0%, 
        var(--text-white) 60%, 
        var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--accent) 50%, 
        var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--accent), 
        var(--highlight));
    border-radius: 2px;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 0.8s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-content p { 
    font-size: 1.25rem; 
    color: var(--text-gray); 
    max-width: 680px; 
    margin: 0 auto 3rem; 
    line-height: 1.7;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* ============ HERO RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero {
        padding-top: 64px; 
        min-height: 60vh;
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 64px 12px 0;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============ SECTION HEADER ============ */
section {
    margin: 5rem 0;
    width: 100%;
    padding: 0 5%;
    
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-header .line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #4fc3f7);
    margin: 0 auto 15px;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 720px;
    margin: 0 auto;
}

/* ============ SECTION RESPONSIVE ============ */
@media (max-width: 768px) {
    section {
        margin: 5rem 0;
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 0 12px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* ============ SERVICES SECTION ============ */
.services-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto 100px;
}

.service-item {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    width: 100%;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.service-icon {
    width: 55px; 
    height: 55px; 
    border-radius: 14px;
    background: rgba(44, 178, 241, 0.12); 
    color: var(--primary);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.4rem; 
    margin-bottom: 18px;
}

.service-item h3 { 
    color: var(--text-white); 
    margin-bottom: 12px; 
    font-size: 1.2rem; 
}

.service-item p { 
    color: var(--text-gray); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 18px; 
}

.service-item ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.service-item ul li { 
    color: var(--text-gray); 
    font-size: 0.9rem; 
    position: relative; 
    padding-left: 18px; 
}

.service-item ul li::before {
    content: ''; 
    width: 6px; 
    height: 6px; 
    background: var(--primary);
    border-radius: 50%; 
    position: absolute; 
    left: 0; 
    top: 8px;
}

/* ============ SERVICES RESPONSIVE ============ */
@media (max-width: 768px) {
    .services-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .service-item h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .service-item p {
        font-size: 0.92rem;
    }
    
    .service-item ul { 
        display: none;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .service-item p {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }
    
    .service-item {
        padding: 20px 15px;
    }
}

/* ============ WHY CHOOSE US ============ */
.why-choose-side {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center; 
    padding: 3rem;
    background: rgba(17, 24, 39, 0.5); 
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-left h3 { 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    color: var(--text-white); 
}

.why-left p { 
    color: var(--text-gray); 
    margin-bottom: 30px; 
    font-size: 1.1rem; 
    line-height: 1.7; 
}

.benefit-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
}

.benefit-item {
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 20px;
    background: rgba(255, 255, 255, 0.02); 
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03); 
    transition: var(--transition);
}

.benefit-item:hover { 
    border-color: var(--primary); 
    background: rgba(44, 178, 241, 0.05); 
}

.benefit-item i {
    font-size: 1.5rem; 
    color: var(--primary); 
    background: rgba(44, 178, 241, 0.1);
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 12px; 
    flex-shrink: 0;
}

.benefit-item h4 { 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    color: var(--text-white); 
}

.benefit-item p { 
    color: var(--text-gray); 
    font-size: 0.9rem; 
    line-height: 1.5; 
}

/* ============ WHY CHOOSE US RESPONSIVE ============ */
@media (max-width: 768px) {
    .why-choose-side {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        margin: 0 16px;
    }
    
    .why-left h3 {
        font-size: 2rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-choose-side {
        padding: 20px 20px;
        margin: -3.5rem 0;
    }
    
    .why-left h3 {
        font-size: 1.8rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PROCESS SECTION ============ */
.process-horizontal {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
    position: relative; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.process-line {
    position: absolute; 
    top: 50px; 
    left: 12%; 
    right: 12%; 
    height: 3px;
    background: rgba(255, 255, 255, 0.1); 
    z-index: 0;
}

.proc-card { 
    position: relative; 
    text-align: center; 
    padding: 20px; 
    z-index: 1; 
    transition: var(--transition); 
}

.proc-card:hover { 
    transform: translateY(-10px); 
}

.proc-icon-wrapper {
    width: 60px; 
    height: 60px; 
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    margin: 0 auto 25px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.5rem; 
    color: var(--primary); 
    position: relative;
    box-shadow: 0 0 0 8px var(--bg-dark);
}

.proc-card:hover .proc-icon-wrapper {
    background: var(--primary); 
    color: white; 
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 0 8px var(--bg-dark);
}

.proc-badge {
    position: absolute; 
    top: -10px; 
    right: -10px; 
    width: 25px; 
    height: 25px;
    background: var(--accent); 
    color: var(--bg-dark); 
    font-size: 0.8rem; 
    font-weight: 800;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid var(--bg-dark);
}

.proc-card h3 { 
    font-size: 1.2rem; 
    color: var(--text-white); 
    margin-bottom: 10px; 
}

.proc-card p { 
    font-size: 0.9rem; 
    color: var(--text-gray); 
    line-height: 1.6; 
}

/* Process Summary */
.process-summary { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
}

.summary-card {
    background: rgba(255, 255, 255, 0.02); 
    border-radius: 15px; 
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03); 
    text-align: center; 
    transition: var(--transition);
}

.summary-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
    background: rgba(44, 178, 241, 0.05); 
}

.summary-icon {
    width: 60px; 
    height: 60px; 
    background: rgba(44, 178, 241, 0.1); 
    border-radius: 15px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px;
    font-size: 1.5rem; 
    color: var(--primary); 
    transition: var(--transition);
}

.summary-card:hover .summary-icon { 
    background: rgba(44, 178, 241, 0.2); 
    transform: scale(1.1); 
}

.summary-card h4 { 
    font-size: 1.3rem; 
    margin-bottom: 10px; 
    color: var(--text-white); 
}

.summary-card p { 
    color: var(--text-gray); 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

/* ============ PROCESS RESPONSIVE ============ */
@media (max-width: 1023px) {
    .process-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 16px;
    }
    
    .process-line {
        display: none;
    }
    
    .proc-card {
        padding: 25px 20px;
    }
    
    .process-summary {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    #process {
        margin-top: 7rem;
        padding: 0 16px;
    }
    
    .process-horizontal {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .proc-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .proc-card h3 {
        font-size: 1.1rem;
    }
    
    .process-summary {
       display: none;
    }
    
    .summary-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    #process {
        padding: 0 12px;
    }
    
    .proc-card {
        padding: 20px;
    }
    
    .proc-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .proc-card p {
        font-size: 0.85rem;
    }
}

/* ============ PRICING SECTION ============ */
.pricing-section {
    margin-bottom: 40px;
    padding: 60px 3%;
    width: 100%;
}

.pricing-section .section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.perfect-for {
    background: rgba(44, 178, 241, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.perfect-for i {
    color: var(--primary);
    margin-right: 10px;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
     max-width: 1000px; /* Reduced from 1400px */
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 1rem 0;
    
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.price-card.popular {
    border-color: var(--primary);
    position: relative;
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(44, 178, 241, 0.3);
    z-index: 2;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}


.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 400;
}

.discount-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.discount-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(90deg, #ef4444, #f97316);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
    animation: pulseDiscount 2s infinite;
}

.price-card.popular .discount-badge {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

@keyframes pulseDiscount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    padding: 0;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.features li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-btn {
    margin-top: auto;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 178, 241, 0.3);
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.contact-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
}
.landing-price{
    width: 5rem;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(44, 178, 241, 0.05);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(44, 178, 241, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.detail-item h5 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.trust-note {
    text-align: center;
    background: rgba(17, 24, 39, 0.6);
    color: var(--text-gray);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    margin-top: -4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.trust-note i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--primary);
}

.highlight-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}

.highlight-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ============ PRICING RESPONSIVE ============ */
@media (max-width: 1023px) {
    .pricing-section {
        padding: 40px 3%;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .price-card {
        padding: 30px 25px;
    }
    
    .service-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 16px;
    }
    
    .trust-note {
        padding: 25px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 30px 16px;
    }
    
    .pricing-section .section-header {
        margin-bottom: 30px;
    }
    
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .price-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .discount-price {
        font-size: 2rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .delivery-timeline {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .perfect-for {
        padding: 12px 15px;
        margin-bottom: 30px;
        font-size: 0.9rem;
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 30px 0;
    }
    
    .detail-item {
        padding: 20px;
    }
    
    .trust-note {
        padding: 20px 15px;
        margin: 30px 0 0;
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .features li {
        font-size: 0.9rem;
    }
    
    .pop-badge {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 25px 12px;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .discount-price {
        font-size: 1.8rem;
    }
    
    .original-price {
        font-size: 0.95rem;
    }
    
    .delivery-timeline {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .perfect-for {
        padding: 10px 12px;
        margin-bottom: 25px;
        font-size: 0.85rem;
    }
    
    .service-details {
        margin: 25px 0;
        gap: 10px;
    }
    
    .detail-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .detail-item i {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .detail-item h5 {
        font-size: 1rem;
    }
    
    .detail-item p {
        font-size: 0.85rem;
    }
    
    .trust-note {
        padding: 15px 12px;
        margin: 25px 0 0;
        font-size: 0.85rem;
    }
    
    .contact-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .features {
        margin-bottom: 20px;
    }
    
    .features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .pop-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

/* ============ ABOUT SECTION ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.lottie-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(2, 6, 23, 0.9) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(44, 178, 241, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 25px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.lottie-animation {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(44, 178, 241, 0.2));
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 420px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

.stat-card {
    flex: 1 1 0;
    min-width: 90px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(44, 178, 241, 0.2);
}

.stat-card i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.stat-card:hover i {
    transform: scale(1.1);
}

.stat-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* About Text Styling */
.about-text h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        var(--text-white) 0%, 
        var(--text-white) 65%, 
        var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.sub-heading {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(44, 178, 241, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(44, 178, 241, 0.2);
}

.company-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Technologies Stack */
.tech-stack-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-white);
    font-weight: 700;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.tech-item {
    background: var(--bg-card);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(44, 178, 241, 0.3);
    z-index: 10;
}

.tech-item i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.2);
}

/* ============ ABOUT RESPONSIVE ============ */
@media (max-width: 1200px) {
    .about-grid {
        gap: 60px;
    }
    
    .lottie-container {
        max-width: 340px;
        height: 360px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .lottie-container {
        max-width: 300px;
        height: 320px;
        margin: 0 auto;
    }
    
    .stats-container {
        max-width: 100%;
        gap: 16px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 1.9rem;
    }
    
    .tech-icons {
        justify-content: center;
    }
    
    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1 1 45%;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .lottie-container {
        max-width: 280px;
        height: 300px;
    }
    
    .stats-container {
        gap: 10px;
    }
    
    .stat-card {
        padding: 14px 10px;
    }
    
    .stat-card i {
        font-size: 1.8rem;
    }
    
    .stat-card strong {
        font-size: 0.95rem;
    }
    
    .stat-card span {
        font-size: 0.75rem;
    }
}

/* ==================== CONTACT SECTION STYLES ==================== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.contact-section .section-header {
    margin-bottom: 60px;
}

.contact-section .section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}

.form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Select Styling */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232CB2F1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select:invalid {
    color: rgba(156, 163, 175, 0.7);
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-white);
    padding: 12px;
}

.form-group select option:first-child {
    color: rgba(156, 163, 175, 0.7);
}

/* Focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(44, 178, 241, 0.1);
}

/* Remove number input spinners */
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.hint-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Submit Button with Loading States */
.submit-btn {
    margin-top: 10px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    position: relative;
    min-height: 52px;
    overflow: hidden;
   
}

.submit-btn:hover:not(.loading) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 178, 241, 0.3);
}

.submit-btn:active:not(.loading) {
    transform: translateY(0);
}

/* Button Text States */
.btn-text, .loading-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.loading-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
}


.submit-btn.loading .btn-text {
    opacity: 0;
    visibility: hidden;
}

.submit-btn.loading .loading-text {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Spinner animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 178, 241, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form status messages */
.form-status {
    min-height: 24px;
    padding: 12px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Map Container */
.map-container {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-header {
    padding: 20px 25px;
    background: rgba(44, 178, 241, 0.08);
    border-bottom: 1px solid rgba(44, 178, 241, 0.2);
}

.map-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 0;
}

.map-header h4 i {
    color: var(--primary);
}

.map-wrapper {
    padding: 0;
}

.map-wrapper iframe {
    display: block;
    border: none;
    width: 100%;
    height: 250px;
}

.view-map-btn {
    display: block;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.view-map-btn:hover {
    background: rgba(44, 178, 241, 0.1);
    color: var(--text-white);
}

.view-map-btn i {
    margin-right: 8px;
}

/* Contact Details Card */
.contact-details-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(44, 178, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-content h5 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.detail-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 2px;
}

.detail-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #ef4444;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus) {
    border-color: #10b981;
}

/* Loading state for submit button */
.submit-btn.loading {
    position: relative;
    
}

/* Privacy Note */
.privacy-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.privacy-note i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* =====================================================
   LARGE LAPTOPS (≤1200px)
===================================================== */
@media (max-width: 1200px) {
    .contact-wrapper {
        max-width: 1000px;
        gap: 32px;
    }

    .contact-form-container,
    .contact-details-card {
        padding: 30px 26px;
    }
}

/* =====================================================
   TABLETS & SMALL LAPTOPS (≤1024px)
===================================================== */
@media (max-width: 1024px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 16px;
    }

    .contact-section .section-header h2 {
        font-size: 2.4rem;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .map-wrapper iframe {
        height: 220px;
    }
}

/* =====================================================
   TABLETS & LARGE PHONES (≤768px)
===================================================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    /* REMOVE SIDE GAP (CRITICAL FIX) */
    .contact-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-section .section-header {
        padding: 0 16px;
        margin-bottom: 36px;
        text-align: center;
    }

    .contact-section .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .contact-details-card {
        padding: 22px 18px;
    }

    .submit-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .map-wrapper iframe {
        height: 210px;
    }
}

/* =====================================================
   PHONES (≤600px)
===================================================== */
@media (max-width: 600px) {
    .contact-section {
        padding: 52px 0;
    }

    .contact-section .section-header h2 {
        font-size: 2rem;
    }

    .form-header h3 {
        font-size: 1.45rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 0.95rem;
    }

    .submit-btn {
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* =====================================================
   SMALL PHONES (≤480px)
===================================================== */
@media (max-width: 480px) {
    .contact-wrapper{
        padding: 0 20px;
    }
    .contact-section {
        padding: 48px 0;
    }

    .contact-section .section-header h2 {
        font-size: 1.85rem;
    }

    .contact-section .section-header p {
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 20px 14px;
    }

    .contact-details-card {
        padding: 20px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 14px;
    }

    .privacy-note {
        font-size: 0.75rem;
        padding: 10px;
    }
}

/* =====================================================
   SAFETY: FULL WIDTH & BOX MODEL
===================================================== */
.contact-form,
.form-group,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}



/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.8);
}

/* ============ WHATSAPP RESPONSIVE ============ */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(180deg, #020617, #030712);
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 6rem;
}

/* Container */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5% 60px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 360px;
}

/* Columns */
.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-white);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social i {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social a:hover i {
    color: #000;
}

/* WhatsApp */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 30px;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    background: #25D366;
    color: #000;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 5%;
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Bottom Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    font-size: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: rgba(255,255,255,0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================================
   PACKAGE HERO – PROFESSIONAL / ENTERPRISE STYLE
   ========================================================= */

/* Hero Section */
.package-hero {
    padding: 140px 0 90px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            transparent 40%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(44, 178, 241, 0.08),
            transparent 45%
        ),
        var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(44, 178, 241, 0.35),
        transparent
    );
}

/* Package Badge */
.package-badge {
    background: rgba(44, 178, 241, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    border: 1px solid rgba(44, 178, 241, 0.25);
    backdrop-filter: blur(6px);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    background: linear-gradient(
        90deg,
        #ffffff 30%,
        #cbd5e1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    max-width: 760px;
    margin: 0 auto 55px;
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.75;
}

/* =========================================================
   PRICING / PACKAGE STATS
   ========================================================= */
/* ========== PRICING STATS ========== */
.pricing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: #ffffff;
    border: 2px solid #dbeafe;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 300ms ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.025em;
    display: block;
}

/* First card special styling (pricing) */
.stat-card:first-child .stat-value {
    font-size: 2.5rem;
}

/* Make the ₹ symbol larger */
.stat-value::first-letter {
    font-size: 3rem;
    vertical-align: -0.1em;
    margin-right: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    display: block;
    max-width: 200px;
}

/* Special styling for the first card label */
.stat-card:first-child .stat-label {
    color: #10b981;
}

/* Responsive styles for pricing stats */
@media (max-width: 1024px) {
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-card:first-child .stat-value {
        font-size: 2.25rem;
    }
    
    .stat-card {
        min-height: 160px;
    }
}

@media (max-width: 640px) {
    .pricing-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 3rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
    
    .stat-card:first-child .stat-value {
        font-size: 2rem;
    }
    
    .stat-value::first-letter {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-card:first-child .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-value::first-letter {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
}


/* Feature Grid */
.detail-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 1.5rem;
    color: white;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--highlight);
    font-size: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.table-feature {
    color: var(--text-white);
    font-weight: 500;
}

.table-value.included {
    color: var(--highlight);
    font-weight: 600;
}

.table-value.not-included {
    color: #ef4444;
    opacity: 0.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(44, 178, 241, 0.1), rgba(99, 102, 241, 0.1));
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(44, 178, 241, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.guarantee-badge i {
    color: var(--highlight);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ============ RESPONSIVE (Package Page) ============ */

@media screen and (max-width: 1024px) {
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .package-hero {
        padding: 120px 0 60px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 15px 25px;
    }

    .table-feature {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--text-gray);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
     .btn-nav {
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    all: unset;
    display: flex;
    align-items: center; /* Aligns icon to bottom */
    justify-content: center;
    padding-bottom: 4px; /* Adjust this value to shift down */
}
    
    .btn-nav span {
        display: none;
    }
    
    .btn-nav i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }

    .section-intro h2 {
        font-size: 1.8rem;
    }
     .btn-nav {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-nav span {
        display: none;
    }
    
    .btn-nav i {
        margin: 0;
        font-size: 1.1rem;
    }
}
/* ============ CORE WEB VITALS OPTIMIZATION ============ */

/* Prevent layout shifts */
img, video, iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* Reserve space for images */
.image-frame {
    aspect-ratio: 300/350;
    position: relative;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optimize hero for LCP */
.hero-content {
    will-change: transform;
}

/* Touch-friendly buttons for mobile */
@media (max-width: 768px) {
    .btn, .nav-item, .price-card a {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Increase touch targets */
    .service-item, .proc-card, .summary-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    /* Optimize images for mobile */
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    /* Reduce animations on mobile */
    * {
        scroll-behavior: auto;
    }
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ FONT OPTIMIZATION ============ */
body {
    font-display: swap;
}


/* ============ CUSTOM SCROLLBAR ============ */
/* Hide scrollbar for mobile only */
@media (max-width: 992px) {
    /* For all browsers */
    body {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    /* For Chrome, Safari and Opera */
    body::-webkit-scrollbar {
        display: none;
    }
}

/* Desktop scrollbar styles */
@media (min-width: 993px) {
    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--bg-dark);
    }

    /* WebKit Browsers (Chrome, Edge, Safari) */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary), var(--accent));
        border-radius: 10px;
        border: 2px solid var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--accent), var(--primary));
    }
}


/* =========================================== */
/*                 END OF CSS                 */
/* =========================================== */

/* =========================================================
   PRICING / PACKAGE STATS
   ========================================================= */

.pricing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

/* Stat Card */
.stat-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    padding: 30px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at top,
        rgba(44, 178, 241, 0.12),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 178, 241, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Stat Value */
.stat-value {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

/* Stat Label */
.stat-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 1024px) {
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .package-hero {
        padding: 120px 0 70px;
    }

    .pricing-stats {
        grid-template-columns: 1fr;
    }
}


/* Feature Grid */
.detail-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 1.5rem;
    color: white;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--highlight);
    font-size: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.table-feature {
    color: var(--text-white);
    font-weight: 500;
}

.table-value.included {
    color: var(--highlight);
    font-weight: 600;
}

.table-value.not-included {
    color: #ef4444;
    opacity: 0.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(44, 178, 241, 0.1), rgba(99, 102, 241, 0.1));
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(44, 178, 241, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.guarantee-badge i {
    color: var(--highlight);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ============ RESPONSIVE (Package Page) ============ */

@media screen and (max-width: 1024px) {
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .package-hero {
        padding: 120px 0 60px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 15px 25px;
    }

    .table-feature {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--text-gray);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
     .btn-nav {
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    all: unset;
    display: flex;
    align-items: center; /* Aligns icon to bottom */
    justify-content: center;
    padding-bottom: 4px; /* Adjust this value to shift down */
}
    
    .btn-nav span {
        display: none;
    }
    
    .btn-nav i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 25px;
    }

    .section-intro h2 {
        font-size: 1.8rem;
    }
     .btn-nav {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-nav span {
        display: none;
    }
    
    .btn-nav i {
        margin: 0;
        font-size: 1.1rem;
    }
}
/* ============ CORE WEB VITALS OPTIMIZATION ============ */

/* Prevent layout shifts */
img, video, iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* Reserve space for images */
.image-frame {
    aspect-ratio: 300/350;
    position: relative;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optimize hero for LCP */
.hero-content {
    will-change: transform;
}

/* Touch-friendly buttons for mobile */
@media (max-width: 768px) {
    .btn, .nav-item, .price-card a {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Increase touch targets */
    .service-item, .proc-card, .summary-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    
    /* Reduce animations on mobile */
    * {
        scroll-behavior: auto;
    }
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ FONT OPTIMIZATION ============ */
body {
    font-display: swap;
}


/* ============ CUSTOM SCROLLBAR ============ */
/* Hide scrollbar for mobile only */
@media (max-width: 992px) {
    /* For all browsers */
    body {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    /* For Chrome, Safari and Opera */
    body::-webkit-scrollbar {
        display: none;
    }
}

/* Desktop scrollbar styles */
@media (min-width: 993px) {
    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--bg-dark);
    }

    /* WebKit Browsers (Chrome, Edge, Safari) */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary), var(--accent));
        border-radius: 10px;
        border: 2px solid var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--accent), var(--primary));
    }
}


@media (max-width: 768px) {
    .contact-form,
    .cta-buttons,
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    button,
    .btn,
    .submit-btn,
    a.btn {
        align-self: center;
        text-align: center;
    }
}

/* =========================================== */
/*                 END OF CSS                 */
/* =========================================== */