/* =========================================
   CSS VARIABLES & BASE
========================================= */
:root {
    --teal-dark:    #0b1120;
    --teal-mid:     #0d1b2a;
    --teal-bright:  #ff6a00;
    --teal-glow:    #ff8c42;
    --amber:        #ff6a00;
    --amber-soft:   #ffb347;
    --off-white:    #f0f5f5;
    --white:        #ffffff;
    --text-dark:    #0d1b2a;
    --text-muted:   #5a6a7a;
    --glass-bg:     rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.15);
    --shadow-teal:  0 8px 40px rgba(255,106,0,0.25);
    --radius-lg:    18px;
    --radius-xl:    28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; font-weight: 700; }

img { max-width: 100%; height: auto; }

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    position: absolute;   /* fixed tha, ab scroll hoga */
    top: 0;
    width: 100%;
    height: 40px;
    z-index: 9999;
    background: #ff6a00;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.95;
    font-size: 13px;
    transition: 0.3s;
    white-space: nowrap;
}

.top-left a:hover { opacity: 1; }

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-right a {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.top-right a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.top-bar i { font-size: 13px; }
.top-left * { color: #fff; }

/* =========================================
   HEADER / NAVBAR
========================================= */
.header-area {
    position: sticky;      /* page scroll par nav fixed rahe screen top par */
    top: 0;
    width: 100%;
    z-index: 9998;
    background: #ffffff;   /* dark tha, ab white */
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#mainNav {
    position: static;
    background: #ffffff;   /* dark tha, ab white */
    padding: 10px 0;
    width: 100%;
    z-index: 9998;
    top: auto;
}

/* FLEX CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0b1120;        /* white tha, ab dark */
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 12px;
    color: #ff6a00;
    letter-spacing: 1px;
}
.navbar-brand { gap: 10px; }
.navbar { display: flex; align-items: center; }

/* CENTER PILL — desktop only */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 50px;
    background: rgba(11,17,32,0.06);
    border: 1px solid rgba(11,17,32,0.10);
}

.nav-pill .nav-item {
    padding: 9px 16px;
    border-radius: 30px;
    color: rgba(11,17,32,0.75);   /* dark text */
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-pill .nav-item.active {
    background: #0b1120;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-pill .nav-item:hover {
    background: rgba(11,17,32,0.08);
    color: #0b1120;
}

/* RIGHT BUTTON */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.quote-btn {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: #fff;
    padding: 9px 18px;         /* 11px 22px tha, chhota kiya */
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;           /* 14px tha */
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255,106,0,0.30);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,106,0,0.5);
    color: #fff;
}

/* =========================================
   HAMBURGER BUTTON
========================================= */
/* =========================================
   HAMBURGER — CLEAN & PROFESSIONAL
========================================= */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(255,106,0,0.30);
}

.nav-toggle:hover {
    box-shadow: 0 5px 18px rgba(255,106,0,0.45);
    transform: translateY(-1px);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

/* ── X State ── */
.nav-toggle.active {
    border-radius: 12px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Show on mobile */
@media (max-width: 1199px) {
    .nav-toggle {
        display: flex;
    }
}
/* =========================================
   MOBILE MENU DRAWER
========================================= */
.mobile-menu {
    display: flex !important;          /* none tha, isliye click kaam nahi kar raha tha */
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0b1120;
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 99999;
    flex-direction: column;
    padding: 0;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
}
.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #fff;
}

.mobile-menu-header .logo-img { height: 40px; }

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255,106,0,0.2);
    border-color: #ff6a00;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(255,106,0,0.1);
    color: #ff8c42;
    padding-left: 28px;
    border-left: 3px solid #ff6a00;
}

.mobile-nav-links a i {
    color: #ff6a00;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.mobile-menu-footer {
    margin-top: auto;
    padding: 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-quote-btn {
    display: block;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255,106,0,0.35);
    transition: 0.3s;
}

.mobile-quote-btn:hover {
    color: #fff;
    box-shadow: 0 12px 28px rgba(255,106,0,0.5);
    transform: translateY(-2px);
}

