/*
================================================================
█   G7 DIGITALX - PREMIUM LIGHT-THEMED STYLE SHEET
█   Theme Colors: Base Light (#FFFFFF / #F8FAFC), Accent Blue (#2563EB)
█   Dark Footer (#0F172A), Slate Borders (#E2E8F0)
█   Typography: Sora & Montserrat (Headings), Inter (Body)
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --g7-dark-bg: #0F172A;
    --g7-dark-card: #1E293B;
    --g7-primary: #2563EB;
    --g7-primary-glow: rgba(37, 99, 235, 0.08);
    --g7-highlight: #3B82F6;
    --g7-highlight-glow: rgba(59, 130, 246, 0.12);
    --g7-light-bg: #FFFFFF;
    --g7-light-alt: #F8FAFC;
    --g7-text-dark: #0F172A;
    --g7-text-slate: #334155;
    --g7-text-muted: #64748B;
    --g7-text-light: #F8FAFC;
    --g7-border-color: #E2E8F0;
    --g7-gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
}

/* Global Styles & Scroll System */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Navbar height compensation */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--g7-text-slate);
    background-color: var(--g7-light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--g7-text-dark);
}

.text-gradient {
    background: var(--g7-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-blue {
    color: var(--g7-primary) !important;
}

.bg-slate-900 {
    background-color: var(--g7-dark-bg) !important;
}

.border-slate-800 {
    border-color: #1E293B !important;
}

.border-slate-700 {
    border-color: #334155 !important;
}

.text-slate-400 {
    color: #94A3B8 !important;
}

.text-slate-300 {
    color: #CBD5E1 !important;
}

.text-slate-200 {
    color: #E2E8F0 !important;
}

.z-index-1 {
    z-index: 1;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Glow system (Light version) */
.g7-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.g7-glow-1 {
    width: 350px;
    height: 350px;
    background: var(--g7-primary);
    top: 5%;
    left: 2%;
}

.g7-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--g7-highlight);
    bottom: 10%;
    right: 2%;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--g7-border-color);
}

/* Section elements styling */
.section-tag {
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--g7-primary);
    background-color: var(--g7-primary-glow);
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--g7-text-dark);
}

.section-bar {
    width: 50px;
    height: 4px;
    background: var(--g7-gradient);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    max-width: 720px;
    line-height: 1.7;
    color: var(--g7-text-muted);
}

/* ---------------------------------------------------- */
/* LIGHT MENU / NAVBAR */
/* ---------------------------------------------------- */
.g7-navbar-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--g7-border-color);
    transition: all 0.3s ease;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.g7-navbar-wrapper.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid var(--g7-border-color);
    padding: 0.4rem 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--g7-text-slate) !important;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--g7-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--g7-gradient);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-consultation {
    background: var(--g7-gradient) !important;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease !important;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
    color: #FFFFFF !important;
}

/* Custom Hamburger menu toggle (Dark color for light theme) */
.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.navbar-toggler-icon-custom span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--g7-text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ---------------------------------------------------- */
/* HERO SECTION (LIGHT) */
/* ---------------------------------------------------- */
.g7-hero-section {
    background-color: var(--g7-light-bg);
    min-height: 90vh;
    padding-top: 40px;
    padding-bottom: 30px;
}

.badge-seo {
    background-color: var(--g7-primary-glow);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--g7-primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--g7-text-dark);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--g7-text-slate);
    line-height: 1.4;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--g7-text-muted);
}

.btn-hero-lg {
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-lg.btn-primary {
    background: var(--g7-gradient);
    border: none;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.3);
}

.btn-hero-lg.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-hero-lg.btn-outline-light {
    border: 1px solid var(--g7-border-color);
    color: var(--g7-text-dark);
    background-color: #FFFFFF;
}

.btn-hero-lg.btn-outline-light:hover {
    transform: translateY(-3px);
    background-color: var(--g7-light-alt);
    border-color: #CBD5E1;
    color: var(--g7-text-dark);
}

.hero-trust-list {
    margin-top: 2rem;
}

.trust-stars {
    color: #F59E0B;
    font-size: 1.1rem;
}

.trust-text {
    font-weight: 600;
    color: var(--g7-text-slate);
}

/* Beautiful Hero Poster Card Graphics */
.hero-visual-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--g7-border-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.hero-visual-card:hover {
    transform: translateY(-5px);
}

.visual-banner-graphic {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.visual-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
}

.visual-circle-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.visual-badge-roas {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    z-index: 10;
}

.roas-check {
    background-color: var(--g7-primary-glow);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* ---------------------------------------------------- */
/* SERVICES SECTION */
/* ---------------------------------------------------- */
.g7-services-section {
    background-color: var(--g7-light-alt);
    /* border-top: 1px solid var(--g7-border-color); */
    /* border-bottom: 1px solid var(--g7-border-color); */
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    border-color: rgba(37, 99, 235, 0.25);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--g7-primary-glow);
    color: var(--g7-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--g7-gradient);
    color: #FFFFFF !important;
    transform: rotate(5deg) scale(1.05);
}

.service-card-title {
    color: var(--g7-text-dark);
}

.service-card-link {
    transition: all 0.2s ease;
}

.service-card:hover .service-card-link {
    color: var(--g7-primary) !important;
}

/* ---------------------------------------------------- */
/* WHY CHOOSE US SECTION */
/* ---------------------------------------------------- */
.g7-why-choose-us {
    background-color: var(--g7-light-bg);
}

