/* * ==========================================
 * 1. CORE VARIABLES & GLOBAL STYLES
 * ========================================== */
:root {
    --primary-color: #231f20;   /* Dark Charcoal */
    --secondary-color: #eb1e24; /* Red */
    --gradient-primary: linear-gradient(135deg, #231f20 0%, #4a4244 100%);
    --gradient-secondary: linear-gradient(135deg, #eb1e24 0%, #8b1014 100%);
    --shadow-premium: 0 20px 50px rgba(35, 31, 32, 0.08);
    --text-dark: #222;
    --text-light: #666;
}

body { 
    font-family: 'DM Sans', sans-serif; 
    overflow-x: hidden; 
    color: #333;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

a { text-decoration: none !important; transition: 0.3s; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* Helpers */
.pdt-5 { padding-top: 5rem; }
.pdb-5 { padding-bottom: 5rem; }
.common_bg_color { background-color: #fcfcfc; position: relative; }

/* Background Pattern */
.bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 24px 24px; opacity: 0.04; pointer-events: none; z-index: 0;
}

/* * ==========================================
 * 2. HEADER & MOBILE MENU CSS
 * ========================================== */

.header { position: sticky; top: 0; z-index: 1100; width: 100%; }

/* Top Header */
.top_header { background: #000000; color: #fff; padding: 10px 0; font-size: 13px; overflow: hidden; }
.top_header .desktop-bar { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top_header ul { display: flex; gap: 20px; margin: 0; padding: 0; }
.top_header a { color: #fff; display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; transition: 0.3s;}
.top_header a:hover { color: var(--secondary-color); }

/* Top Header Separators */
.desktop-bar .top-right, .desktop-bar .top-left { gap: 0; }
.desktop-bar .top-right li, .desktop-bar .top-left li { padding: 0 15px; position: relative; }
.desktop-bar .top-right li:first-child::after, .desktop-bar .top-left li:first-child::after {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    height: 14px; width: 1px; background-color: rgba(255,255,255,0.4);
}
.desktop-bar .top-right li:last-child { padding-right: 0; }
.desktop-bar .top-left li:first-child { padding-left: 0; }

/* Bottom Header */
.bottom_header { padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); background: #fff; position: relative; z-index: 100; transition: 0.3s; }
.bottom_header .container { display: flex; justify-content: space-between; align-items: center; }

/* Desktop Menu */
.nav.navbar-menu > ul { display: flex; gap: 25px; margin: 0; align-items: center; }
.nav.navbar-menu > ul > li > a { font-weight: 600; color: #000000; font-size: 16px; padding: 10px 0; display: block; letter-spacing: 0.3px; transition: 0.3s;}
.nav.navbar-menu > ul > li:hover > a { color: var(--secondary-color); }

/* Request Quote Button */
.nav.navbar-menu > ul > li.cta-request-head > a {
    background: var(--secondary-color);
    color: #fff !important; padding: 12px 32px; border-radius: 50px;
    font-weight: 700; box-shadow: 0 4px 15px rgba(235, 30, 36, 0.25);
    transition: all 0.4s; margin-left: 15px; display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px;
}
.nav.navbar-menu > ul > li.cta-request-head > a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(35, 31, 32, 0.4);
    background: #000000;
}

/* PREMIUM MEGA MENU STYLES */
.drop_menu_mega { position: static !important; }

.mega_menu_section {
    width: 100%; max-width: 100%; left: 0; right: 0; display: flex; padding: 0;
    background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-top: 3px solid var(--secondary-color);
    border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
    overflow: hidden; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 100%; position: absolute; z-index: 999;
}

.drop_menu_mega:hover .mega_menu_section { opacity: 1; visibility: visible; transform: translateY(0); }

/* Sidebar (Vertical Tabs) */
.mega_menu_main { width: 25%; flex-shrink: 0; background: #f8f9fa; border-right: 1px solid #eee; padding-top: 20px; padding-bottom: 20px; margin: 0;}
.mega_menu_main li { position: relative; }
.mega_menu_main li a {
    padding: 15px 30px; display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; color: #000000; border-bottom: none; transition: all 0.3s;
    font-size: 15px;
}
.mega_menu_main li.active a, .mega_menu_main li a:hover {
    background: #fff; color: var(--secondary-color) !important;
    padding-left: 35px;
}
.mega_menu_main li.active::before {
    content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--secondary-color);
}

/* Right Content Area */
.tabs-content { width: 75%; flex: 1; padding: 40px 50px; background: #fff; min-height: 450px; }
.sub-mega-menu { display: none; width: 100%; height: 100%; animation: fadeInMenu 0.4s ease-in-out; }
.sub-mega-menu.active { display: flex; width: 100%; gap: 40px; align-items: start;}
@keyframes fadeInMenu { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Menu Grid */
.menu-sec-left { width: 65%; }
.menu-heading-group { margin-bottom: 25px; }
.menu-sec-left span.menu-title {
    font-size: 13px; font-weight: 700; color: #999; text-transform: uppercase;
    letter-spacing: 1.5px; display: block; margin-bottom: 20px;
    border-bottom: 1px solid #eee; padding-bottom: 10px;
}
.menu-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; }
.menu-link-item { display: flex; align-items: flex-start; gap: 15px; padding: 12px; border-radius: 8px; transition: 0.2s; color: #333; text-decoration: none;}
.menu-link-item:hover { background: #fcfcfc; transform: translateX(5px); }
.menu-link-icon {
    width: 36px; height: 36px; background: rgba(235, 30, 36, 0.08); color: var(--secondary-color);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0; transition: 0.3s; margin-top: 3px;
}
.menu-link-item:hover .menu-link-icon { background: var(--secondary-color); color: #fff; }
.menu-link-text { display: flex; flex-direction: column; }
.menu-link-text h4 { font-size: 15px !important; font-weight: 700; margin: 0 0 4px 0 !important; color: #111; transition: 0.2s; line-height: 1.2;}
.menu-link-item:hover .menu-link-text h4 { color: var(--secondary-color); }
.menu-link-text p { font-size: 13px !important; color: #666; margin: 0 !important; line-height: 1.4; }

/* Featured Card in Menu */
.Menu_section_two_layout { width: 35%; height: 100%;}
.featured-menu-card {
    background-color: #000000; background-size: cover; background-position: center; border-radius: 16px; padding: 35px; height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; color: #fff;
}
.featured-menu-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(235, 30, 36, 0.85), rgba(35, 31, 32, 0.9)); z-index: 1;}
.featured-menu-card h4, .featured-menu-card p, .featured-menu-card a { position: relative; z-index: 2; }
.featured-menu-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff;}
.featured-menu-card p { font-size: 14px; opacity: 0.9; margin-bottom: 0; }
.featured-menu-card a { color: #fff; font-weight: bold; font-size: 14px; display: inline-block; margin-top: 15px; transition: 0.3s; }

/* --- MOBILE SPECIFIC STYLES --- */
.mobile-toggle { font-size: 24px; color: #000000; cursor: pointer; display: none; z-index: 10; position: relative;}

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 1150;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(3px);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-sidebar {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
    background: #fff; z-index: 1200; 
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
}
.mobile-menu-sidebar.active { right: 0; }

.mobile-menu-header {
    padding: 20px; border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu-close { font-size: 24px; color: #000000; cursor: pointer; }

.mobile-menu-body { padding: 20px; overflow-y: auto; flex: 1; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li { border-bottom: 1px solid #f5f5f5; margin-bottom: 0;}
.mobile-nav-list > li > a, .mobile-link-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; font-size: 16px; font-weight: 600; color: #000000;
    cursor: pointer; transition: 0.3s;
}
.mobile-nav-list > li > a:hover, .mobile-link-header:hover { color: var(--secondary-color); padding-left: 5px; }

.mobile-submenu { 
    display: none; background: #fcfcfc; margin: 10px 15px 20px 15px; 
    padding: 10px; border-radius: 12px; border: 1px solid rgba(235, 30, 36, 0.05);
    position: relative; box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}
.mobile-submenu::before {
    content: ''; position: absolute; left: 0; top: 15px; bottom: 15px; width: 3px;
    background: var(--secondary-color); border-radius: 0 3px 3px 0; opacity: 0.5;
}
.mobile-submenu li { border-bottom: 1px dashed rgba(0,0,0,0.05); margin-bottom: 0; }
.mobile-submenu li:last-child { border-bottom: none; }
.mobile-submenu li a {
    font-size: 14px; font-weight: 500; color: #555; padding: 12px 15px;
    display: flex; align-items: center; border-radius: 8px; transition: 0.3s;
}
.mobile-submenu li a::before {
    content: ''; width: 6px; height: 6px; background: #d1d1d1; border-radius: 50%; margin-right: 12px; transition: 0.3s;
}
.mobile-submenu li a:hover { color: var(--secondary-color); background: #fff; transform: translateX(5px); box-shadow: 0 4px 12px rgba(235,30,36,0.08); font-weight: 600;}
.mobile-submenu li a:hover::before { background: var(--secondary-color); transform: scale(1.5); box-shadow: 0 0 5px rgba(235, 30, 36, 0.4);}
.submenu-icon { transition: 0.3s; }
.submenu-icon.rotate { transform: rotate(180deg); color: var(--secondary-color); }

.mobile-menu-footer { padding: 20px; background: #f9f9f9; border-top: 1px solid #eee; }
.mobile-menu-footer .orng_cta { width: 100%; justify-content: center; background: var(--secondary-color); color: #fff; padding: 12px; border-radius: 50px; font-weight: bold; transition: 0.3s; display: flex;}
.mobile-menu-footer .orng_cta:hover { background: #000000; }

/* Marquee for Mobile */
.marquee-container { display: none; white-space: nowrap; overflow: hidden; width: 100%; background: #000000; padding: 8px 0;}
.marquee-content { display: flex; animation: marquee 20s linear infinite; padding-left: 100%; }
.marquee-content li { display: inline-flex; align-items: center; margin-right: 40px; }
.marquee-content a { color: #fff; display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13px; text-transform: uppercase;}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }


/* * ==========================================
 * 3. MAIN CONTENT SECTIONS CSS
 * ========================================== */
main {
    flex: 1; /* Pushes footer down */
    width: 100%;
}

/* --- Buttons --- */
.orng_cta { background: var(--secondary-color); color: #fff; padding: 14px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; border: none; transition: 0.3s; position: relative; overflow: hidden; z-index: 1;}
.orng_cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(235, 30, 36, 0.3);}
.orng_cta::after { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: #000000; z-index: -1; transition: width 0.3s ease; border-radius: 50px;}
.orng_cta:hover::after { width: 100%; }

.blue_cta { background: var(--primary-color); color: #fff; padding: 14px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; border: none; transition: 0.3s; position: relative; overflow: hidden; z-index: 1;}
.blue_cta:hover { color: #fff; transform: translateY(-3px); background: var(--secondary-color); box-shadow: 0 10px 20px rgba(35, 31, 32, 0.3);}

/* --- Headings --- */
.commn_head span { color: var(--secondary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.commn_head h2 { color: var(--primary-color); font-weight: 700; font-size: 2.8rem; margin: 0 0 20px; }
.commn_head p { max-width: 800px; margin: 0 auto; color: #555; line-height: 1.6; }

/* --- Hero Section --- */
.premium-hero {
    position: relative;
    background: url('/assets/images/breadcrumb/breadcrumb.webp') center/cover;
    height: 450px; 
    display: flex; 
    align-items: center; 
    background-attachment: fixed;
}
.hero-grid-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(35, 31, 32, 0.95) 0%, rgba(35, 31, 32, 0.8) 60%, rgba(35, 31, 32, 0.4) 100%);
}

.hero-breadcrumb { 
    margin-bottom: 10px; 
    color: rgba(255,255,255,0.7); 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600;
    position: relative; z-index: 2;
}
.hero-breadcrumb a { 
    color: #fff; 
    border-bottom: 1px solid rgba(255,255,255,0.3); 
    padding-bottom: 2px;
}
.hero-breadcrumb a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.hero-breadcrumb span {
    margin: 0 10px;
    color: var(--secondary-color);
}

.hero-title { 
    font-size: 2.2rem; 
    font-weight: 900; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    letter-spacing: -1px;
    position: relative; z-index: 2;
    color: #ffffff;
}
.hero-desc { 
    font-size: 1.2rem; 
    max-width: 800px; 
    margin: 0 auto 30px; 
    color: rgba(255,255,255,0.9); 
    opacity: 0.9; 
    font-weight: 300; 
    line-height: 1.6; 
    position: relative; z-index: 2;
}
.hero-btns { position: relative; z-index: 2; }

/* --- Intro Section --- */
.service-intro-sec {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.service-intro-sec::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(35, 31, 32, 0.05) 0%, transparent 70%);
    z-index: 0;
}
.intro-content-wrapper { position: relative; z-index: 1; }

.intro-badge {
    background: rgba(235, 30, 36, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.intro-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.intro-text-block {
    padding-left: 30px;
    border-left: 3px solid var(--secondary-color);
}
.lead-text { font-size: 1.2rem; font-weight: 600; color: #222; margin-bottom: 15px; }
.intro-text-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-features-list { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.intro-feat-item {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; color: var(--primary-color);
    font-size: 15px;
}
.intro-feat-item i { color: var(--secondary-color); font-size: 18px; }

/* Intro Visual */
.intro-visual-collage { position: relative; height: 100%; min-height: 500px; }
.collage-img-main {
    position: absolute; top: 0; right: 0;
    width: 85%; height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    z-index: 1;
}
.collage-img-main img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.collage-img-main:hover img { transform: scale(1.05); }

.collage-card-float {
    position: absolute; bottom: 40px; left: 0;
    background: #fff; padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
    max-width: 280px;
    border: 1px solid rgba(0,0,0,0.05);
}
.collage-card-float h4 { font-size: 40px; font-weight: 800; color: var(--secondary-color); margin: 0; line-height: 1; }
.collage-card-float p { font-size: 14px; color: #666; margin-top: 10px; line-height: 1.4; margin-bottom: 0; font-weight: 500; }
.collage-card-float .gold-bar { height: 4px; width: 50px; background: var(--gradient-secondary); margin-top: 15px; border-radius: 2px; }

/* --- Strategy Pillars --- */
.strategy-sec { padding: 80px 0; background: #f4f9f5; position: relative; overflow: hidden; }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }

.strategy-card {
    background: #fff; 
    padding: 45px 35px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.strategy-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
    background: var(--secondary-color); transition: 0.5s ease; z-index: 2;
}
.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(35, 31, 32, 0.08);
}
.strategy-card:hover::before { height: 100%; }

.strategy-bg-num {
    position: absolute; top: -30px; right: -10px;
    font-size: 140px; font-weight: 900;
    color: rgba(0,0,0,0.03); line-height: 1;
    z-index: -1; transition: 0.4s;
    font-family: 'DM Sans', sans-serif; pointer-events: none;
}
.strategy-card:hover .strategy-bg-num {
    color: rgba(235, 30, 36, 0.08);
    transform: scale(1.1) translateX(-10px);
}

.s-icon-box {
    width: 70px; height: 70px; background: #fff;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--primary-color);
    margin-bottom: 25px; transition: 0.5s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.strategy-card:hover .s-icon-box {
    background: var(--secondary-color); color: #fff;
    border-color: var(--secondary-color);
    transform: rotateY(180deg);
    box-shadow: 0 10px 25px rgba(235, 30, 36, 0.4);
}
.s-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; color: var(--primary-color); }
.s-desc { color: #666; font-size: 1.05rem; line-height: 1.7; margin-bottom: 0; }

/* --- Why Us Sticky --- */
.why-sec { padding: 100px 0; background: #fff; }
.why-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.why-sticky { position: sticky; top: 120px; height: fit-content; }
.why-sticky h2 { font-size: 2.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; }
.why-features { display: grid; gap: 30px; }
.why-item { display: flex; gap: 20px; background: #f4f9f5; padding: 30px; border-radius: 16px; border: 1px solid #eee; transition: 0.3s; }
.why-item:hover { border-color: var(--secondary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-5px); background: #fff; }
.w-icon-box { width: 50px; height: 50px; background: var(--secondary-color); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.w-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.w-content p { font-size: 14px; color: #666; margin: 0; }

/* --- Bento Grid --- */
.bento-sec { 
    padding: 100px 0; 
    background: var(--primary-color); 
    color: #fff; 
    position: relative;
    overflow: hidden;
}
.bento-sec::before {
    content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    animation: rotateGlow 20s linear infinite; pointer-events: none;
}
@keyframes rotateGlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.bento-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; 
}
.bento-card {
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px;
    padding: 30px; 
    display: flex; flex-direction: column; justify-content: flex-start;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    height: 100%; min-height: 280px;
    position: relative; overflow: hidden; z-index: 1;
}
.bento-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.12), transparent);
    opacity: 0; transition: 0.4s ease; z-index: -1;
}
.bento-card::before {
    content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
}

.bento-grid:hover .bento-card { opacity: 0.35; transform: scale(0.97); transition: all 0.4s ease; }
.bento-card:hover {
    opacity: 1 !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(235, 30, 36, 0.3);
    border-color: var(--secondary-color);
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover::before { left: 100%; }

.span-2-col { grid-column: span 2; }
.span-2-row { grid-row: span 2; }

.bento-icon { 
    width: 50px; height: 50px; background: var(--secondary-color); 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; 
    font-size: 20px; margin-bottom: 20px; color: #fff; 
}
.bento-card:hover .bento-icon { transform: rotate(8deg) scale(1.1); transition: 0.3s ease; }

.bento-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.bento-card:hover .bento-title { color: var(--secondary-color); transition: 0.3s ease; }
.bento-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 10px; }


/* * ==========================================
 * 4. IMPACT SECTION (CLEAN & FINAL)
 * ========================================== */

.impact-sec {
    position: relative;
    padding: 100px 0;
    background: #f8faff;
    overflow: hidden; /* Keeps animations inside */
    z-index: 1;
}

/* Animated gradient layer */
.impact-sec::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(35, 31, 32, 0.05), transparent 40%);
    animation: moveGlow 12s linear infinite;
    z-index: -1;
    pointer-events: none;
}

/* Floating shape layer */
.impact-sec::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(235, 30, 36, 0.1), rgba(35, 31, 32, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    animation: floatBall 10s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

/* Ensure content sits above animations */
.impact-sec .container {
    position: relative;
    z-index: 2;
}

/* The Card Layout */
.impact-card {
    display: flex;
    align-items: stretch; /* Ensures both sides are equal height */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Left Content Area */
.impact-left {
    width: 55%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-tag { 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--secondary-color); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
    display: block; 
}

.impact-title { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
    line-height: 1.2;
}

.impact-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Right Image Area (User Requested Code) */
.impact-right {
    width: 45%;
    min-height: 380px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.impact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Metrics Section (Grid Layout) */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.metric {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.metric:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: rgba(235, 30, 36, 0.2);
    transform: translateY(-3px);
}

.metric h4 { 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: var(--secondary-color); 
    margin: 0 0 5px 0; 
}

.metric p { 
    font-size: 14px; 
    font-weight: 600; 
    color: #333; 
    margin: 0; 
}

/* * ==========================================
 * 5. FAQ, AUDIT & MATRIX SECTIONS
 * ========================================== */

/* --- FAQ Section --- */
.faq-unique-sec { padding: 100px 0; background: #f8fbf9; position: relative; }
.faq-unique-sec::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 300px;
    background: linear-gradient(to top, rgba(35, 31, 32, 0.03) 0%, transparent 100%); pointer-events: none;
}

.faq-sidebar { position: sticky; top: 120px; }
.faq-support-card {
    background: var(--primary-color); color: #fff; padding: 30px; border-radius: 20px;
    margin-top: 30px; position: relative; overflow: hidden;
    box-shadow: 0 20px 40px rgba(35, 31, 32, 0.2);
}
.faq-support-card::after {
    content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}
.faq-support-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.faq-support-card p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; color: rgba(255,255,255,0.8); }
.faq-support-card a { color: var(--secondary-color); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.faq-support-card a:hover { color: #fff; }

.faq-list-wrapper { display: flex; flex-direction: column; gap: 15px; }
.faq-card-item {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.faq-card-item.active {
    box-shadow: 0 10px 30px rgba(35, 31, 32, 0.08);
    border-color: rgba(235, 30, 36, 0.3);
}
.faq-header {
    padding: 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; color: var(--primary-color); font-size: 1.1rem;
    transition: 0.3s;
}
.faq-header:hover { color: var(--secondary-color); }
.faq-toggle-icon {
    width: 32px; height: 32px; background: rgba(35, 31, 32, 0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primary-color);
    font-size: 12px; transition: 0.3s; flex-shrink: 0;
}
.faq-card-item.active .faq-toggle-icon {
    background: var(--secondary-color); color: #fff; transform: rotate(180deg);
}
.faq-body {
    padding: 0 25px 25px 25px; display: none;
    color: #666; line-height: 1.6; font-size: 0.95rem;
    border-top: 1px solid transparent;
}

/* --- Audit Section --- */
.audit-sec { padding: 80px 0; background: var(--gradient-primary); color: #fff; position: relative; overflow: hidden; }
.audit-wrapper { display: flex; align-items: center; gap: 50px; background: rgba(255,255,255,0.05); padding: 50px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.audit-text { flex: 1; }
.audit-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: #fff; }
.audit-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 16px; }
.audit-list i { color: var(--secondary-color); }
.audit-box { flex: 1; background: #fff; padding: 30px; border-radius: 20px; color: #333; }
.audit-box input { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; background: #f9f9f9; }
.btn-submit { width: 100%; padding: 15px; background: var(--primary-color); color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 16px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--secondary-color); }

/* --- Products Matrix Section --- */
.products-matrix-sec {
    background: var(--gradient-primary); padding: 90px 0; position: relative; overflow: hidden;
}
.products-matrix-sec::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px; opacity: 0.4;
}
.products-matrix-sec .commn_head h2, .products-matrix-sec .commn_head p, .products-matrix-sec .commn_head span { color: #fff; }

.products-matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.product-matrix-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
    border-radius: 18px; padding: 32px 28px; color: #fff;
    transition: all 0.35s ease; border: 1px solid rgba(255,255,255,0.12);
    position: relative; box-shadow: var(--shadow-premium);
    opacity: 0; transform: translateY(30px); /* Init State for JS */
}
.product-matrix-card.ux-visible { opacity: 1; transform: translateY(0); transition: all 0.6s ease; }
.product-matrix-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); box-shadow: 0 25px 60px rgba(0,0,0,0.25); }
.pm-icon {
    width: 52px; height: 52px; border-radius: 12px; background: var(--gradient-secondary);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pm-icon i { color: #fff; font-size: 22px; }
.product-matrix-card h4 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
.product-matrix-card p { font-size: 0.95rem; line-height: 1.6; opacity: 0.9; }


/* * ==========================================
 * 6. FOOTER CSS
 * ========================================== */

.premium-footer { position: relative; color: #fff; padding-top: 80px; padding-bottom: 30px; overflow: visible; margin-top: 0; z-index: 5; background: #231f20 !important; border: none !important;}
.footer-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #231f20 !important; overflow: hidden; z-index: 0; }
.footer-bg-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px); background-size: 40px 40px; opacity: 0.6; pointer-events: none; display: none !important;}
.footer-watermark { display: none !important;}

.footer-floating-card { position: relative; margin: 0 auto 60px auto; width: 100%; max-width: 1140px; background: linear-gradient(135deg, var(--secondary-color) 0%, #8b1014 100%) !important; border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(235, 30, 36, 0.4) !important; border-radius: 24px; padding: 40px 50px; z-index: 10; overflow: hidden; display: flex; align-items: center; justify-content: space-between; }
.footer-floating-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent); transform: skewX(-25deg); animation: cardShine 6s infinite; }
@keyframes cardShine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.floating-card-text h3 { font-size: 2rem; font-weight: 700; margin: 0 0 5px; color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.floating-card-text p { font-size: 1.1rem; margin: 0; color: rgba(255,255,255,0.9) !important; }
.floating-card-btn .btn-glow { background: #ffffff !important; color: var(--secondary-color) !important; padding: 15px 35px; border-radius: 50px; font-weight: 700; font-size: 16px; transition: 0.3s; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); display: inline-block; position: relative; z-index: 2; align-items: center;}
.floating-card-btn .btn-glow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); background: #000000 !important; color: #ffffff !important; }

.footer-main-content { position: relative; z-index: 2; }
.footer-logo-area p { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 25px; font-size: 15px; }

.footer-contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.8) !important; line-height: 1.5; }
.footer-contact-info i { color: var(--secondary-color) !important; margin-top: 4px; font-size: 16px; width: 20px; text-align: center;}
.footer-contact-info a { color: rgba(255, 255, 255, 0.8) !important; transition: 0.3s; text-decoration: none;}
.footer-contact-info a:hover { color: var(--secondary-color) !important; }

.footer-social-icons { display: flex; gap: 12px; margin-bottom: 30px; }
.footer-social-icons a { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.08) !important; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff !important; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1) !important; }
.footer-social-icons a:hover { background: var(--secondary-color) !important; border-color: var(--secondary-color) !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(235, 30, 36, 0.3); }

.footer-badges img { opacity: 0.9; transition: 0.3s; }
.footer-badges img:hover { opacity: 1; }

.footer-widget-title { color: #ffffff !important; font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; position: relative; display: inline-block; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 10px;}
.footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary-color) !important; transition: width 0.3s ease; border-radius: 2px;}
.col-lg-3:hover .footer-widget-title::after, .col-lg-2:hover .footer-widget-title::after { width: 100%; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7) !important; font-size: 0.95rem; display: flex; align-items: center; transition: all 0.3s ease; position: relative; padding-left: 0; }
.footer-links a::before { content: '›'; color: var(--secondary-color) !important; font-size: 18px; line-height: 1; opacity: 1; transition: all 0.3s ease; margin-right: 8px; }
.footer-links a:hover { color: var(--secondary-color) !important; padding-left: 5px; }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.6) !important; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6) !important; }
.footer-bottom-links a:hover { color: var(--secondary-color) !important; text-decoration: underline !important; }

/* Floating Footer (Mobile) */
.footericons { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; z-index: 999; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 10px 0; display: none; }
.footericons ul { display: flex; justify-content: space-around; margin: 0; }
.footericons ul li a { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #333; font-weight: 600; }
.footericons img { width: 20px; margin-bottom: 5px; }


/* * ==========================================
 * 7. STICKY SIDEBAR & EXTRAS
 * ========================================== */

.sticky-sidebar {
    position: fixed; top: 50%; right: 0; transform: translateY(-50%);
    z-index: 1200; display: flex; flex-direction: column; gap: 10px;
    align-items: flex-end; 
}
.sticky-icon {
    width: 50px; height: 50px; 
    display: flex; align-items: center; justify-content: flex-end; 
    color: #fff; text-decoration: none;
    border-top-left-radius: 30px; border-bottom-left-radius: 30px; 
    box-shadow: -4px 5px 15px rgba(0,0,0,0.15); 
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    overflow: hidden; white-space: nowrap; background: #333;
}
.sticky-icon i {
    width: 50px; height: 50px; 
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0; z-index: 2;
}
.sticky-icon span {
    font-size: 15px; font-weight: 700; 
    opacity: 0; transform: translateX(20px); 
    transition: all 0.3s ease; margin-right: 0; padding-left: 20px;
}
.sticky-icon:hover { width: 160px; }
.sticky-icon:hover span { opacity: 1; transform: translateX(0); margin-right: 5px; }

.icon-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.icon-phone { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.icon-email { background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%); }

@keyframes moveGlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes floatBall { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-40px); } }


/* * ==========================================
 * 8. RESPONSIVE MEDIA QUERIES (GLOBAL)
 * ========================================== */

@media (max-width: 1200px) {
    .premium-hero { height: 450px; }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .premium-hero {
        height: 450px; 
        text-align: center; 
        padding-top: 60px; 
        align-items: flex-start;
        display: flex;
    }
    .hero-btns { display: none; }
    .hero-title { font-size: 2rem; }
    
    .intro-grid, .why-layout, .strategy-grid, .faq-grid, .audit-wrapper { grid-template-columns: 1fr; gap: 40px; }
    
    /* Impact Section Tablet/Mobile Layout */
    .impact-card { flex-direction: column; }
    .impact-left, .impact-right { width: 100%; }
    .impact-right { height: auto; min-height: 300px; order: -1; } 
    
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .span-2-col { grid-column: span 2; }
    .span-2-row { grid-row: auto; }
    .bento-card { min-height: 250px; }

    .why-sticky { position: static; text-align: center; margin-bottom: 40px; }

    .products-matrix-grid { grid-template-columns: repeat(2, 1fr); }

    .audit-wrapper { flex-direction: column; text-align: center; }
    .audit-text, .audit-box { width: 100%; }
    .audit-list { display: inline-block; text-align: left; }

    .faq-unique-sec .row { flex-direction: column; }
    .faq-sidebar { position: static; margin-bottom: 30px; }
    
    /* Header & Footer */
    .top_header .desktop-bar { display: none; }
    .marquee-container { display: flex; }
    .nav.navbar-menu { display: none; }
    .mobile-toggle { display: block; }
    .mega_menu_section { display: none; }

    .footericons { display: block; }
    .footer-floating-card { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; width: 100%; top: auto; position: relative; margin-top: -50px; margin-bottom: 40px;}
    .footer-watermark { width: 300px; height: 300px; }
    .premium-footer { padding-top: 50px; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
    .footer-bottom-links a { margin: 0 10px; }
}

@media (max-width: 768px) {
    .premium-hero {
        position: relative !important; height: auto !important; min-height: 420px;
        display: flex; align-items: center; padding: 70px 0; overflow: hidden; background-attachment: scroll;
    }
    .hero-grid-overlay { position: absolute; z-index: 1 !important; }
    .premium-hero .container { position: relative; z-index: 5 !important; }
    .hero-title, .hero-desc, .hero-breadcrumb, .hero-btns { position: relative; z-index: 6 !important; }
    
    /* Disable complex animations on mobile */
    .impact-sec::before, .impact-sec::after { display: none; }
    
    .impact-sec { padding: 60px 0; }
    .impact-left { padding: 25px; text-align: center; }
    .impact-metrics { grid-template-columns: 1fr; gap: 15px; text-align: left; }
    .impact-right { min-height: 250px; }

    .audit-sec { padding: 60px 15px; }
    .audit-wrapper { padding: 25px; }
}

@media (max-width: 576px) {
    .premium-hero { height: 450px; }
    .bento-grid { grid-template-columns: 1fr; }
    .span-2-col { grid-column: span 1; }
    .products-matrix-grid { grid-template-columns: 1fr; }
}

/*country flag footer*/
.country-flag {
    width: 22px;
    height: auto;
    margin-right: 0px;
    margin-top:4px;
    vertical-align: middle;
}