.mobile-contact-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.mobile-contact-info a i { color: #ff6a00; font-size: 12px; }
.mobile-contact-info a:hover { color: #ff8c42; }

/* Overlay bhi fix */
.menu-overlay {
    display: block !important;          /* none tha */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
/* Body offset for fixed bars */
body {
    padding-top: 40px; /* top bar */
}

.site-content {
    padding-top: 70px; /* navbar height approx */
}

/* =========================================
   HERO
========================================= */
.hero {
    min-height: 90vh;
    background:
        linear-gradient(to right,
            rgba(5,10,20,0.95) 0%,
            rgba(5,10,20,0.85) 40%,
            rgba(5,10,20,0.4) 70%,
            rgba(5,10,20,0.1) 100%
        ),
        url('../images/hero2.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;    /* 110px tha, ab 40px */
    padding-bottom: 60px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,106,0,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,106,0,0.10) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,106,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,106,0,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-container { position: relative; z-index: 2; }
.hero-content   { position: relative; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,106,0,0.18);
    border: 1px solid rgba(255,106,0,0.4);
    color: #ff8c42;
    padding: 6px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff6a00;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(1.4); }
}

@keyframes fadeInDown {
    from { opacity:0; transform:translateY(-20px); }
    to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title span,
.hero h1 .highlight {
    background: linear-gradient(90deg, #ff6a00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: white; line-height: 1.08;
    margin-bottom: 16px; font-weight: 800;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-sub {
    font-size: 1rem; color: rgba(255,255,255,0.65);
    margin-bottom: 10px; letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem; color: rgba(255,255,255,0.9);
    font-weight: 600; margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-tagline span { color: #ffb347; }

.hero-btns {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #ff6a00, #ff8c42) !important;
    color: white !important;
    border: none !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    box-shadow: 0 5px 15px rgba(255,106,0,0.25) !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
    min-height: unset !important;
    min-width: unset !important;
}

.btn-primary-glow:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255,106,0,0.4) !important;
    color: white !important;
}

.btn-outline-light-glow {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 14px 32px; border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: 15px;
    transition: all 0.3s; text-decoration: none;
    backdrop-filter: blur(10px);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-light-glow:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ff6a00; color: #ff8c42;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: nowrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    position: relative;
    padding-right: 32px;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-stat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 28px; font-weight: 700;
    color: #fff; line-height: 1;
}

.hero-stat .label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px; margin-top: 4px;
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;        /* pehle 30px tha, yeh hatao */
    animation: none;      /* alag animation bhi hatao */
}

.rating-number {
    font-size: 38px; font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.rating-right { display: flex; flex-direction: column; gap: 4px; }
.stars { display: flex; gap: 3px; }
.stars i { color: #ff6a00; font-size: 14px; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.75); }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    position: relative; overflow: hidden;
    animation: float 4s ease-in-out infinite;
    width: 100%;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

.hero-card-glow {
    position: absolute; top: -50px; right: -50px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,106,0,0.2);
    filter: blur(40px); pointer-events: none;
}

.icon-ring {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 36px; color: white;
    box-shadow: 0 0 50px rgba(255,106,0,0.5);
}

.hero-card h3 { color: white; font-size: 1.1rem; margin-bottom: 6px; }
.hero-card p  { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

.mini-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.mini-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.mini-card:hover { background: rgba(255,106,0,0.12); border-color: rgba(255,106,0,0.3); }

.mc-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,106,0,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #ff8c42; font-size: 15px; flex-shrink: 0;
}

.mc-title {
    font-family: 'Syne', sans-serif;
    font-size: 12px; font-weight: 600;
    color: white; margin-bottom: 1px;
}
.mc-sub { font-size: 11px; color: rgba(255,255,255,0.5); }

/* Request card */
.request-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.request-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 22px;
}

.form-sub { color: #666; font-size: 15px; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    padding: 10px 5px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #ff6a00; }

.form-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.form-btn:hover {
    box-shadow: 0 8px 20px rgba(255,106,0,0.4);
    transform: translateY(-2px);
}

.form-msg { margin-top: 10px; font-size: 13px; color: green; }

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    text-align: center; z-index: 3;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-mouse {
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px; margin: 0 auto 8px;
    display: flex; justify-content: center; padding-top: 6px;
}

.scroll-mouse span {
    display: block; width: 4px; height: 8px;
    background: #ff6a00; border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(0); opacity:1; }
    100% { transform: translateY(14px); opacity:0; }
}

.hero-scroll-hint p { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }

/* =========================================
   STATS BAR
========================================= */
.stats-bar {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    padding: 0;
}

.stat-item {
    text-align: center; padding: 36px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: ''; position: absolute;
    right: 0; top: 25%; height: 50%;
    width: 1px; background: rgba(255,255,255,0.2);
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem; font-weight: 800;
    color: white; line-height: 1;
}

.stat-label {
    font-size: 12px; color: rgba(255,255,255,0.75);
    text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px;
}

/* =========================================
   SECTION UTILITIES
========================================= */
.section-pad     { padding: 90px 0; }
.section-tinted  { background: #f4f6f8; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    color: #ff6a00;
    font-family: 'Syne', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: ''; display: block;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, #ff6a00, transparent);
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
 color: #fff;
    line-height: 1.15;
}

.section-title .gradient-text {
    background: linear-gradient(135deg, #cc4400, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted); font-size: 1rem;
    line-height: 1.75; max-width: 600px;
}

/* Dark Section */
.section-dark {
    background: linear-gradient(135deg, #0b1120 0%, #0d1b2a 100%);
    position: relative; overflow: hidden;
}

.section-dark::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
    background-size: 50px 50px; pointer-events: none;
}

.section-dark .section-title  { color: white; }
.section-dark .section-desc   { color: rgba(255,255,255,0.6); }
.section-dark .section-label  { color: #ff8c42; }

/* =========================================
   ABOUT
========================================= */
#about {
    position: relative;
    background: #ffffff;
}

#about::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(11,17,32,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,17,32,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.about-image-wrap { position: relative; }

.about-img-frame {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    position: relative;
    background: #f0f4f8;
}

.about-img-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.05));
}

.about-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.about-img-frame:hover img { transform: scale(1.05); }

.about-frame-deco {
    position: absolute; inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(11,17,32,0.10);
}

.about-accent-box {
    position: absolute;
    bottom: -20px; right: 20px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    border-radius: 16px;
    padding: 20px 24px;
    color: #fff; text-align: center;
    box-shadow: 0 15px 40px rgba(255,106,0,0.4);
}

.about-accent-box .big-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem; font-weight: 800; line-height: 1;
}

.about-accent-box .small-text {
    font-size: 11px; letter-spacing: 1px;
    opacity: 0.8; text-transform: uppercase;
}

.about-badge-2 {
    position: absolute;
    top: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 -1px 0 rgba(0, 0, 0, 0.04) inset !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.about-badge-2:hover {
    background: rgba(255, 255, 255, 0.72) !important;
    border-color: rgba(255, 140, 66, 0.35) !important;
    box-shadow:
        0 12px 40px rgba(255, 106, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 0 20px rgba(255, 106, 0, 0.06) !important;
    transform: translateY(-2px);
}

.about-badge-2 i {
    color: #ff6a00 !important;
    font-size: 22px !important;
    filter: drop-shadow(0 2px 6px rgba(255, 106, 0, 0.3));
    transition: all 0.4s ease !important;
}

.about-badge-2:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.about-badge-2 span {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0b1120 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.2px;
}

/* ===== MOBILE ===== */
@media (max-width: 767.98px) {
    .about-badge-2 {
        top: 16px !important;
        left: -8px !important;
        padding: 10px 14px !important;
        gap: 8px !important;
        border-radius: 11px !important;
        background: rgba(255, 255, 255, 0.5) !important;
    }

    .about-badge-2 i {
        font-size: 18px !important;
    }

    .about-badge-2 span {
        font-size: 11.5px !important;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .about-badge-2 {
        top: 12px !important;
        left: -4px !important;
        padding: 8px 11px !important;
        gap: 7px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.45) !important;
    }

    .about-badge-2 i {
        font-size: 16px !important;
    }

    .about-badge-2 span {
        font-size: 10.5px !important;
    }
}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1400px) {
    .about-badge-2 {
        top: 36px !important;
        left: -24px !important;
        padding: 16px 22px !important;
        gap: 14px !important;
        border-radius: 16px !important;
    }

    .about-badge-2 i {
        font-size: 24px !important;
    }

    .about-badge-2 span {
        font-size: 14px !important;
    }
}
/* ISO Highlight */
.about-iso-highlight {
    display: inline;
    background: linear-gradient(135deg, rgba(255,106,0,0.10), rgba(255,140,66,0.10));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 8px;
    border-radius: 4px;
    border-left: 3px solid #ff6a00;
    color: #0b1120 !important;
}

/* Timeline */
.about-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: ''; position: absolute;
    left: 12px; top: 0; bottom: 0;
    width: 2px;
    background: rgba(11,17,32,0.12);
}

.timeline-item { position: relative; margin-bottom: 25px; }

.timeline-dot {
    position: absolute;
    left: -2px; top: 0;
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #fff; font-weight: 700;
    box-shadow: 0 0 15px rgba(255,106,0,0.4);
}

.timeline-body { padding-left: 40px; }
.timeline-body h5 { color: #0b1120; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.timeline-body p  { color: #5a6a7a;  font-size: 14px; margin: 0; }

/* Tags */
.expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
    background: rgba(255,106,0,0.06);
    color: #ff6a00;
    border: 1px solid rgba(255,106,0,0.25);
    border-radius: 50px; padding: 6px 16px;
    font-size: 12px; transition: 0.3s;
    cursor: default;
}

.tag:hover {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: white; border-color: transparent;
}

/* Section label & title */
#about .section-label { color: #ff6a00; }
#about .section-title { color: #0b1120; }
#about .section-desc  { color: #5a6a7a; }
#about .gradient-text {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===== MOBILE ===== */
@media (max-width: 991.98px) {
    .about-contact-bar {
        grid-template-columns: 1fr;
    }
    .acb-item-full {
        grid-column: 1;
    }
}

@media (max-width: 767.98px) {
    .about-img-frame {
        height: 360px;
    }

    .about-accent-box {
        bottom: -16px;
        right: 12px;
        padding: 16px 20px;
        border-radius: 12px;
    }

    .about-accent-box .big-num {
        font-size: 1.8rem;
    }

    .about-badge-2 {
        top: 20px;
        left: -10px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .about-badge-2 i { font-size: 18px; }
    .about-badge-2 span { font-size: 12px; }

    .about-iso-highlight {
        font-size: inherit;
        padding: 1px 6px;
        border-left-width: 2px;
    }

    .acb-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .acb-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 14px;
    }

    .acb-info a { font-size: 13px; }
    .acb-info p { font-size: 12px; }
}

@media (max-width: 480px) {
    .about-img-frame {
        height: 280px;
    }

    .about-accent-box {
        bottom: -12px;
        right: 8px;
        padding: 12px 16px;
    }

    .about-accent-box .big-num {
        font-size: 1.5rem;
    }

    .about-accent-box .small-text {
        font-size: 9px;
    }

    .about-badge-2 {
        left: -6px;
        padding: 8px 10px;
        gap: 6px;
    }

    .about-badge-2 i { font-size: 16px; }
    .about-badge-2 span { font-size: 11px; }

    .tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .about-contact-bar {
        gap: 10px;
    }

    .acb-item {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .acb-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        font-size: 13px;
    }
}

@media (min-width: 1400px) {
    .about-img-frame {
        height: 540px;
    }

    .about-accent-box {
        padding: 24px 28px;
        border-radius: 18px;
    }

    .about-accent-box .big-num {
        font-size: 2.5rem;
    }

    .about-badge-2 {
        padding: 14px 18px;
    }

    .about-contact-bar {
        gap: 16px;
    }

    .acb-item {
        padding: 22px 24px;
        border-radius: 16px;
    }

    .acb-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 18px;
    }

    .acb-info a { font-size: 15px; }
    .acb-info p { font-size: 14px; }
}
/* =========================================
   SERVICES
========================================= */
#services {
    position: relative;
    background: #f3f6f8;
    padding-top: 50px;
    overflow: hidden;
}