.why-card {
    background-color: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.why-icon {
    width: 45px;
    height: 45px;
    background-color: var(--g7-primary-glow);
    color: var(--g7-primary);
}

.why-card:hover .why-icon {
    background: var(--g7-gradient);
    color: #FFFFFF !important;
}

.why-card-title {
    color: var(--g7-text-dark);
}

/* ---------------------------------------------------- */
/* PORTFOLIO SECTION */
/* ---------------------------------------------------- */
.g7-portfolio-section {
    background-color: var(--g7-light-alt);
    /* border-top: 1px solid var(--g7-border-color); */
    /* border-bottom: 1px solid var(--g7-border-color); */
}

.btn-filter {
    background-color: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    color: var(--g7-text-slate);
    font-size: 0.9rem;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--g7-gradient) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.portfolio-card {
    border: 1px solid var(--g7-border-color);
}

.portfolio-placeholder-graphic {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #7C3AED 100%) !important;
    height: 250px;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-placeholder-graphic {
    transform: scale(1.05);
}

.portfolio-hover-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.portfolio-project-title {
    font-size: 1.15rem;
}

.portfolio-hover-overlay .btn-primary {
    background: var(--g7-gradient);
    border: none;
}

/* ---------------------------------------------------- */
/* ABOUT US SECTION */
/* ---------------------------------------------------- */
.g7-about-section {
    background-color: var(--g7-light-bg);
}

.about-card-desc {
    color: #fff;
}

.highlight-item {
    font-size: 0.95rem;
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.1rem;
}

/* About Visual Panel Graphic (from image) */
.about-visual-panel {
    background-color: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.about-banner-top {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    padding: 2rem 1.5rem;
    color: #FFFFFF;
}

.about-brand-tag {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
}

.about-contact-bar {
    background-color: #10B981;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ---------------------------------------------------- */
/* BLUE GRADIENT STATS COUNTERS */
/* ---------------------------------------------------- */
.g7-counter-section {
    background: var(--g7-gradient) !important;
    border: none !important;
    padding: 4rem 0 !important;
}

.stat-box {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF !important;
}

.stat-number {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #FFFFFF !important;
}

.stat-plus {
    color: #FFFFFF !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ---------------------------------------------------- */
/* TESTIMONIALS SECTION */
/* ---------------------------------------------------- */
.g7-testimonials-section {
    background-color: var(--g7-light-alt);
    /* border-top: 1px solid var(--g7-border-color); */
    /* border-bottom: 1px solid var(--g7-border-color); */
}

.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid var(--g7-border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.04);
}

.stars-rating {
    color: #F59E0B;
    font-size: 0.95rem;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.2);
}

.quote-text {
    font-style: normal;
    color: var(--g7-text-slate);
    font-size: 1rem;
}

/* ---------------------------------------------------- */
/* FINAL CTA SECTION (GRADIENT CARD) */
/* ---------------------------------------------------- */
.g7-final-cta-section {
    background-color: var(--g7-light-bg);
}

.cta-gradient-card {
    background: var(--g7-gradient);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
    border: none;
    overflow: hidden;
}

.btn-cta-white {
    background-color: #FFFFFF !important;
    color: var(--g7-primary) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease !important;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
    background-color: var(--g7-light-alt) !important;
}

/* ---------------------------------------------------- */
/* DARK FOOTER */
/* ---------------------------------------------------- */
.g7-main-footer {
    background-color: var(--g7-dark-bg) !important;
    z-index: 1;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--g7-primary) !important;
    background-color: var(--g7-primary);
    color: #FFFFFF !important;
}

.footer-links li a {
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--g7-highlight) !important;
    padding-left: 5px;
}

/* Persistent Sticky WhatsApp & Back to Top Buttons */
.g7-sticky-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    font-size: 1.85rem;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
}

.g7-sticky-whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

.g7-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--g7-gradient);
    color: #FFFFFF !important;
    border-radius: 50%;
    font-size: 1.35rem;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g7-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.g7-back-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3) !important;
}

/* ---------------------------------------------------- */
/* MODALS (ENQUIRY POPUP) */
/* ---------------------------------------------------- */
.ShowcaseModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.Formoutliner {
    background-color: var(--g7-dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalEntrance 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.Formoutliner .form-control {
    transition: all 0.3s ease;
}

.Formoutliner .form-control:focus {
    background-color: rgba(30, 41, 59, 0.9);
    border-color: var(--g7-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    color: #FFFFFF;
}

/* ---------------------------------------------------- */
/* ANIMATIONS DEFINITIONS */
/* ---------------------------------------------------- */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes modalEntrance {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
}

/* ================================================================
   █   G7 DIGITALX - EXTERNALIZED MODULAR CLASSES
   ================================================================ */

/* Generic Components & Badges */
.g7-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563EB !important;
    background-color: rgba(37, 99, 235, 0.08) !important;
    border: 1px solid rgba(37, 99, 235, 0.15) !important;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
}

.g7-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.g7-section-desc {
    font-size: 1.1rem;
    max-width: 650px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    color: #64748B;
}

/* Header & Menu Top bar */
.g7-top-bar {
    height: 6px;
    background-color: #0F172A;
}

.brand-logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-logo-text {
    font-size: 1.35rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.brand-logo-text .text-blue {
    color: #2563EB;
}

.brand-logo-text .text-green {
    color: #10B981;
}

.btn-get-quote {
    background-color: #2563EB;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.btn-get-quote:hover {
    background-color: #1d4ed8;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Hero Section */
.g7-glow-banner-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.g7-glow-banner-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

/* Dotted Grid Background Layer */
.g7-banner-dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(37, 99, 235, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Floating Geodesic Wireframe Globe on the Right */
.g7-banner-geodesic-right {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
    animation: g7GlobeRotateRight 70s linear infinite;
}

/* Floating Geodesic Wireframe Globe on the Left */
.g7-banner-geodesic-left {
    position: absolute;
    left: -80px;
    top: 15%;
    width: 240px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    animation: g7GlobeRotateLeft 55s linear infinite;
}

.g7-banner-geodesic-right svg,
.g7-banner-geodesic-left svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes g7GlobeRotateRight {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

@keyframes g7GlobeRotateLeft {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@media (max-width: 991.98px) {
    .g7-banner-geodesic-right {
        right: -150px;
        width: 280px;
        opacity: 0.4;
    }
    .g7-banner-geodesic-left {
        left: -100px;
        width: 160px;
        opacity: 0.3;
    }
}


.badge-seo-award {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563EB;
    background-color: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.btn-hero-primary {
    background-color: #2563EB;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-hero-outline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid #CBD5E1;
    color: #475569 !important;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: #94A3B8;
    background-color: #F8FAFC;
    transform: translateY(-2px);
}

.hero-image-card {
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-image-card:hover {
    transform: translateY(-5px);
}

.hero-roi-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 10;
    max-width: 220px;
    font-family: 'Inter', sans-serif;
    border-radius: 16px !important;
    background-color: #FFFFFF;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #F1F5F9 !important;
    transition: all 0.3s ease;
}

.hero-roi-card:hover {
    transform: scale(1.05);
}

.hero-roi-icon {
    width: 40px;
    height: 40px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services and Why Choose Us Sections */
.service-card, .why-card {
    border-radius: 16px !important;
    border: 1px solid #F1F5F9 !important;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05) !important;
}

.service-card:hover, .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(37, 99, 235, 0.25) !important;
}

.service-icon, .why-icon {
    width: 50px;
    height: 50px;
    background-color: #2563EB !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--g7-gradient) !important;
    color: #FFFFFF !important;
}

.service-card-title, .why-card-title {
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 700;
}

.service-card-text, .why-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569 !important;
}

/* Stats Counter Section */
.g7-counter-section {
    background-color: var(--g7-dark-bg) !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px) !important;
    background-size: 20px 20px !important;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08) !important; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; */
    padding: 6rem 0 !important;
}

.g7-counter-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.g7-counter-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.stat-box {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    z-index: 1;
}

.stat-box:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15) !important;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon-wrapper {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35) !important;
}

.stat-number {
    color: #FFFFFF !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8rem;
    letter-spacing: -1px;
}

.stat-plus {
    color: #3B82F6 !important;
    font-weight: 800 !important;
    font-size: 2.4rem;
}

.stat-label {
    color: #94A3B8 !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Swiper Pagination Styling (Premium Pill Indicators) */
.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #CBD5E1 !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin: 0 5px !important;
    border: none !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background-color: #2563EB !important;
}

.testimonial-swiper {
    padding: 20px;
    padding-bottom: 3.5rem !important;
}


/* Portfolio Section */
.portfolio-card {
    height: 380px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.portfolio-card.p-grad-1 { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); }
.portfolio-card.p-grad-2 { background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%); }
.portfolio-card.p-grad-3 { background: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%); }
.portfolio-card.p-grad-4 { background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%); }
.portfolio-card.p-grad-5 { background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%); }
.portfolio-card.p-grad-6 { background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%); }