#services::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 500px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

#services::after {
    content: ''; position: absolute;
    top: 420px; left: 0; width: 100%; height: 160px;
    background: #f3f6f8;
    border-top-left-radius: 100% 120px;
    border-top-right-radius: 100% 120px;
}

#services .section-title { color: #fff; }
#services .section-desc  { color: rgba(255,255,255,0.7); }
#services .container { position: relative; z-index: 1; }

.service-card {
    position: relative; border-radius: 18px;
    overflow: hidden; background: #fff;
    padding: 0 20px 20px; height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-img {
    width: 100%; height: 180px; overflow: hidden;
    border-radius: 18px 18px 0 0; margin-bottom: 20px;
    margin-left: -20px; margin-right: -20px;
    width: calc(100% + 40px);
}

.service-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img { transform: scale(1.05); }

.service-icon {
    position: absolute; top: 140px; left: 25px;
    width: 55px; height: 55px; border-radius: 14px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.service-card h4 { margin-top: 30px; font-size: 17px; font-weight: 700; color: #111; }
.service-card p  { font-size: 14px; color: #666; line-height: 1.6; }

.service-arrow {
    position: absolute; bottom: 15px; right: 15px;
    width: 34px; height: 34px; border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #333; transition: 0.3s;
}

.service-card:hover { transform: translateY(-5px); }
.service-card:hover .service-arrow { background: linear-gradient(135deg, #ff6a00, #ff8c42); color: #fff; }

/* =========================================
   HOW WE WORK
========================================= */
.work-img-frame {
    position: relative; height: 500px;
    border-radius: var(--radius-xl); overflow: hidden;
    background: #0b0f1a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.65), inset 0 0 60px rgba(0,0,0,0.6);
}

.work-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.work-img-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(11,15,26,0.2), rgba(11,15,26,0.65));
    pointer-events: none;
}

.work-img-frame:hover img { transform: scale(1.05); filter: brightness(1.05); }

.work-overlay-badge {
    position: absolute; bottom: 25px; right: 25px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 14px; padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex; align-items: center; gap: 10px; z-index: 2;
}

.work-overlay-badge i { color: #ff6a00; font-size: 22px; }
.work-overlay-badge span { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }

.feature-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.feature-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,106,0,0.3);
    transform: translateX(6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 18px rgba(255,106,0,0.12);
}

.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,106,0,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #ff6a00; font-size: 18px; flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,106,0,0.15);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: #fff; transform: scale(1.05);
}

.feature-item h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.feature-item p  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* =========================================
   PROJECT TYPES
========================================= */
#projects {
    position: relative; background: #f3f6f8;
    padding-top: 50px; overflow: hidden;
}

#projects::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 420px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

#projects::after {
    content: ''; position: absolute;
    top: 320px; left: 0; width: 100%; height: 140px;
    background: #f3f6f8;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px; z-index: 0;
}

#projects .container { position: relative; z-index: 1; }

.project-type-card {
    border-radius: var(--radius-xl); overflow: hidden;
    position: relative; height: 420px; cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }

.project-type-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-color: #1a2a4a;
    transition: transform 0.5s ease;
}
.project-type-card:nth-child(1) .project-type-bg { background-color: #1a2a4a; }
.project-type-card:nth-child(2) .project-type-bg { background-color: #0a2040; }
.project-type-card:nth-child(3) .project-type-bg { background-color: #1a1a2a; }
.project-type-card:hover .project-type-bg { transform: scale(1.06); }

.project-type-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 34px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.pt-number {
    position: absolute; top: 24px; right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 3rem; font-weight: 800;
    color: rgba(255,255,255,0.08); line-height: 1;
}

.pt-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white; margin-bottom: 16px;
}

.pt-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: white; margin-bottom: 10px;
}

.pt-desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }

.pt-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-tags span {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white; font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px; padding: 4px 12px; border-radius: 50px;
}

/* =========================================
   PORTFOLIO
========================================= */
#portfolio {
    position: relative; background: #f3f6f8;
    padding-top: 40px; overflow: hidden;
}

#portfolio::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 420px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

#portfolio::after {
    content: ''; position: absolute;
    top: 320px; left: 0; width: 100%; height: 140px;
    background: #f3f6f8;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px; z-index: 0;
}

#portfolio .container { position: relative; z-index: 1; }

.portfolio-item {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; border-radius: 14px;
    background: white; border: 1px solid rgba(26,42,74,0.08);
    transition: all 0.3s; height: 100%;
}
.portfolio-item:hover { border-color: #ff6a00; transform: translateX(4px); box-shadow: 0 6px 24px rgba(255,106,0,0.1); }

.portfolio-bullet {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,106,0,0.08), rgba(255,140,66,0.12));
    display: flex; align-items: center; justify-content: center;
    color: #ff6a00; font-size: 18px; flex-shrink: 0; transition: all 0.3s;
}
.portfolio-item:hover .portfolio-bullet { background: #ff6a00; color: white; }
.portfolio-item h5 { font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.portfolio-item p  { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* =========================================
   PROJECT DETAIL CARDS
========================================= */
.project-detail-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 26px; height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.project-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,106,0,0.3);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(255,106,0,0.12);
}

.pdc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.pdc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
    box-shadow: 0 6px 20px rgba(255,106,0,0.35);
}