.portfolio-card:hover.p-grad-1 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2); }
.portfolio-card:hover.p-grad-2 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2); }
.portfolio-card:hover.p-grad-3 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
.portfolio-card:hover.p-grad-4 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2); }
.portfolio-card:hover.p-grad-5 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2); }
.portfolio-card:hover.p-grad-6 { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }

.portfolio-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    z-index: 2;
}

/* About Us Section Infographic Brochure */
.g7-glow-about-top {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.g7-glow-about-bottom {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.infographic-outer-wrapper {
    background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 50%, #10B981 100%);
    padding: 3px;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.infographic-outer-wrapper:hover {
    transform: translateY(-5px);
}

.infographic-inner-card {
    border-radius: 21px;
    min-height: 540px;
    background-color: #FFFFFF;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-logo-text {
    font-size: 0.6rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: 0.5px;
    line-height: 1;
}

.info-logo-sub {
    font-size: 0.4rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.1;
    margin-top: 2px;
}

.info-header-tag {
    font-size: 0.72rem;
    color: #64748B;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.info-header-title {
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-weight: 800;
}

.info-header-line {
    height: 2px;
    width: 25px;
    background: linear-gradient(to right, #2563EB, #10B981);
    margin: 3px 0;
}

.info-header-desc {
    font-size: 0.48rem;
    line-height: 1.2;
}

.info-services-badge {
    background-color: #0F172A;
    font-size: 0.48rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    width: max-content;
    font-family: 'Sora', sans-serif;
    color: #FFFFFF;
}

.info-service-icon-box {
    width: 13px;
    height: 13px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-service-title {
    color: #0F172A;
    font-size: 0.46rem;
    display: block;
    font-weight: 700;
    line-height: 1;
}

.info-service-desc {
    font-size: 0.38rem;
    line-height: 1;
    display: block;
    margin-top: 1px;
}

.info-marketer-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 290px;
}

.info-marketer-img {
    position: absolute;
    height: auto;
    width: 112%;
    bottom: 0;
    right: -15px;
    z-index: 1;
    max-height: 285px;
    object-fit: contain;
    pointer-events: none;
}

.info-indicators-row {
    font-family: 'Sora', sans-serif;
    background-color: #F8FAFC !important;
    border: 1px solid #F1F5F9 !important;
    border-radius: 8px;
    padding: 0.4rem 0.2rem;
}

.info-indicator-text {
    font-size: 0.4rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: 1px;
}

.info-indicator-text.text-green {
    color: #10B981;
}

.info-whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF !important;
    font-size: 0.62rem;
    font-weight: 700;
    width: max-content;
    font-family: 'Sora', sans-serif;
    transition: all 0.3s ease;
}

.info-whatsapp-btn:hover {
    background-color: #20BA5A;
}

.info-footer-bar {
    font-family: 'Sora', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.52rem;
    font-weight: 700;
}

.about-desc {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #475569;
    font-family: 'Inter', sans-serif;
}

.about-highlights {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
}

.about-highlight-dot {
    color: #2563EB;
    font-size: 0.8rem;
}

.btn-about-consultation {
    background-color: #2563EB;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.btn-about-consultation:hover {
    background-color: #1d4ed8;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Testimonials Section */
.testimonial-card {
    border-radius: 16px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    min-height: 250px;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155 !important;
}

.client-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: #0F172A;
}

.client-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748B;
}

/* Final CTA Section */
.cta-gradient-card {
    border-radius: 24px !important;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15) !important;
    padding: 3rem !important;
}

.cta-glow-overlay {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-size: 2.8rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.cta-desc {
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 1.8rem auto;
}

.btn-cta-whatsapp {
    background-color: #FFFFFF !important;
    color: #2563EB !important;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    transform: scale(1.05);
}

/* Footer Section */
.g7-main-footer {
    background-color: #0F172A !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-family: 'Inter', sans-serif;
    padding: 5.5rem 0 2.5rem 0 !important;
    overflow: hidden;
}

.g7-glow-footer {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255,255,255,0) 70%);
    bottom: -150px;
    left: 2%;
    pointer-events: none;
    z-index: 0;
}