.pdc-cost { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: #ff6a00; }

.project-detail-card h4 { font-size: 16px; color: #fff; margin-bottom: 12px; line-height: 1.35; }

.pdc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.pdc-meta span {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06);
    border-radius: 6px; padding: 4px 10px;
}

.pdc-meta span i { color: #ff6a00; font-size: 10px; }

.pdc-list { list-style: none; padding: 0; margin: 0; }

.pdc-list li {
    font-size: 13px; color: rgba(255,255,255,0.65);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: flex-start; gap: 8px;
}

.pdc-list li:last-child { border-bottom: none; }
.pdc-list li i { color: #ff6a00; font-size: 10px; margin-top: 3px; flex-shrink: 0; }
.pdc-list li.more { color: rgba(255,255,255,0.4); font-style: italic; }

/* =========================================
   SOLAR SECTION — Full CSS with Big Table
========================================= */
.solar-section {
    position: relative !important;
    background: #f3f6f8 !important;
    padding: 90px 0 100px !important;
    overflow: hidden !important;
    isolation: isolate;
}

.solar-section::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 520px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

.solar-section::after {
    content: ''; position: absolute;
    top: 460px; left: 0; width: 100%; height: 100px;
    background: #f3f6f8;
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px; z-index: 0;
}

.solar-section .container { position: relative; z-index: 2; }
.solar-section .section-title { color: #fff; }
.solar-section .section-label { color: #ff6a00; }

/* ── Small Cards ── */
.solar-section .solar-table-card {
    background: linear-gradient(145deg, #0d1117, #111827) !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,106,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solar-section .solar-table-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(255,106,0,0.10);
}

/* Glow blob */
.solar-section .solar-table-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,106,0,0.12);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.solar-section .stc-header {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 60%, #ffb347 100%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Header shine */
.solar-section .stc-header::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    animation: headerShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {
    0%   { left: -60%; }
    50%  { left: 130%; }
    100% { left: 130%; }
}

/* Header icon */
.solar-section .stc-header > i {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.solar-section .stc-header h4 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px; font-weight: 700;
    margin: 0; flex: 1;
}

/* Badge */
.solar-section .stc-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
}

/* Small Table */
.solar-section .solar-table {
    width: 100%;
    border-collapse: collapse;
}

.solar-section .solar-table thead tr {
    background: rgba(255,106,0,0.08);
    border-bottom: 1px solid rgba(255,106,0,0.2);
}

.solar-section .solar-table th {
    background: transparent;
    color: #ff8c42;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,106,0,0.2);
}

.solar-section .solar-table td {
    padding: 13px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
}

.solar-section .solar-table tbody tr:last-child td { border-bottom: none; }

.solar-section .solar-table tbody tr:hover td {
    background: rgba(255,106,0,0.07);
    color: #fff;
}

.solar-section .solar-table tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.solar-section .solar-table td.cap {
    color: #ff8c42;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* ══════════════════════════════════════
   BIG TABLE — Same Design as Small Cards
══════════════════════════════════════ */
.solar-section .solar-big-table-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.solar-section .solar-big-table-header i {
    color: #ff6a00;
    font-size: 20px;
}

.solar-section .solar-big-table-header h4 {
    color: #0b1120;
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 700;
    margin: 0;
}

/* ── KEY CHANGE: Big table wrapper — card style + scroll enabled ── */
.solar-section .table-responsive:has(.solar-table-big) {
    background: linear-gradient(145deg, #0d1117, #111827);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,106,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow-x: auto;       /* horizontal scroll */
    overflow-y: visible;    /* don't clip vertically */
    position: relative;
    /* Custom scrollbar — matches dark card theme */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,106,0,0.4) rgba(255,255,255,0.05);
}

.solar-section .table-responsive:has(.solar-table-big)::-webkit-scrollbar {
    height: 5px;
}

.solar-section .table-responsive:has(.solar-table-big)::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
    border-radius: 0 0 20px 20px;
}

.solar-section .table-responsive:has(.solar-table-big)::-webkit-scrollbar-thumb {
    background: rgba(255,106,0,0.45);
    border-radius: 10px;
}

.solar-section .table-responsive:has(.solar-table-big)::-webkit-scrollbar-thumb:hover {
    background: rgba(255,106,0,0.7);
}

/* Big Table */
.solar-section .solar-table-big {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

/* Big table head — orange gradient like stc-header */
.solar-section .solar-table-big thead tr {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 60%, #ffb347 100%);
    position: relative;
}

.solar-section .solar-table-big th {
    color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
    white-space: nowrap;
}

/* Big table rows */
.solar-section .solar-table-big td {
    padding: 13px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
}

.solar-section .solar-table-big tbody tr:last-child td { border-bottom: none; }

.solar-section .solar-table-big tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.solar-section .solar-table-big tbody tr:hover td {
    background: rgba(255,106,0,0.08);
    color: #fff;
}

/* Value column — orange */
.solar-section .solar-table-big td.val {
    color: #ff8c42;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .solar-section::before { height: 420px !important; }
    .solar-section::after  { top: 370px !important; height: 90px !important; }
}

@media (max-width: 767px) {
    .solar-section::before { height: 650px !important; }
    .solar-section::after  { top: 600px !important; height: 80px !important; }

    .solar-section .stc-header { flex-wrap: wrap !important; padding: 14px 16px !important; }
    .solar-section .stc-header h4 { font-size: 14px !important; }
    .solar-section .stc-badge { font-size: 9px !important; }

    .solar-section .solar-table { min-width: 380px; }
    .solar-section .solar-table th,
    .solar-section .solar-table td { padding: 10px 12px !important; font-size: 12px !important; }

    .solar-section .solar-table-big { min-width: 600px; }
    .solar-section .solar-table-big th,
    .solar-section .solar-table-big td { padding: 11px 14px !important; font-size: 12px !important; }

    .solar-section .solar-big-table-header h4 { font-size: 15px !important; }
}

@media (max-width: 575px) {
    .solar-section::before { height: 750px !important; }
    .solar-section::after  { top: 700px !important; height: 70px !important; }

    .solar-section .solar-table { min-width: 340px; }
    .solar-section .solar-table-big { min-width: 520px; }
    .solar-section .solar-table-big th,
    .solar-section .solar-table-big td { padding: 10px 12px !important; font-size: 11px !important; }
}

@media (max-width: 400px) {
    .solar-section::before { height: 850px !important; }
    .solar-section::after  { top: 800px !important; height: 60px !important; }
    .solar-section .solar-table-big { min-width: 460px; }
}



/* =========================================
   SOLAR SECTION — Mobile Complete Fix
========================================= */

@media (max-width: 767px) {
    .solar-section::before {
        height: 650px !important;
    }
    .solar-section::after {
        top: 600px !important;
        height: 80px !important;
    }
}

@media (max-width: 575px) {
    .solar-section::before {
        height: 750px !important;
    }
    .solar-section::after {
        top: 700px !important;
        height: 70px !important;
    }
}

@media (max-width: 400px) {
    .solar-section::before {
        height: 850px !important;
    }
    .solar-section::after {
        top: 800px !important;
        height: 60px !important;
    }
}




/* =========================================


   GALLERY
========================================= */
.section-grid-bg {
    position: relative; background: #f3f6f8;
    padding-top: 90px; padding-bottom: 100px; overflow: hidden;
}

.section-grid-bg::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 420px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

.section-grid-bg::after {
    content: ''; position: absolute;
    top: 320px; left: 0; width: 100%; height: 160px;
    background: radial-gradient(120% 120px at 50% -20px, transparent 70%, #f3f6f8 71%);
    z-index: 1;
}

.section-grid-bg .container { position: relative; z-index: 2; }
.section-grid-bg .section-title,
.section-grid-bg .section-label,
.section-grid-bg .section-desc { color: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative; border-radius: 16px; overflow: hidden;
    height: 260px; cursor: pointer; background: #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
}

.gallery-item-bg { position: absolute; inset: 0; }

.gallery-item-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: space-between; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    opacity: 0; transition: all 0.35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.gallery-info p  { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }

.gallery-overlay i {
    align-self: flex-end;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,106,0,0.9); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay i { transform: scale(1.1); }

.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    pointer-events: none;
}

/* =========================================
   CLIENTS
========================================= */
#clients.section-tinted {
    position: relative;
    background: #0b0f1a !important;
    overflow: hidden;
    padding: 90px 0;
}

#clients.section-tinted::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

/* Orange glow blobs — background decoration */
#clients.section-tinted::after {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none; z-index: 0;
}

#clients .container { position: relative; z-index: 2; }

/* Heading */
#clients .section-title,
#clients .section-label,
#clients .section-desc { color: #fff !important; }

#clients .section-label {
    color: #ff6a00 !important;
    letter-spacing: 2.5px;
}

#clients .gradient-text {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Logo Card ── */
#clients .client-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 4px 15px rgba(0,0,0,0.3),
        0 1px 4px rgba(0,0,0,0.2);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Shine effect on hover */
#clients .client-logo-wrap::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,106,0,0.10) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Orange bottom border accent on hover */
#clients .client-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ff6a00, #ff8c42);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

#clients .client-logo-wrap:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255,106,0,0.4);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 30px rgba(255,106,0,0.20),
        0 4px 15px rgba(0,0,0,0.3);
    background: #ffffff;
}

#clients .client-logo-wrap:hover::before { opacity: 1; }
#clients .client-logo-wrap:hover::after  { transform: scaleX(1); }

/* Logo Image */
#clients .client-logo-wrap img {
    max-width: 120px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: none;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

#clients .client-logo-wrap:hover img {
    transform: scale(1.08);
    filter: none;
}

/* Fallback text — jab image load na ho */
#clients .client-logo-wrap span.client-fallback {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0b1120;
    text-align: center;
    line-height: 1.4;
    padding: 4px 6px;
    position: relative;
    z-index: 1;
}

/* Grid layout tweak */
#clients .row.g-3 {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    #clients .client-logo-wrap {
        height: 88px;
        padding: 16px 14px;
    }
    #clients .client-logo-wrap img {
        max-width: 100px;
        max-height: 44px;
    }
}

@media (max-width: 575px) {
    #clients .client-logo-wrap {
        height: 80px;
        padding: 14px 12px;
        border-radius: 12px;
    }
    #clients .client-logo-wrap img {
        max-width: 85px;
        max-height: 38px;
    }
    #clients .client-logo-wrap:hover {
        transform: translateY(-4px) scale(1.02);
    }
}
/* =========================================
   CONTACT
========================================= */
.contact-info-card {
    background: linear-gradient(135deg, #0b1120, #0d1b2a);
    border-radius: var(--radius-xl); padding: 44px 38px;
    height: 100%; position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,106,0,0.15); filter: blur(40px); pointer-events: none;
}
.contact-info-card > * { position: relative; z-index: 1; }

.contact-info-top { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }

.cic-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,106,0,0.2); border: 2px solid rgba(255,106,0,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #ff8c42; font-size: 26px; flex-shrink: 0;
}

.contact-info-card h3 { color: white; font-size: 1.5rem; margin-bottom: 4px; }
.contact-info-card .subtitle { color: #ff8c42; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin: 0; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }

.cd-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,106,0,0.15);
    display: flex; align-items: center; justify-content: center;
    color: #ff8c42; font-size: 16px; flex-shrink: 0;
}

.contact-detail h6 { font-family: 'Syne', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.contact-detail p  { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; line-height: 1.5; }

.gst-info {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 18px; margin-top: 24px;
}
.gst-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.gst-row:last-child { margin: 0; }
.gst-label { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #ff8c42; min-width: 34px; }
.gst-val { color: rgba(255,255,255,0.75); font-size: 13px; }

.contact-form-card {
    background: white; border-radius: var(--radius-xl);
    padding: 44px 38px; height: 100%;
    box-shadow: 0 20px 60px rgba(255,106,0,0.08);
}
.contact-form-card h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 6px; }
.contact-form-card .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

.form-label {
    font-family: 'Syne', sans-serif; font-size: 11px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); margin-bottom: 8px;
}

.form-control {
    border: 1.5px solid rgba(26,42,74,0.12);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: var(--text-dark);
    transition: all 0.3s; font-family: 'DM Sans', sans-serif;
    width: 100%;
}
.form-control:focus { border-color: #ff6a00; box-shadow: 0 0 0 4px rgba(255,106,0,0.1); outline: none; }
.form-control::placeholder { color: rgba(90,106,122,0.45); }

.btn-submit {
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    color: white; border: none;
    padding: 14px 40px; border-radius: 50px;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 15px; letter-spacing: 0.5px;
    width: 100%; transition: all 0.3s; cursor: pointer;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,106,0,0.35); }

.alert-success-custom {
    background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.3);
    color: #cc4400; border-radius: 10px;
    padding: 14px 18px; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.alert-error-custom {
    background: rgba(220,53,69,0.08); border: 1px solid rgba(220,53,69,0.2);
    color: #842029; border-radius: 10px;
    padding: 14px 18px; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px; font-size: 14px;
}

#contact.section-pad {
    position: relative; background: #f3f6f8;
    padding-top: 40px; padding-bottom: 100px; overflow: hidden;
}

#contact.section-pad::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 360px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

#contact.section-pad::after {
    content: ''; position: absolute;
    top: 300px; left: 50%; transform: translateX(-50%);
    width: 120%; height: 120px; background: #f3f6f8;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px; z-index: 1;
}

#contact .container { position: relative; z-index: 2; }
#contact .section-title, #contact .section-label, #contact .section-desc { color: #ffffff; }
#contact .contact-info-card, #contact .contact-form-card { position: relative; z-index: 3; margin-top: 0; }
#contact .contact-form-card { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
#contact .contact-info-card { box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

/* =========================================
   ELECTRICAL SECTION
========================================= */
.electrical-section {
    position: relative !important; background: #f3f6f8 !important;
    padding: 90px 0 100px !important; overflow: hidden !important; isolation: isolate;
}

.electrical-section::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 500px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

.electrical-section::after {
    content: ''; position: absolute;
    top: 430px; left: 0; width: 100%; height: 120px;
    background: #f3f6f8;
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px; z-index: 1;
}