.footer-logo-box {
    padding: 0.5rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo-text {
    font-size: 1.35rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.footer-logo-text .text-blue { color: #2563EB; }
.footer-logo-text .text-green { color: #10B981; }

.footer-desc {
    font-size: 0.92rem;
    color: #94A3B8 !important;
    line-height: 1.65;
    margin-top: 0.5rem;
}

.footer-socials {
    margin-top: 1.5rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
    background-color: #2563EB;
    border-color: #2563EB !important;
    color: #FFFFFF !important;
    transform: translateY(-4px) rotate(4deg);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.footer-section-title {
    color: #FFFFFF !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #2563EB 0%, #10B981 100%);
    border-radius: 2px;
}

.footer-links {
    font-size: 0.92rem;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    color: #94A3B8;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2563EB !important;
}

.footer-link-arrow {
    font-size: 0.65rem;
    color: #2563EB;
    margin-right: 0px;
    width: 0px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover .footer-link-arrow {
    width: 10px;
    margin-right: 6px;
    opacity: 1;
}

.footer-contact-list {
    font-size: 0.92rem;
}

.footer-contact-list li {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-contact-list li:hover {
    transform: translateX(4px);
}

.footer-contact-list a {
    color: #94A3B8;
    transition: all 0.3s ease;
}

.footer-contact-list a:hover {
    color: #2563EB !important;
}

.footer-contact-icon {
    color: #2563EB;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: #3B82F6;
    border-color: rgba(37, 99, 235, 0.2);
}

.footer-contact-text {
    color: #94A3B8;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 2rem;
    margin-top: 2.5rem;
}

.footer-copyright-text {
    color: #64748B;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-copyright-text .text-blue { color: #2563EB; font-weight: 600; }
.footer-copyright-text .text-green { color: #10B981; font-weight: 600; }


/* Enquiry Modal Form */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.height-80 {
    min-height: 90px;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid var(--g7-border-color);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-visual-panel {
        margin-top: 3rem;
    }
    
    .Formoutliner {
        overflow-y: auto;
        max-height: 90vh;
    }
    
    #EnquiryContactSection {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem !important;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
        .g7-section-title {
        font-size: 1.8rem !important;
    }
}

/* Why Choose Us Light Grid Styles */
.g7-why-choose-us {
    background-color: #FFFFFF !important;
    background-image: none !important;
    background-size: auto !important;
    padding: 5rem 0 !important;
}

.g7-why-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.g7-why-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.why-main-title {
    font-size: 2.8rem;
    font-family: 'Sora', sans-serif !important;
    letter-spacing: -1px;
    line-height: 1.25;
}

.review-avatar-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.avatar-group {
    display: flex;
}

.avatar-item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-group:hover .avatar-item {
    margin-left: -4px;
}

.stars-rating-reviews {
    font-size: 0.85rem;
}

.text-green-glow {
    color: #84CC16;
    text-shadow: 0 0 8px rgba(132, 204, 22, 0.8);
}

.reviews-label {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Feature Grid Card Styling - Light Theme */
.feature-grid-card {
    border-radius: 16px !important;
    border: 1.5px solid #E2E8F0 !important;
    background: #F8FAFC !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 1;
    min-height: 120px;
}

.feature-grid-card:hover {
    transform: translateY(-5px) !important;
    background: #FFFFFF !important;
    border-color: var(--g7-primary) !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12) !important;
}

.feature-card-icon {
    color: var(--g7-primary) !important;
    transition: all 0.3s ease;
    filter: none !important;
}

.feature-grid-card:hover .feature-card-icon {
    transform: scale(1.15);
    filter: none !important;
}

.feature-card-label {
    color: #334155 !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* Our Process Steps Section */
.g7-process-section {
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    background-color: #F8FAFC !important;
}

.g7-glow-process {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, rgba(255,255,255,0) 70%);
    top: 20%;
    right: 5%;
    pointer-events: none;
    z-index: 0;
}

.process-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-number {
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.step-title {
    font-size: 1.8rem;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569 !important;
}

.process-visual-card {
    min-height: 280px;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

/* Step 1 Visual Widgets */
.stat-floating-widget {
    width: 230px;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
}

.stat-floating-widget:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.process-step-row:nth-child(odd) .stat-floating-widget {
    top: 35px;
    left: 35px;
}

.process-step-row:nth-child(even) .stat-floating-widget {
    bottom: 35px;
    left: 35px;
}

.bg-success-light {
    background-color: #D1FAE5 !important;
}

.bg-primary-light {
    background-color: #DBEAFE !important;
}

.mascot-wrapper {
    bottom: 35px;
    right: 45px;
    z-index: 2;
}

.mascot-wrapper-right {
    top: 35px;
    right: 45px;
    z-index: 2;
}

.mascot-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mascot-circle:hover {
    transform: scale(1.1) rotate(6deg);
}

.animate-bounce {
    animation: bounceEffect 2s infinite;
}

@keyframes bounceEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Step 2 Floating Items */
.laptop-mascot-container {
    z-index: 2;
}

.mascot-laptop-head {
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.floating-item {
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.item-lightbulb {
    top: 45px;
    left: 85px;
    animation: floatItem 3.2s ease-in-out infinite alternate;
}

.item-target {
    top: 55px;
    right: 85px;
    animation: floatItem 3.2s ease-in-out infinite 0.6s alternate;
}

.item-check {
    bottom: 55px;
    left: 105px;
    animation: floatItem 3.2s ease-in-out infinite 1.2s alternate;
}

.item-rocket {
    bottom: 45px;
    right: 105px;
    animation: floatItem 3.2s ease-in-out infinite 1.8s alternate;
}

@keyframes floatItem {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Responsive adjustment for alternating grids */
@media (max-width: 991.98px) {
    .process-visual-card {
        min-height: 250px;
    }
    
    .stat-floating-widget {
        width: 180px;
        padding: 0.8rem !important;
    }
    
    .mascot-circle {
        width: 55px;
        height: 55px;
    }
    
    .floating-item {
        width: 36px !important;
        height: 36px !important;
    }
    
    .item-lightbulb { left: 45px; top: 35px; }
    .item-target { right: 45px; top: 45px; }
    .item-check { left: 55px; bottom: 45px; }
    .item-rocket { right: 55px; bottom: 35px; }
    
    .why-main-title {
        font-size: 2.2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* MOCKUP MATCHING DESIGN RELEASE PACK */
/* ---------------------------------------------------- */

/* About Section 3-Column Cards */
.about-card-dark {
    position: relative;
    overflow: hidden;
    background-color: #090E1A !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
}

/* Beautiful Top-Right Cyan/Blue Radial Gradient Glow Blob */
.about-card-dark .card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(59, 130, 246, 0.1) 40%, rgba(9, 14, 26, 0) 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.about-brand-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #C0FF35;
    position: relative;
    z-index: 2;
}

.text-lime-green {
    color: #C0FF35 !important;
}

/* Simple, Elegant White Checkmarks Next to Text (Matching Mockup) */
.about-checklist .checklist-icon {
    color: #C0FF35;
    font-size: 0.95rem;
    background: none !important;
    width: auto !important;
    height: auto !important;
    margin-right: 8px !important;
    display: inline-flex;
}

.about-checklist .checklist-text {
    font-weight: 500;
}

.about-card-image img {
    transition: all 0.5s ease;
}

.about-card-image:hover img {
    transform: scale(1.05);
}

.about-card-light {
    background-color: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.about-metric {
    line-height: 1;
}

.metric-number {
    font-size: 4.5rem;
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    letter-spacing: -2px;
}

/* Color matched to dark grey (not blue!) */
.metric-percent {
    font-size: 2.2rem;
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    font-weight: 700;
    margin-left: 2px;
}

.about-metric-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.about-divider {
    border-top: 1px solid #E2E8F0 !important;
    opacity: 1;
}

.about-cta-row .btn-primary-pill {
    background-color: #2563EB !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    padding: 0.9rem 2.2rem !important;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
}

.about-cta-row .btn-primary-pill:hover {
    transform: translateY(-2px);
    background-color: #1D4ED8 !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35) !important;
}

/* Solid Blue Circle Arrow Button with White Icon (Matching Mockup) */
.btn-arrow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2563EB !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2) !important;
}

.btn-arrow-circle:hover {
    background-color: #1D4ED8 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) rotate(45deg);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3) !important;
}

.about-logo-svg {
    width: 48px;
    height: 48px;
}

.btn-arrow-circle span {
    font-size: 1.3rem;
    font-weight: 700;
    transform: translateY(-1px);
    display: inline-block;
}

/* ---------------------------------------------------- */
/* Slanted Scrolling Ribbon Bands */
/* ---------------------------------------------------- */
.g7-marquee-ribbon-wrapper {
    height: 220px;
    /* background-color: #0F172A; */
    z-index: 10;
    position: relative;
    margin-top: -25px;
    margin-bottom: 35px;
}

.marquee-stripe {
    width: 125%;
    left: -12.5%;
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}

.stripe-blue {
    background-color: #2563EB;
    transform: rotate(2deg);
    top: 40px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.stripe-lime {
    background-color: #C0FF35;
    transform: rotate(356deg);
    top: 50px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(192, 255, 53, 0.25);
}

.marquee-track {
    display: flex;
    animation: scrollLeft 22s linear infinite;
}

.track-reverse {
    animation: scrollRight 22s linear infinite;
}

.marquee-item {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
}

.stripe-blue .marquee-item {
    color: #FFFFFF;
}

.stripe-lime .marquee-item {
    color: #0F172A;
}

.marquee-separator {
    font-size: 0.8rem;
    margin-right: 1.2rem;
    opacity: 0.5;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ---------------------------------------------------- */
/* Screenshot 3 Dark Process Steps */
/* ---------------------------------------------------- */
.g7-process-section {
    background-color: #0B1120 !important;
    padding: 8.5rem 0 6rem 0 !important;
    border: none !important;
}

.g7-process-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.05) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.g7-process-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.process-main-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
    line-height: 1.25;
}

.text-lime-green {
    color: #A3E635 !important;
}

.small-asterisk {
    color: #A3E635;
    font-size: 0.8rem;
}

.process-main-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94A3B8 !important;
}

.process-step-card {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    min-height: 380px;
    padding: 2.8rem 2.4rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.process-step-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(163, 230, 53, 0.25) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 35px rgba(163, 230, 53, 0.08) !important;
}

.step-card-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-card-arrow {
    background-color: #A3E635;
    color: #0F172A !important;
    border-color: #A3E635;
    transform: rotate(45deg);
}

.step-card-arrow span {
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(-1px);
    display: inline-block;
}

.step-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8 !important;
}

.step-small-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.step-big-number {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
}

.lime-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 75px;
    background-color: #A3E635;
    border-top-left-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step-card:hover .lime-accent-box {
    background-color: #BEF264;
    transform: scale(1.05);
    box-shadow: -5px -5px 25px rgba(163, 230, 53, 0.2);
}

/* Accent grid circle highlights */
.outline-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #0F172A;
}

.outline-stack-layer {
    height: 3px;
    background-color: #0F172A;
    border-radius: 2px;
}

.outline-cylinder-ring {
    border-radius: 50%;
    border: 1.5px solid #0F172A;
}

/* ---------------------------------------------------- */
/* Giant Let's Work Together CTA */
/* ---------------------------------------------------- */
.g7-final-cta-section {
    background-color: #060913 !important;
    padding: .5rem 0 !important;
    position: relative;
    overflow: hidden;
}

.g7-final-cta-section .g7-badge {
    letter-spacing: 2px !important;
}

/* Beautiful Horizontal/Vertical Graph Grid Lines (Matching Mockup) */
.g7-cta-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.9;
}

.g7-cta-glow-center {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 255, 53, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Floating Geodesic Wireframe Globe on the Left */
.g7-geodesic-globe-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    animation: rotateGlobe 45s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.cta-giant-text {
    font-size: 10rem;
    letter-spacing: -3px;
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.cta-floating-btn-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Soft, Glowing Neon Green Circle Button with NO hard borders (Matching Mockup) */
.cta-neon-circle-btn {
    width: 145px;
    height: 145px;
    background-color: #C0FF35 !important;
    color: #0F172A !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 15px 40px rgba(192, 255, 53, 0.45) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-neon-circle-btn:hover {
    transform: scale(1.1) rotate(6deg) !important;
    background-color: #D4FF3B !important;
    box-shadow: 0 20px 50px rgba(192, 255, 53, 0.6) !important;
}

.cta-neon-circle-btn .btn-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .cta-giant-text {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .cta-neon-circle-btn {
        width: 110px;
        height: 110px;
    }
}

/* ---------------------------------------------------- */
/* Screenshot 2 'Proof in Numbers' Stats */
/* ---------------------------------------------------- */
.g7-proof-numbers-section {
    border-bottom: 1px solid #F1F5F9;
}

.proof-container {
    border-radius: 32px !important;
    background: #FFFFFF !important;
}

.proof-main-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.metric-circle-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.circular-metric-wrapper:hover .metric-circle-ring {
    transform: scale(1.05);
    border-color: #2563EB;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.metric-circle-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 99, 235, 0.15);
    pointer-events: none;
}

.metric-number-group {
    line-height: 1;
}

.metric-number-group .metric-number {
    font-size: 2.5rem;
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    letter-spacing: -1px;
}

.metric-number-group .metric-percent {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563EB;
}

.small-metric-arrow {
    font-size: 0.8rem;
    animation: bounceEffect 2s infinite;
}

.metric-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #64748B !important;
    font-weight: 600;
}

.proof-highlight-card {
    background-color: #F5F3FF !important; /* Soft Lavender purple */
    border: 1px solid #DDD6FE !important;
    min-height: 200px;
}

.highlight-number-group {
    line-height: 1;
}

.highlight-number {
    font-size: 3.2rem;
    font-family: 'Sora', sans-serif;
    color: #0F172A;
    letter-spacing: -1.5px;
}

.highlight-plus {
    font-size: 2.2rem;
    color: #7C3AED;
    font-weight: 800;
}

.highlight-label {
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.btn-dark-pill {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    border: none !important;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-dark-pill:hover {
    background-color: #1E293B !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25) !important;
}

/* ---------------------------------------------------- */
/* Premium Light-Themed Footer (Mode 2) */
/* ---------------------------------------------------- */
.g7-dark-footer {
    background-color: #FFFFFF !important;
    color: #334155 !important;
    font-family: 'Inter', sans-serif;
    border-color: #E2E8F0 !important;
}

.g7-dark-footer .footer-grid-header {
    font-family: 'Sora', sans-serif;
    color: #64748B !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.8px;
}

.g7-dark-footer .footer-grid-header .text-lime-green {
    color: #22C55E !important;
}

/* Premium Footer Grid Item Badges */
.g7-dark-footer .footer-grid-item {
    background-color: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.g7-dark-footer .footer-grid-item:hover {
    background-color: #FFFFFF !important;
    border-color: #2563EB !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05) !important;
}

.g7-dark-footer .footer-item-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(37, 99, 235, 0.05);
    color: #64748B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.g7-dark-footer .footer-grid-item:hover .footer-item-icon {
    background-color: #2563EB;
    color: #FFFFFF !important;
}

.g7-dark-footer .footer-item-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569 !important;
    transition: all 0.3s ease;
}

.g7-dark-footer .footer-grid-item:hover .footer-item-text {
    color: #0F172A !important;
}


.g7-dark-footer .footer-horizontal-links a {
    color: #1E293B !important;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.g7-dark-footer .footer-horizontal-links a:hover {
    color: var(--g7-primary) !important;
}

.g7-dark-footer .footer-copyright-group {
    font-size: 0.85rem;
    color: #94A3B8 !important;
}

.g7-dark-footer .policy-link {
    color: #94A3B8 !important;
    transition: all 0.25s ease;
}

.g7-dark-footer .policy-link:hover {
    color: var(--g7-primary) !important;
}

.g7-dark-footer .footer-social-icons a {
    color: #64748B !important;
    transition: all 0.25s ease;
}

.g7-dark-footer .footer-social-icons a:hover {
    color: var(--g7-primary) !important;
    transform: translateY(-3px);
}

/* ---------------------------------------------------- */
/* Concentric Ripple Animation (Hero Banner Mode 2) */
/* ---------------------------------------------------- */
.g7-ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.g7-ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.04);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    animation: rippleWaveAnimation 16s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    opacity: 0;
    will-change: transform, opacity;
}

.g7-ripple-ring.ring-1 {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.g7-ripple-ring.ring-2 {
    width: 400px;
    height: 400px;
    animation-delay: 4s;
}

.g7-ripple-ring.ring-3 {
    width: 400px;
    height: 400px;
    animation-delay: 8s;
}

.g7-ripple-ring.ring-4 {
    width: 400px;
    height: 400px;
    animation-delay: 12s;
}

@keyframes rippleWaveAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4.2);
        opacity: 0;
    }
}

/* ---------------------------------------------------- */
/* Founder Bold Quote Section Styles (Mode 2) */
/* ---------------------------------------------------- */
.g7-quote-section {
    background-color: #FFFFFF !important;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
    padding: 4rem 0;
}

.g7-quote-ripple-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.g7-quote-content-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}

.g7-founder-quote {
    font-size: clamp(1.4rem, 1.2vw, 1.35rem);
    font-weight: 500;
    color: #64748B;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.g7-founder-quote strong {
    color: #0F172A;
    font-weight: 700;
}

/* Typing Animation Blinking Cursor styling */
.g7-founder-quote.typing-active::after {
    content: '|';
    display: inline-block;
    color: #2563EB;
    animation: g7CursorBlink 0.8s steps(2, start) infinite;
    margin-left: 4px;
    font-weight: 300;
}

@keyframes g7CursorBlink {
    to { opacity: 0; }
}


.quote-author-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 2.8rem;
}

.quote-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-author-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.5px;
}

/* ---------------------------------------------------- */
/* Screenshot 5 Premium Services Layout (Mode 2) */
/* ---------------------------------------------------- */
.services-section-premium {
    background-color: #060913 !important;
    padding: 7.5rem 0 6.5rem 0 !important;
    position: relative;
    overflow: hidden;
}

.services-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.04) 0%, rgba(37, 99, 235, 0.02) 50%, rgba(255, 255, 255, 0) 70%);
    top: 30%;
    left: 20%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.services-badge-green {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-badge-green .asterisk {
    color: #C0FF35;
    font-size: 0.75rem;
}

.services-main-title {
    font-size: 3.2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #FFFFFF !important;
}

.services-main-title .highlight-green {
    color: #C0FF35 !important;
}

.services-main-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94A3B8 !important;
}

.services-btn-all {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.85rem 2rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
}

.services-btn-all:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.services-btn-arrow {
    width: 48px;
    height: 48px;
    background-color: #C0FF35 !important;
    color: #0F172A !important;
    border-radius: 50% !important;
    border: none !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(192, 255, 53, 0.2) !important;
}

.services-btn-arrow:hover {
    transform: translateY(-2px) rotate(45deg);
    background-color: #BEF264 !important;
    box-shadow: 0 12px 24px rgba(192, 255, 53, 0.3) !important;
}

.services-btn-arrow span {
    font-weight: 700;
    transform: translateY(-1px);
    display: inline-block;
}

.services-card-premium {
    background-color: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 28px !important;
    padding: 2.8rem !important;
    min-height: 380px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.services-card-premium:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(192, 255, 53, 0.4) !important;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.services-card-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    border: 1.5px solid rgba(192, 255, 53, 0.2);
    background-color: rgba(192, 255, 53, 0.04);
}

.services-card-arrow-square {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.services-card-premium:hover .services-card-arrow-square {
    background-color: #C0FF35;
    color: #0F172A !important;
    border-color: #C0FF35;
    transform: rotate(45deg);
}

.services-card-arrow-square span {
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(-1px);
    display: inline-block;
}

.services-card-premium-title {
    font-size: 1.45rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.3;
}

.services-card-premium-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8 !important;
}

.services-footer-text {
    font-size: 1.05rem;
    color: #94A3B8 !important;
}

.services-footer-text .quote-link {
    color: #C0FF35 !important;
    transition: all 0.25s ease;
}

.services-footer-text .quote-link:hover {
    color: #BEF264 !important;
    text-shadow: 0 0 10px rgba(192, 255, 53, 0.4);
}

.services-dot-neon {
    width: 10px;
    height: 10px;
    background-color: #C0FF35;
    border-radius: 50%;
    box-shadow: 0 0 12px #C0FF35;
}

/* ================================================================
   PREMIUM ENQUIRY MODAL
   Split-panel: dark brand left + clean form right
   ================================================================ */

/* Overlay */
.g7-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.g7-modal-overlay.g7-modal-visible {
    display: flex;
    animation: g7ModalFadeIn 0.3s ease forwards;
}

@keyframes g7ModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Container */
.g7-modal-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 540px;
    max-height: 95vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
    animation: g7ModalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
}

@keyframes g7ModalSlideUp {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- LEFT PANEL ---- */
.g7-modal-left {
    width: 42%;
    flex-shrink: 0;
    background: linear-gradient(145deg, #090E1A 0%, #0F172A 55%, #1a1040 100%);
    padding: 3rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Animated glowing blobs */
.g7-modal-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: g7BlobFloat 6s ease-in-out infinite;
}

.g7-modal-blob-1 {
    width: 220px;
    height: 220px;
    background: rgba(37, 99, 235, 0.25);
    top: -40px;
    right: -40px;
    animation-delay: 0s;
}

.g7-modal-blob-2 {
    width: 180px;
    height: 180px;
    background: rgba(124, 58, 237, 0.2);
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

@keyframes g7BlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(10px, -12px) scale(1.05); }
}

/* Rotating Geodesic Wireframe Globe in modal background */
.g7-modal-geodesic-globe {
    position: absolute;
    left: -70px;
    bottom: -60px;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
    animation: g7ModalGlobeRotate 60s linear infinite;
}

@keyframes g7ModalGlobeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Content Premium Entrance Animations & Staggered Reveals */
.g7-modal-overlay.g7-modal-visible .g7-modal-left-content > * {
    animation: g7ModalItemReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.g7-modal-overlay.g7-modal-visible .g7-modal-right > * {
    animation: g7ModalItemReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes g7ModalItemReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.g7-modal-overlay.g7-modal-visible .g7-modal-left-content > *:nth-child(1) { animation-delay: 80ms; }
.g7-modal-overlay.g7-modal-visible .g7-modal-left-content > *:nth-child(2) { animation-delay: 140ms; }
.g7-modal-overlay.g7-modal-visible .g7-modal-left-content > *:nth-child(3) { animation-delay: 200ms; }
.g7-modal-overlay.g7-modal-visible .g7-modal-left-content > *:nth-child(4) { animation-delay: 260ms; }

.g7-modal-overlay.g7-modal-visible .g7-modal-right > *:nth-child(1) { animation-delay: 120ms; }
.g7-modal-overlay.g7-modal-visible .g7-modal-right > *:nth-child(2) { animation-delay: 180ms; }
.g7-modal-overlay.g7-modal-visible .g7-modal-right > *:nth-child(3) { animation-delay: 240ms; }

.g7-modal-left-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.g7-modal-left-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.g7-modal-accent {
    background: linear-gradient(90deg, #3B82F6, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g7-modal-left-sub {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* Trust items */
.g7-modal-trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.g7-modal-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #CBD5E1;
    font-size: 0.875rem;
}

.g7-modal-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #60A5FA;
}

/* Contact links */
.g7-modal-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: auto;
}

.g7-modal-contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #94A3B8 !important;
    text-decoration: none !important;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.g7-modal-contact-link:hover {
    color: #60A5FA !important;
}

.g7-modal-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- RIGHT PANEL ---- */
.g7-modal-right {
    flex: 1;
    background: #FFFFFF;
    padding: 2.5rem 2rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #E2E8F0 transparent;
}

.g7-modal-right::-webkit-scrollbar {
    width: 4px;
}
.g7-modal-right::-webkit-scrollbar-track { background: transparent; }
.g7-modal-right::-webkit-scrollbar-thumb { background: #E2E8F0; border-radius: 4px; }

/* Close Button */
.g7-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #E2E8F0 !important;
    background: #F8FAFC !important;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
    padding: 0;
    line-height: 1;
}

.g7-modal-close:hover {
    background: #EF4444 !important;
    border-color: #EF4444 !important;
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* Form Header */
.g7-modal-form-header {
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
}

.g7-modal-form-badge {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--g7-primary);
    background: var(--g7-primary-glow);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.g7-modal-form-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.g7-modal-form-sub {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

/* Fields */
.g7-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.g7-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.g7-field-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    font-family: 'Sora', sans-serif;
}

.g7-field-inner {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.g7-field-inner:focus-within {
    border-color: var(--g7-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #FFFFFF;
}

.g7-field-inner-textarea {
    align-items: flex-start;
}

.g7-field-icon {
    padding: 0 0.9rem;
    color: #94A3B8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.g7-field-icon-top {
    padding-top: 0.85rem;
    align-items: flex-start;
}

.g7-field-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.7rem 0.75rem 0.7rem 0 !important;
    font-size: 0.875rem;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.g7-field-input::placeholder {
    color: #94A3B8;
}

.g7-field-textarea {
    resize: none;
    padding-top: 0.75rem !important;
    min-height: 90px;
}

/* Submit Button */
.g7-modal-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: var(--g7-gradient);
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.25rem;
}

.g7-modal-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.g7-modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.g7-modal-submit-btn:hover::before {
    opacity: 1;
}

.g7-modal-submit-btn:active {
    transform: translateY(0);
}

.g7-modal-submit-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.g7-modal-submit-btn:hover .g7-modal-submit-icon {
    transform: translateX(3px);
}

/* Custom Dropdown Component Styling */
.g7-dropdown {
    position: relative;
    width: 100%;
}

.g7-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    cursor: pointer;
    font-size: 0.875rem;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    user-select: none;
}

.g7-dropdown-trigger:hover {
    border-color: var(--g7-primary);
    background: #FFFFFF;
}

.g7-dropdown.active .g7-dropdown-trigger {
    border-color: var(--g7-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #FFFFFF;
}

.g7-dropdown-text.g7-is-placeholder {
    color: #94A3B8;
}

.g7-dropdown-arrow {
    transition: transform 0.2s ease;
}

.g7-dropdown.active .g7-dropdown-arrow {
    transform: rotate(180deg);
}

.g7-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    max-height: 240px;
    overflow-y: auto;
    display: none;
    padding: 0.5rem 0;
}

.g7-dropdown.active .g7-dropdown-menu {
    display: block;
    animation: g7DropdownFadeIn 0.2s ease forwards;
}

@keyframes g7DropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.g7-dropdown-item {
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
}

.g7-dropdown-item:hover {
    background-color: var(--g7-primary-glow);
    color: var(--g7-primary);
}

.g7-dropdown-item.selected {
    background-color: var(--g7-primary-glow);
    color: var(--g7-primary);
    font-weight: 600;
}

/* Loading state */
.g7-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--g7-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.g7-modal-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(37, 99, 235, 0.2);
    border-top-color: var(--g7-primary);
    border-radius: 50%;
    animation: g7Spin 0.75s linear infinite;
}

@keyframes g7Spin {
    to { transform: rotate(360deg); }
}

/* Success state */
.g7-modal-success {
    text-align: center;
    padding: 2rem 1rem;
    animation: g7ModalFadeIn 0.4s ease forwards;
}

.g7-modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

/* Error state */
.g7-modal-error {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #334155;
    animation: g7ModalFadeIn 0.4s ease forwards;
}

.g7-modal-error-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Privacy note */
.g7-modal-privacy {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #94A3B8;
    margin-top: 0.9rem;
    margin-bottom: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 767.98px) {
    .g7-modal-container {
        flex-direction: column;
        max-height: 92vh;
        border-radius: 20px;
    }

    .g7-modal-right {
        padding: 2rem 1.5rem 1.5rem;
    }

    .g7-modal-form-title {
        font-size: 1.35rem;
    }
}

/* ================================================================
   CORE FEATURES / WHY-US SECTION - LIGHT THEME
   ================================================================ */
.g7-why-choose-us {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.g7-why-glow-1,
.g7-why-glow-2 {
    display: none; /* hide dark glows on light bg */
}

/* Feature Grid Cards - Light Theme */
.feature-grid-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

.feature-grid-card:hover {
    background: #FFFFFF;
    border-color: var(--g7-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.feature-card-icon {
    color: var(--g7-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-grid-card:hover .feature-card-icon {
    transform: scale(1.15);
}

.feature-card-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #334155;
    line-height: 1.3;
}

/* Avatar group */
.avatar-group {
    gap: 0;
}

.avatar-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
    font-size: 0.75rem;
}

.avatar-item:first-child {
    margin-left: 0;
}

/* ================================================================
   FOOTER - LIGHT THEME LINK CLASSES
   ================================================================ */
.footer-grid-link {
    color: #475569;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-grid-link:hover {
    color: var(--g7-primary) !important;
    padding-left: 4px;
}

.footer-nav-link {
    color: #1E293B;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--g7-primary) !important;
}

.footer-social-link {
    color: #64748B;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    color: var(--g7-primary) !important;
    transform: translateY(-2px);
}

/* ================================================================
   MODAL LOGO FIX
   ================================================================ */
.g7-modal-logo img {
    /* Remove any inherited filter — show logo in its natural colors */
    filter: none !important;
    max-width: 90px;
    border-radius: 24px;
    height: auto;
}

/* ================================================================
   FOOTER LIGHT THEME - UTILITY CLASSES
   (replaces all inline styles from footer.php Mode 2)
   ================================================================ */

/* Footer top border */
.footer-top-border {
    border-top: 1px solid #E2E8F0;
}

/* Asterisk icon in services header */
.footer-asterisk {
    color: #22C55E;
}

/* Internal dividers (middle strip, bottom strip) */
.footer-divider-border {
    border-top: 1px solid #E2E8F0 !important;
    border-color: #E2E8F0 !important;
}

/* Pipe character between policy links */
.footer-divider-pipe {
    color: #CBD5E1;
}

/* ================================================================
   WHY-US / CORE FEATURES - UTILITY CLASSES
   (replaces all inline styles from why-us.php Mode 2)
   ================================================================ */

/* Section heading */
.why-main-title {
    font-family: 'Sora', sans-serif !important;
    font-size: 2rem !important;
    color: #0F172A !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px;
}

/* Avatar color variants */
.avatar-blue   { background-color: #3B82F6; }
.avatar-green  { background-color: #10B981; }
.avatar-purple { background-color: #7C3AED; }

/* Amber star rating */
.star-amber {
    color: #F59E0B;
}

/* Reviews label */
.reviews-label {
    color: #64748B;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.g7-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.g7-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.g7-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.g7-reveal-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity;
}

.g7-reveal.revealed,
.g7-reveal-left.revealed,
.g7-reveal-right.revealed,
.g7-reveal-fade.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered Delay Utilities */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }
.reveal-delay-400 { transition-delay: 400ms; }
.reveal-delay-500 { transition-delay: 500ms; }
.reveal-delay-600 { transition-delay: 600ms; }

/* ================================================================
   █   G7 DIGITALX - DYNAMIC SUBPAGE & MODULAR LAYOUT CLASSES
   ================================================================ */

/* Shared Page Headers & Breadcrumbs */
.g7-page-header {
    background-image: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.04) 0%, transparent 40%);
    border-bottom: 1px solid #e2e8f0;
}
.g7-page-header-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}
.g7-breadcrumb-list {
    background: transparent;
    padding: 0;
}

/* Policy Content Layouts (Terms & Privacy) */
.g7-policy-container {
    max-width: 900px;
}
.g7-policy-card {
    border: 1px solid #e2e8f0 !important;
}
.g7-policy-main-title {
    font-size: 1.5rem;
}
.g7-policy-divider {
    border-top: 1px solid #e2e8f0;
}
.g7-policy-section-title {
    font-size: 1.15rem;
}
.g7-policy-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dedicated Contact Page elements */
.g7-contact-card-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
}
.g7-contact-card-title {
    font-size: 0.95rem;
}
.g7-contact-email-link {
    word-break: break-all;
}
.g7-contact-map-frame {
    height: 250px;
}
.g7-contact-map-iframe {
    border: 0;
}
.g7-contact-form-card {
    background-color: #f8fafc;
}
.g7-contact-badge-glow {
    background: rgba(37, 99, 235, 0.08);
}
.g7-contact-loading-display {
    display: none;
}

/* ==================================================================== */
/* PREMIUM PRELOADER STYLING */
/* ==================================================================== */
.g7-preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s;
    opacity: 1;
    visibility: visible;
}

.g7-preloader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.g7-preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.g7-preloader-logo-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.g7-preloader-logo {
    width: 50px;
    height: auto;
    object-fit: contain;
    animation: preloader-pulse 2s infinite ease-in-out;
}

.g7-preloader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(37, 99, 235, 0.15);
    animation: preloader-spin 6s linear infinite;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.preloader-asterisk {
    color: #10B981;
    font-size: 0.85rem;
    margin-top: -6px;
    animation: preloader-spin 2s linear infinite;
}

.g7-preloader-progress-container {
    width: 140px;
    height: 3px;
    background-color: var(--g7-border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.g7-preloader-progress-bar {
    width: 100%;
    height: 100%;
    background: var(--g7-gradient);
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: preloader-progress 2.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

/* Preloader Animations */
@keyframes preloader-pulse {
    0%, 100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.2));
    }
}

@keyframes preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-progress {
    0% {
        transform: scaleX(0);
    }
    85% {
        transform: scaleX(0.85);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Mega Menu Custom Styling to prevent squeezing */
@media (min-width: 992px) {
    .navbar {
        position: relative !important;
    }
    .dropdown-mega {
        position: static !important;
    }
    .dropdown-mega .mega-menu-content {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin-top: 0 !important;
        border-radius: 0 0 16px 16px !important;
        border-top: 3px solid var(--g7-primary) !important;
        background: #FFFFFF !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease !important;
    }
    .dropdown-mega:hover .mega-menu-content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* Custom Dropdown Items (Flexbox + Icons Alignment) */
.dropdown-item-custom {
    display: flex !important;
    align-items: center !important;
    padding: 0.75rem 1rem !important;
    border-radius: 16px !important;
    border: 1.5px solid transparent !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    background: transparent !important;
    width: 100%;
}

.dropdown-item-custom:hover {
    background-color: #FFFFFF !important;
    border-color: rgba(37, 99, 235, 0.1) !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05) !important;
    transform: translateY(-2.5px);
}

.icon-box-dropdown {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

/* Digital Marketing Icons */
.icon-box-dropdown.icon-dm {
    background: rgba(37, 99, 235, 0.06) !important;
    color: #2563EB !important;
    border: 1px solid rgba(37, 99, 235, 0.12) !important;
}
.dropdown-item-custom:hover .icon-box-dropdown.icon-dm {
    background: #2563EB !important;
    color: #FFFFFF !important;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3) !important;
    border-color: #2563EB !important;
}

/* Design & Development Icons */
.icon-box-dropdown.icon-dd {
    background: rgba(124, 58, 237, 0.06) !important;
    color: #7C3AED !important;
    border: 1px solid rgba(124, 58, 237, 0.12) !important;
}
.dropdown-item-custom:hover .icon-box-dropdown.icon-dd {
    background: #7C3AED !important;
    color: #FFFFFF !important;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3) !important;
    border-color: #7C3AED !important;
}

/* Feature column card */
.mega-feature-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.08) !important;
    border-radius: 18px !important;
    padding: 1.5rem !important;
    transition: all 0.3s ease !important;
}
.mega-feature-card:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}

/* Headers in dropdown */
.dropdown-header-custom {
    font-size: 0.82rem !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #F1F5F9 !important;
}

/* Custom CSS Helpers to remove inline styles */
.badge-seo-award {
    font-size: 0.85rem;
    border: none;
}
.badge-seo-award .award-icon {
    font-size: 1rem;
}
.badge-seo-secondary {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.hero-visual-wrapper {
    max-width: 480px;
    width: 100%;
}
.hero-main-img {
    object-fit: cover;
    display: block;
}
.hero-roi-label {
    font-size: 0.8rem;
    font-weight: 500;
}
.hero-roi-value {
    font-size: 1.3rem;
    color: #0F172A;
}
.why-us-list-item {
    font-size: 1rem;
    font-weight: 500;
}
.cursor-pointer {
    cursor: pointer;
}