.electrical-section .container { position: relative; z-index: 2; }
.electrical-section .section-title { color: #ffffff; }
.electrical-section .section-label { color: #ff6a00; }

.electrical-section .project-detail-card {
    position: relative; z-index: 3;
    background: rgba(20, 25, 35, 0.9);
    backdrop-filter: blur(12px); border-radius: 18px; padding: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.electrical-section .project-detail-card:hover {
    transform: translateY(-6px); background: rgba(25, 30, 45, 0.95);
    border-color: rgba(255,106,0,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 25px rgba(255,106,0,0.15);
}

.electrical-section .project-detail-card::before,
.electrical-section .project-detail-card::after { display: none !important; }

.electrical-section .pdc-icon { background: linear-gradient(135deg, #ff6a00, #ff8c42); color: #fff; }
.electrical-section .project-detail-card h4 { color: #ffffff; }
.electrical-section .pdc-meta span { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }
.electrical-section .pdc-meta span i { color: #ff6a00; }
.electrical-section .pdc-list li { color: rgba(255,255,255,0.75); }
.electrical-section .pdc-list li i { color: #ff6a00; }
.electrical-section .pdc-list li.more { color: rgba(255,255,255,0.5); }
.electrical-section .row.g-4 { margin-top: 40px; }

/* =========================================
   INSTRUMENTATION SECTION
========================================= */
.instrumentation-section {
    position: relative; background: #f3f6f8;
    padding: 90px 0 100px; overflow: hidden;
}

.instrumentation-section::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 420px;
    background: #0b0f1a;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 0;
}

.instrumentation-section::after {
    content: ''; position: absolute;
    top: 360px; left: 0; width: 100%; height: 90px;
    background: #f3f6f8;
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px; z-index: 0;
}

.instrumentation-section .container { position: relative; z-index: 2; }
.instrumentation-section .section-title { color: #fff; }

.instrumentation-section .project-detail-card {
    background: linear-gradient(145deg, #0b0f1a, #111827);
    border-radius: 18px; padding: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(255,106,0,0.05);
    transition: all 0.35s ease; position: relative; z-index: 3;
}

.instrumentation-section .project-detail-card:hover {
    transform: translateY(-6px); background: linear-gradient(145deg, #0b0f1a, #111827);
    border-color: rgba(255,106,0,0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 25px rgba(255,106,0,0.12);
}

.instrumentation-section .pdc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px;
}

.instrumentation-section h4 { color: #fff; }
.instrumentation-section .pdc-cost { color: #ff6a00; }
.instrumentation-section .pdc-meta span { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.instrumentation-section .pdc-list li { color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.06); }
.instrumentation-section .pdc-list li i { color: #ff6a00; }

/* =========================================
   FOOTER
========================================= */
footer {
    background: #040a0a;
    padding: 60px 0 0;
    position: relative;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* ===== FOOTER BRAND SECTION ===== */
.footer-brand .fb-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-top: 12px;
}

.footer-brand > p {
    color: rgba(255,255,255,0.42);
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 14px;
}

.footer-reg {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px;
}
.footer-reg span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.28);
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover {
    background: #ff6a00;
    border-color: #ff6a00;
    color: white;
    transform: translateY(-2px);
}

/* ===== FOOTER HEADINGS ===== */
footer h5 {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== FOOTER LINKS ===== */
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a {
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}
footer ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: #ff8c42;
    transition: width 0.3s;
}
footer ul li a:hover { color: #ff8c42; }
footer ul li a:hover::before { width: 12px; }

/* ===== LOCATIONS ===== */
.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.footer-loc-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-loc-item i {
    color: #ff8c42;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-loc-item span {
    color: rgba(255,255,255,0.42);
    font-size: 13.5px;
    line-height: 1.4;
}

/* ===== REACH US DIRECTLY BOX — COMPACT & STACKED ===== */
.footer-contact-box {
    background: rgba(255,106,0,0.06);
    border: 1px solid rgba(255,106,0,0.12);
    border-radius: 8px;
    padding: 8px 12px;
    width: fit-content;
    max-width: 100%;
}

.footer-contact-box p {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    font-weight: 600;
}

.footer-contact-box a {
    color: #ff8c42;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
}

.footer-contact-box a:hover { color: #ff6a00; }

/* ===== MOBILE ===== */
@media (max-width: 767.98px) {
    .footer-contact-box {
        padding: 7px 10px;
    }
    .footer-contact-box p { font-size: 9px; margin-bottom: 2px; }
    .footer-contact-box a { font-size: 11px; }
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 12.5px;
    margin: 0;
}
.footer-bottom .credits { display: flex; gap: 18px; }
.footer-bottom .credits a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.3s;
}
.footer-bottom .credits a:hover { color: #ff8c42; }

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {
    footer {
        padding: 45px 0 0;
    }
    .footer-bottom {
        margin-top: 40px;
    }
    .footer-contact-box {
        padding: 12px 14px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767.98px) {
    footer {
        padding: 30px 0 0 !important;
        margin-top: 0 !important;
    }

    .footer-brand .fb-name {
        margin-top: 10px;
    }

    footer h5 {
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    footer ul li { margin-bottom: 6px; }
    footer ul li a { font-size: 13px; }

    .footer-locations { gap: 6px; margin-bottom: 18px; }
    .footer-loc-item span { font-size: 13px; }

    .footer-contact-box {
        padding: 12px 14px;
        border-radius: 8px;
    }
    .footer-contact-box p { font-size: 10px; margin-bottom: 5px; }
    .footer-contact-box a { font-size: 12.5px; }

    .footer-bottom {
        margin-top: 28px !important;
        padding: 16px 0 !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-bottom p,
    .footer-bottom .credits a { font-size: 12px; }

    /* Form section ke neeche gap remove */
    .contact-section,
    .form-section,
    section {
        margin-bottom: 0 !important;
        padding-bottom: 20px !important;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    footer {
        padding: 24px 0 0 !important;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .footer-contact-box {
        padding: 10px 12px;
    }
}
/* =========================================
   BACK TO TOP
========================================= */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 9990;
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, #ff6a00, #ff8c42);
    border: none; color: white; font-size: 16px;
    cursor: pointer; opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255,106,0,0.4);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,106,0,0.5); }

/* =========================================
   ANIMATIONS
========================================= */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE — LARGE DESKTOP (1400px+)
========================================= */
@media (min-width: 1400px) {
    .nav-pill .nav-item { padding: 10px 20px; font-size: 15px; }
}

/* =========================================
   RESPONSIVE — TABLET LANDSCAPE (992–1199px)
========================================= */
@media (max-width: 1199px) {
    .nav-center { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .quote-btn { display: block; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-img-frame { height: 420px; }
    .work-img-frame { height: 420px; }

    .hero-stats { gap: 24px; }
    .contact-form-card, .contact-info-card { padding: 36px 28px; }
}

/* =========================================
   RESPONSIVE — TABLET (768–991px)
========================================= */
@media (max-width: 991px) {
    /* Navbar */
    .nav-center { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .quote-btn { display: none; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* About */
    .about-accent-box { right: 0; bottom: -16px; padding: 16px 18px; }
    .about-badge-2 { left: 0; }
    .about-img-frame { height: 380px; }

    /* Hero */
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-visual { margin-top: 40px; }
    .request-card { margin-left: 0; max-width: 100%; }

    /* Work */
    .work-img-frame { height: 380px; margin-bottom: 30px; }

    /* Stats */
    .stat-item:not(:last-child)::after { display: none; }

    /* Tables */
    .solar-table-big { font-size: 13px; }
    .solar-table-big th, .solar-table-big td { padding: 11px 14px; }

    /* Contact */
    .contact-form-card, .contact-info-card { padding: 32px 24px; }

    /* Project */
    .project-type-card { height: 380px; }

    /* Footer */
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .credits { justify-content: center; }
}

/* =========================================
   RESPONSIVE — MOBILE LANDSCAPE (576–767px)
========================================= */
@media (max-width: 767px) {
    /* Top bar */
    .top-bar { height: auto; min-height: 40px; }
    .top-bar .container { flex-direction: row; flex-wrap: wrap; gap: 4px; padding: 6px 16px; }
    .top-left { gap: 12px; }
    .top-left a { font-size: 12px; }

    body { padding-top: 40px; }

    /* Nav */
    .nav-container { padding: 0 16px; }
    .brand-name { font-size: 16px; }
    .brand-tagline { font-size: 11px; }
    .logo-img { height: 40px; }

    /* Section padding */
    .section-pad { padding: 60px 0; }

    /* Hero */
    .hero { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
    .hero h1, .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-desc { font-size: 15px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary-glow, .btn-outline-light-glow {
        text-align: center; justify-content: center;
        padding: 13px 24px; font-size: 14px; width: 100%;
    }
    .hero-stats { gap: 14px; margin-top: 28px; flex-wrap: wrap; }
    .hero-stat .num { font-size: 1.5rem; }
    .hero-stat { padding-right: 14px; }
    .hero-scroll-hint { display: none; }
    .hero-visual { margin-top: 36px; }
    .request-card { padding: 26px 22px; }

    /* Stats bar */
    .stat-num { font-size: 2rem; }
    .stat-item { padding: 28px 16px; }

    /* About */
    .about-img-frame { height: 300px; }
    .about-accent-box { right: 10px; bottom: -10px; padding: 14px 16px; }
    .about-accent-box .big-num { font-size: 1.8rem; }
    .about-badge-2 { left: 10px; top: 20px; padding: 10px 14px; }

    /* Services */
    #services::before { height: 420px; }
    #services::after { top: 360px; }

    /* Work */
    .work-img-frame { height: 280px; }
    .feature-item { padding: 16px 18px; gap: 14px; }

    /* Projects */
    .project-type-card { height: 320px; }
    .pt-title { font-size: 1.25rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gallery-item { height: 200px; }

    /* Contact */
    .contact-form-card, .contact-info-card { padding: 28px 20px; border-radius: 18px; }
    .contact-info-top { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Solar */
    .solar-section::before { height: 300px; }
    .solar-section::after { top: 260px; height: 70px; }
    .solar-section .solar-table th,
    .solar-section .solar-table td { padding: 10px 12px; font-size: 12px; }

    /* Electrical */
    .electrical-section::before { height: 350px; }
    .electrical-section::after { top: 310px; height: 90px; }

    /* Instrumentation */
    .instrumentation-section::before { height: 300px; }
    .instrumentation-section::after { top: 260px; height: 70px; }

    /* Footer */
    footer { padding: 60px 0 0; }
    .footer-bottom { margin-top: 40px; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (max 575px)
========================================= */
@media (max-width: 575px) {
    /* Top bar — phone */
    .top-bar .container { flex-direction: column; justify-content: center; gap: 4px; height: auto; padding: 6px 16px; }
    .top-left { justify-content: center; gap: 10px; }
    body { padding-top: 56px; } /* taller top bar */

    /* Nav */
    .nav-container { padding: 0 14px; }
    .brand-name { font-size: 15px; }
    .logo-img { height: 36px; }

    /* Hero */
    .hero { padding-top: 80px; }
    .hero-title, .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .hero-tagline { font-size: 1rem; }
    .hero-stat .num { font-size: 1.3rem; }
    .hero-stats { gap: 10px; }
    .hero-stat:not(:last-child)::after { display: none; }
    .hero-stat { padding-right: 0; }
    .rating-number { font-size: 30px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery-item { height: 160px; }

    /* Stats bar */
    .stats-bar .row { flex-direction: row; flex-wrap: wrap; }
    .stat-item { flex: 0 0 50%; max-width: 50%; }

    /* Project cards */
    .project-type-card { height: 300px; }
    .pt-desc { display: none; }

    /* Contact cards */
    .contact-form-card, .contact-info-card { padding: 24px 16px; }

    /* Mobile menu narrower */
    .mobile-menu { width: 280px; }

    /* Solar table scroll wrapper */
    .solar-table-wrapper, .stc-body { overflow-x: auto; }
    .solar-section .solar-table { min-width: 460px; }
    .solar-section .solar-table-big { min-width: 520px; }

    /* Sections */
    .section-pad { padding: 50px 0; }

    /* Footer */
    .footer-bottom .credits { flex-direction: column; gap: 8px; align-items: center; }
}

/* =========================================
   RESPONSIVE — EXTRA SMALL (max 400px)
========================================= */
@media (max-width: 400px) {
    .hero-title, .hero h1 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .stat-item { flex: 0 0 100%; max-width: 100%; }
    .mobile-menu { width: 100%; border-left: none; }
}

/* =========================================
   CONTAINER RESPONSIVE PADDING
========================================= */
@media (max-width: 767px) {
    .container, [class*="container-"] {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================================
   TABLE RESPONSIVE
========================================= */
.table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

/* =========================================
   SCROLLBAR
========================================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0b0f1a; }
::-webkit-scrollbar-thumb { background: #ff6a00; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff8c42; }

.nav-toggle {
    background: rgba(11,17,32,0.06);
    border: 1px solid rgba(11,17,32,0.12);
}
.nav-toggle span {
    background: #0b1120;
}





/* =========================================
   TOP BAR ABOVE NAV — NO OVERLAP
========================================= */

/* Top bar — normal flow, above nav */
.top-bar {
    position: static !important;
}

/* Remove artificial body offset */
body {
    padding-top: 0 !important;
}

/* Nav sticks at top on scroll */
.header-area {
    top: 0 !important;
}

/* Remove site-content offset */
.site-content {
    padding-top: 0 !important;
}

/* Hero — just nav height gap */
.hero {
    padding-top: 70px !important;
    min-height: auto !important;
}

/* Tablet */
@media (max-width: 991px) {
    .hero {
        padding-top: 65px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #mainNav {
        padding: 8px 0 !important;
    }

    .hero {
        padding-top: 15px !important;
        padding-bottom: 40px !important;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .hero {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
    }
}

/* Hamburger click fix — z-index */
.nav-right {
    z-index: 10 !important;
}

.nav-toggle {
    z-index: 10 !important;
    position: relative;
}

/* ===== FOOTER LOGO WHITE BACKGROUND — !important override ===== */
footer .footer-logo {
    background: #ffffff !important;
    border-radius: 6px !important;
    padding: 2px 4px !important;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    width: 210px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

footer .footer-logo:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.15) !important;
}

/* ===== MOBILE ===== */
@media (max-width: 767.98px) {
    footer .footer-logo {
        width: 170px !important;
        padding: 2px 3px !important;
        border-radius: 5px !important;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    footer .footer-logo {
        width: 145px !important;
        padding: 1px 3px !important;
        border-radius: 4px !important;
    }
}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1400px) {
    footer .footer-logo {
        width: 240px !important;
        padding: 3px 5px !important;
        border-radius: 7px !important;
    }
}

/* ===== TOP BAR MOBILE - LEVOS STYLE ===== */
@media (max-width: 768px) {
    .top-bar {
        background-color: #e85d04 !important;
        padding: 0 !important;
    }

    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        flex-wrap: nowrap !important;
    }

    .top-left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
    }

    /* Email hide karo mobile me - sirf phone dikhao */
    .top-left span:nth-child(2) {
        display: none !important;
    }

    .top-left span:nth-child(1) {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }

    .top-left span:nth-child(1) i {
        color: #ffffff !important;
        font-size: 13px !important;
    }

    .top-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .top-right a {
        color: #ffffff !important;
        font-size: 14px !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        border-radius: 0 !important;
        text-decoration: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        background:
            linear-gradient(to right,
                rgba(5,10,20,0.95) 0%,
                rgba(5,10,20,0.85) 40%,
                rgba(5,10,20,0.4) 70%,
                rgba(5,10,20,0.1) 100%
            ),
            url('../images/hero2.webp') center center / cover no-repeat !important;
        background-attachment: scroll !important;
        -webkit-background-size: cover !important;
        background-size: cover !important;
        min-height: 100svh !important;
    }
}

.menu-overlay {
    pointer-events: none;
}
