:root {
    --primary: #0248a3;
    --accent: #ffc107;
    --dark: #0a1118;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }

/* --- MARQUEE --- */
.top-marquee {
    background: var(--dark);
    color: var(--accent);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid var(--accent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span { font-size: 12px; font-weight: 600; margin-right: 50px; text-transform: uppercase; }
.marquee-content i { margin-right: 8px; color: #fff; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- NAVBAR --- */
.main-header { position: fixed; top: 0; width: 100%; z-index: 1000; }

.navbar {
    background: rgba(2, 72, 163, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

/* --- LOGO IMAGE STYLING --- */
.logo-area { display: flex; align-items: center; gap: 12px; }

.logo-img-wrapper {
    width: 65px; height: 65px;
    background: #fff;
    padding: 2px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.site-logo {
    width: 100%; height: 100%;
    object-fit: contain; /* Taki logo ka shape na bigde */
}

/* .logo-area:hover .logo-img-wrapper { transform: rotate(360deg); } */

.brand-info h1 { font-size: 30px; color: white; letter-spacing: 0.5px; font-weight: 800; line-height: 1; }
.brand-info p { font-size: 20px; color: var(--accent); font-weight: bold; letter-spacing: 2px;margin-top: 10px; }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a {
    color: white; text-decoration: none; font-size: 14px; font-weight: 600;
    transition: var(--transition); display: flex; align-items: center; gap: 7px;
}
.nav-links a:hover { color: var(--accent); transform: scale(1.1); }

/* --- MOBILE NAV --- */
.hamburger { display: none; color: white; font-size: 26px; cursor: pointer; transition: 0.3s; }
.hamburger:hover { color: var(--accent); }

.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background: var(--dark); z-index: 2000; padding: 70px 30px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.mobile-nav.active { right: 0; box-shadow: -15px 0 40px rgba(0,0,0,0.6); }
.close-nav { position: absolute; top: 20px; right: 25px; color: white; font-size: 35px; cursor: pointer; }

.mobile-nav ul { list-style: none; }
.mobile-nav ul li { margin: 35px 0; border-bottom: 1px solid #1e2a3a; padding-bottom: 12px; }
.mobile-nav ul li a { color: white; text-decoration: none; font-size: 19px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.mobile-nav ul li a:hover { color: var(--accent); padding-left: 10px; }

/* --- FOOTER --- */
.footer { background: var(--dark); color: white; padding: 70px 20px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; }
.footer-col h3 { color: var(--accent); font-size: 19px; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; border-bottom: 2px solid #1e2a3a; padding-bottom: 10px; }
.footer-col p { font-size: 14px; color: #b0b0b0; line-height: 1.8; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a {
    width: 42px; height: 42px; background: #1e2a3a; color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; transition: 0.5s; text-decoration: none;
}
.social-links a:hover { background: var(--accent); color: #000; transform: translateY(-8px) rotate(360deg); }

.q-links { list-style: none; }
.q-links li { margin-bottom: 15px; }
.q-links a { color: #b0b0b0; text-decoration: none; font-size: 14px; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.q-links a:hover { color: var(--accent); padding-left: 12px; }

.contact-box p { margin-bottom: 18px; display: flex; align-items: center; gap: 15px; font-size: 14px; color: #b0b0b0; }
.contact-box i { color: var(--accent); font-size: 18px; }

.footer-bottom { text-align: center; margin-top: 60px; padding-top: 25px; border-top: 1px solid #1e2a3a; font-size: 12px; color: #666; }

/* --- KEYFRAMES --- */
@keyframes blink { from { opacity: 0.4; transform: scale(1); } to { opacity: 1; transform: scale(1.1); } }
/* home start============== */
/* Container */
.premium-hero {
    width: 100%;
    height: 85vh; /* Desktop Height */
    position: relative;
    overflow: hidden;
}

.swiper { width: 100%; height: 100%; }

/* Background with Ken Burns Effect */
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear; /* Smooth Zoom */
}

/* Jab slide active ho tab zoom ho */
.swiper-slide-active .slide-bg {
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(2, 72, 163, 0.9), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    color: #fff;
}

/* Layered Animations */
.sub-title {
    font-size: 16px; color: var(--accent, #ffc107);
    font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 10px; opacity: 0; transform: translateX(-50px);
    transition: 0.8s ease;
}

.main-title {
    font-size: 55px; font-weight: 900; line-height: 1.1;
    margin-bottom: 20px; opacity: 0; transform: translateY(50px);
    transition: 0.8s ease 0.2s;
}

.main-title span { color: var(--accent, #ffc107); }

.desc {
    font-size: 18px; max-width: 500px; margin-bottom: 35px;
    color: #ddd; opacity: 0; transform: translateY(30px);
    transition: 0.8s ease 0.4s;
}

/* Active Animations Trigger */
.swiper-slide-active .sub-title,
.swiper-slide-active .main-title,
.swiper-slide-active .desc,
.swiper-slide-active .btn-yellow,
.swiper-slide-active .btn-blue {
    opacity: 1; transform: translate(0);
}

/* Buttons */
.btn-yellow, .btn-blue {
    display: inline-block; width: max-content;
    padding: 15px 35px; border-radius: 50px;
    text-decoration: none; font-weight: 700;
    text-transform: uppercase; font-size: 14px;
    transition: 0.4s; opacity: 0; transform: scale(0.8);
}

.btn-yellow { background: #ffc107; color: #000; box-shadow: 0 10px 20px rgba(255,193,7,0.3); }
.btn-blue { background: #0248a3; color: #fff; box-shadow: 0 10px 20px rgba(2,72,163,0.3); }

.btn-yellow:hover, .btn-blue:hover { transform: translateY(-5px) scale(1.05); filter: brightness(1.1); }

/* Custom Nav Dots */
.swiper-pagination-bullet { background: #fff !important; opacity: 0.5; }
.swiper-pagination-bullet-active { background: #ffc107 !important; opacity: 1; width: 30px; border-radius: 5px; }


/* About Section Styles */
.about-section {
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Visuals Side */
.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    z-index: 2;
}

.img-1 {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary, #0248a3);
    transition: 0.5s;
}

.img-1:hover { transform: translate(5px, 5px); box-shadow: 10px 10px 0px var(--primary); }

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--accent, #ffc107);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 3s infinite ease-in-out;
}

.exp-badge .num { display: block; font-size: 28px; font-weight: 900; color: #000; }
.exp-badge .txt { font-size: 12px; font-weight: 700; color: #000; text-transform: uppercase; }

/* Text Side */
.sub-heading { color: var(--primary, #0248a3); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }
.main-heading { font-size: 42px; font-weight: 800; margin: 15px 0; line-height: 1.2; color: #111; }
.main-heading span { color: var(--primary, #0248a3); }
.description { color: #666; line-height: 1.7; margin-bottom: 30px; }

.about-features { margin-bottom: 40px; }
.feat-item { display: flex; gap: 15px; margin-bottom: 20px; }
.feat-icon { 
    min-width: 45px; height: 45px; background: rgba(2, 72, 163, 0.1); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    color: var(--primary, #0248a3); font-size: 18px; 
}
.feat-info h4 { font-size: 18px; color: #222; margin-bottom: 5px; }
.feat-info p { font-size: 14px; color: #777; }

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary, #0248a3);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
}
.about-btn:hover { background: var(--accent, #ffc107); color: #000; transform: translateX(10px); }

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Reveals (Initial State) */
.reveal-left { opacity: 0; transform: translateX(-100px); transition: 1s ease; }
.reveal-right { opacity: 0; transform: translateX(100px); transition: 1s ease; }

/* Active Class (Triggered by JS) */
.reveal-active { opacity: 1; transform: translate(0); }
/* NHE Prefix used to avoid conflicts */
.nhe-service-container {
    padding: 80px 20px;
    background-color: #f9fbff;
    overflow: hidden;
}

.nhe-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.nhe-main-header {
    text-align: center;
    margin-bottom: 60px;
}

.nhe-sub-txt {
    color: #0248a3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
}

.nhe-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 10px 0;
}

.nhe-main-title span { color: #0248a3; }

.nhe-title-line {
    width: 60px; height: 4px;
    background: #ffc107;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Layout */
.nhe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

/* Card Styling */
.nhe-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.nhe-card-media {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.nhe-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.nhe-overlay-icon {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 72, 163, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.nhe-overlay-icon i {
    font-size: 45px;
    color: #ffc107;
    transform: scale(0.3);
    transition: 0.4s ease;
}

.nhe-card-info { padding: 30px; text-align: center; }
.nhe-card-h3 { font-size: 22px; color: #222; margin-bottom: 12px; font-weight: 700; }
.nhe-card-p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 25px; }

/* NHE Unique Button */
.nhe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #0248a3;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 13px;
    transition: 0.3s;
}

/* HOVER ANIMATIONS */
.nhe-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(2, 72, 163, 0.15); border-color: #0248a3; }
.nhe-card:hover .nhe-img { transform: scale(1.15) rotate(2deg); }
.nhe-card:hover .nhe-overlay-icon { opacity: 1; }
.nhe-card:hover .nhe-overlay-icon i { transform: scale(1); }
.nhe-btn:hover { background: #ffc107; color: #000; transform: scale(1.05); }

/* SCROLL REVEAL ANIMATION */
.nhe-reveal { opacity: 0; transform: translateY(60px); transition: 1s ease-out; }
.nhe-reveal.nhe-active { opacity: 1; transform: translateY(0); }
/* NHE Why Choose Section - Dark Mode */
.nhe-why-section {
    background-color: #050a10; /* Deep Dark Navy */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Glows */
.nhe-why-section::before {
    content: ''; position: absolute; top: -10%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(2, 72, 163, 0.2) 0%, transparent 70%);
    filter: blur(50px); z-index: 0;
}

.nhe-why-wrapper {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
}

/* Header */
.nhe-why-header { text-align: center; margin-bottom: 60px; }

.nhe-why-badge {
    color: #ffc107; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; font-size: 13px; border: 1px solid #ffc107;
    padding: 5px 15px; border-radius: 50px; display: inline-block;
    margin-bottom: 15px;
}

.nhe-why-title { font-size: 42px; font-weight: 800; color: #fff; }
.nhe-why-title span { color: #0248a3; text-shadow: 0 0 15px rgba(2, 72, 163, 0.5); }
.nhe-why-desc { color: #999; max-width: 600px; margin: 20px auto 0; font-size: 16px; }

/* Grid & Cards */
.nhe-why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nhe-why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px; border-radius: 25px;
    text-align: center; transition: all 0.4s ease;
    position: relative;
}

.nhe-why-icon {
    width: 70px; height: 70px; background: #0248a3;
    color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 25px;
    position: relative; z-index: 2;
    transition: 0.5s;
}

.nhe-icon-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #0248a3; border-radius: 50%; filter: blur(15px);
    z-index: -1; opacity: 0.3; transition: 0.5s;
}

.nhe-why-card h3 { color: #fff; font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.nhe-why-card p { color: #888; font-size: 14px; line-height: 1.6; }

/* Hover Effects */
.nhe-why-card:hover {
    background: rgba(2, 72, 163, 0.1);
    border-color: #0248a3;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nhe-why-card:hover .nhe-why-icon {
    background: #ffc107; color: #000;
    transform: rotateY(360deg);
}

.nhe-why-card:hover .nhe-icon-glow {
    background: #ffc107; opacity: 0.6; filter: blur(20px);
}

/* Scroll Animation Initial State */
.nhe-reveal { opacity: 0; transform: translateY(50px); transition: 1s ease; }
.nhe-reveal.nhe-active { opacity: 1; transform: translateY(0); }
/* NHE Contact Section Base Styles */
.nhe-contact-section {
    padding: 80px 20px;
    background-color: #f4f7fa;
    overflow: hidden;
}

.nhe-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.nhe-contact-header { text-align: center; margin-bottom: 50px; }

.nhe-contact-badge {
    color: #0248a3; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; font-size: 12px; background: rgba(2, 72, 163, 0.1);
    padding: 6px 15px; border-radius: 50px; display: inline-block; margin-bottom: 15px;
}

.nhe-contact-title { font-size: 36px; font-weight: 800; color: #111; }
.nhe-contact-title span { color: #0248a3; }

/* Contact Grid */
.nhe-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Form Styles */
.nhe-form-box {
    background: #fff; padding: 40px;
    border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.nhe-input-group { position: relative; margin-bottom: 20px; }

.nhe-input-group input, 
.nhe-input-group textarea {
    width: 100%; padding: 15px 15px 15px 50px;
    border: 1px solid #e1e1e1; border-radius: 12px;
    outline: none; font-size: 14px; transition: 0.3s;
    background: #f9f9f9;
}

.nhe-input-group i {
    position: absolute; left: 18px; top: 18px;
    color: #0248a3; font-size: 18px; transition: 0.3s;
}

.nhe-input-group input:focus, 
.nhe-input-group textarea:focus {
    border-color: #0248a3; background: #fff;
    box-shadow: 0 5px 15px rgba(2, 72, 163, 0.1);
}

.nhe-submit-btn {
    width: 100%; padding: 16px; border: none;
    background: #0248a3; color: #fff; font-weight: 700;
    border-radius: 12px; cursor: pointer; transition: 0.4s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 16px;
}

.nhe-submit-btn:hover {
    background: #ffc107; color: #000;
    transform: translateY(-3px);
}

/* Info & Map Styles */
.nhe-info-item {
    display: flex; align-items: center; gap: 15px;
    background: #fff; padding: 20px; border-radius: 15px;
    margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.nhe-info-item i {
    width: 45px; height: 45px; background: #0248a3;
    color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 18px;
}

.nhe-info-item p { font-size: 12px; color: #777; margin: 0; }
.nhe-info-item span { font-size: 15px; font-weight: 700; color: #111; }

.nhe-map-container {
    height: 250px; border-radius: 20px; overflow: hidden;
    margin-top: 20px; border: 5px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nhe-map-container iframe { width: 100%; height: 100%; border: none; }

/* Scroll Reveal Initial State */
.nhe-reveal { opacity: 0; transform: translateY(40px); transition: 1s ease; }
.nhe-reveal.nhe-active { opacity: 1; transform: translateY(0); }
/* home end=============== */
/* about start================ */
/* NHE About Hero Variables */
:root {
    --nhe-blue: #0248a3;
    --nhe-yellow: #ffc107;
    --nhe-dark: #050a14;
    --nhe-white: #ffffff;
}

.about-hero-nhe {
    width: 100%;
    min-height: 80vh;
    padding: 120px 20px 60px;
    background: #fdfdfd;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nhe-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- Left Side Content --- */
.nhe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 30px;
    color: var(--nhe-yellow);
    margin-bottom: 20px;
}
.nhe-breadcrumb a { color: var(--nhe-blue); text-decoration: none; font-weight: 700; }
.nhe-breadcrumb i { font-size: 10px; }

.nhe-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--nhe-dark);
    margin-bottom: 20px;
}
.nhe-hero-title span { color: var(--nhe-blue); }

.nhe-hero-p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.nhe-hero-btns { display: flex; gap: 15px; }

.nhe-btn-filled {
    background: var(--nhe-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.nhe-btn-outline {
    border: 2px solid var(--nhe-blue);
    color: var(--nhe-blue);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.nhe-btn-filled:hover { background: var(--nhe-yellow); color: #000; transform: translateY(-5px); }

/* --- Right Side Visuals --- */
.nhe-hero-visual { position: relative; }

.nhe-image-frame {
    position: relative;
    z-index: 5;
    padding: 10px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.nhe-main-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    animation: nheKenBurns 10s infinite alternate;
}

/* Floating Badge Animation */
.nhe-floating-badge {
    position: absolute;
    top: 20%;
    right: -25px;
    background: var(--nhe-white);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: nheFloat 4s infinite ease-in-out;
}

.badge-icon {
    width: 40px; height: 40px;
    background: var(--nhe-yellow);
    color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.badge-text strong { display: block; font-size: 18px; color: var(--nhe-blue); }
.badge-text span { font-size: 10px; text-transform: uppercase; color: #777; font-weight: 700; }

.nhe-glow-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--nhe-blue);
    filter: blur(80px); opacity: 0.1;
}

/* --- KEYFRAMES --- */
@keyframes nheFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes nheKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.animate-left { animation: nheFadeRight 1s ease-out; }
.animate-right { animation: nheFadeLeft 1s ease-out; }

@keyframes nheFadeRight { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes nheFadeLeft { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

.nhe-img-svc-sec {
    padding: 80px 15px;
    background: #fdfdfd;
    overflow: hidden;
}

.nhe-img-svc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.nhe-img-svc-header { text-align: center; margin-bottom: 50px; }
.nhe-img-svc-badge {
    color: var(--nhe-blue); font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; font-size: 12px; margin-bottom: 10px; display: block;
}
.nhe-img-svc-h2 { font-size: 36px; font-weight: 900; color: var(--nhe-dark); }
.nhe-img-svc-h2 span { color: var(--nhe-blue); }
.nhe-img-svc-intro { color: #666; max-width: 600px; margin: 15px auto 0; font-size: 15px; }

/* Grid */
.nhe-img-svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.nhe-img-svc-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease-in-out;
    border: 1px solid #f0f0f0;
}

/* Image Styling */
.nhe-img-svc-box {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.nhe-svc-pic {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nhe-img-svc-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 72, 163, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s ease;
}

.nhe-img-svc-overlay i {
    color: var(--nhe-yellow); font-size: 40px;
    transform: scale(0.5); transition: 0.4s ease;
}

/* Info Styling */
.nhe-img-svc-info { padding: 25px; text-align: center; }
.nhe-img-svc-info h3 { font-size: 20px; font-weight: 700; color: var(--nhe-dark); margin-bottom: 10px; }
.nhe-img-svc-info p { font-size: 14px; color: #777; line-height: 1.6; }

/* Hover Animations */
.nhe-img-svc-card:hover { transform: translateY(-10px); border-color: var(--nhe-blue); }
.nhe-img-svc-card:hover .nhe-svc-pic { transform: scale(1.15); }
.nhe-img-svc-card:hover .nhe-img-svc-overlay { opacity: 1; }
.nhe-img-svc-card:hover .nhe-img-svc-overlay i { transform: scale(1); }

/* Scroll Animations */
.nhe-reveal-img { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.nhe-active-img { opacity: 1; transform: translateY(0); }

/* NHE Trusted Section Styles - Prefix: nhe-trust- */
:root {
    --nhe-blue: #0248a3;
    --nhe-yellow: #ffc107;
    --nhe-dark: #111827;
}

.nhe-trust-bar {
    padding: 60px 20px;
    background-color: #f9fbff;
    overflow: hidden;
}

.nhe-trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.nhe-trust-header { margin-bottom: 50px; }

.nhe-trust-badge {
    color: var(--nhe-blue);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(2, 72, 163, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.nhe-trust-h2 { font-size: 32px; font-weight: 900; color: var(--nhe-dark); }
.nhe-trust-h2 span { color: var(--nhe-blue); position: relative; }

/* Grid Styles */
.nhe-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.nhe-trust-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 4px solid #eee;
    transition: 0.4s ease;
}

.nhe-trust-icon {
    width: 60px; height: 60px;
    background: var(--nhe-blue);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px;
    transition: 0.5s;
}

.nhe-trust-item h4 { font-size: 18px; color: var(--nhe-dark); margin-bottom: 8px; font-weight: 700; }
.nhe-trust-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* Hover Effect */
.nhe-trust-item:hover {
    transform: translateY(-10px);
    border-color: var(--nhe-yellow);
    box-shadow: 0 15px 40px rgba(2, 72, 163, 0.1);
}

.nhe-trust-item:hover .nhe-trust-icon {
    background: var(--nhe-yellow);
    color: #000;
    transform: rotateY(360deg);
}

/* Marquee Bar */
.nhe-trust-marquee {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    overflow: hidden;
    white-space: nowrap;
}

.nhe-marquee-content {
    display: inline-block;
    animation: nheTrustScroll 20s linear infinite;
}

.nhe-marquee-content span {
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    margin-right: 50px;
    text-transform: uppercase;
}

@keyframes nheTrustScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Scroll Animation Initial State */
.nhe-reveal-trust { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.4, 0, 0.2, 1); }
.nhe-active-trust { opacity: 1; transform: translateY(0); }
/* about end================= */

/* service start================== */
.nhe-svc-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--nhe-white);
}

/* Ken Burns Background Effect */
.nhe-svc-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('tent.webp');
    background-size: cover;
    background-position: center;
    animation: nheKenBurns 15s infinite alternate;
    z-index: 1;
}

.nhe-svc-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(2, 72, 163, 0.85), rgba(5, 10, 20, 0.9));
    z-index: 2;
}

.nhe-svc-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

/* Breadcrumb Styling */
.nhe-svc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nhe-svc-breadcrumb a { color: var(--nhe-yellow); text-decoration: none; font-weight: 700; }
.nhe-svc-breadcrumb i { font-size: 10px; opacity: 0.7; }

/* Main Content Styling */
.nhe-svc-title {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nhe-svc-title span {
    color: var(--nhe-yellow);
    display: block;
}

.nhe-svc-p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Buttons */
.nhe-svc-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nhe-svc-btn-main {
    background: var(--nhe-yellow);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.nhe-svc-btn-call {
    width: 50px; height: 50px;
    background: transparent;
    border: 2px solid var(--nhe-white);
    color: var(--nhe-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 20px;
    transition: 0.4s;
}

.nhe-svc-btn-main:hover { transform: translateY(-5px); filter: brightness(1.1); }
.nhe-svc-btn-call:hover { background: var(--nhe-white); color: var(--nhe-blue); }

/* Bottom Wave */
.nhe-svc-wave {
    position: absolute; bottom: 0; left: 0; width: 100%;
    line-height: 0; z-index: 5;
}

.nhe-svc-wave svg { display: block; width: calc(100% + 1.3px); height: 50px; }
.nhe-svc-wave .shape-fill { fill: #ffffff; }

/* --- ANIMATIONS --- */
@keyframes nheKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.nhe-svc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nhe-svc-hero-active .nhe-svc-reveal {
    opacity: 1; transform: translateY(0);
}

.nhe-svc-reveal:nth-child(2) { transition-delay: 0.2s; }
.nhe-svc-reveal:nth-child(3) { transition-delay: 0.4s; }
.nhe-svc-reveal:nth-child(4) { transition-delay: 0.6s; }

/* --- NH Electric Premium Services --- */
.nhe-premium-services {
    padding: 80px 15px;
    background-color: #f8fafe;
}

.nhe-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nhe-sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.nhe-top-tag {
    color: #0248a3;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
}

.nhe-sec-title {
    font-size: 36px;
    color: #111;
    margin-top: 10px;
}

.nhe-sec-title span {
    color: #0248a3;
}

/* Grid System */
.nhe-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in row */
    gap: 30px;
}

/* Card Design */
.nhe-card-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
}

.nhe-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.nhe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Floating Yellow Icon */
.nhe-icon-float {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 4px solid #fff;
    z-index: 2;
    transition: 0.5s;
}

.nhe-card-body {
    padding: 35px 25px 25px;
}

.nhe-card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0248a3;
}

.nhe-card-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nhe-card-btn {
    text-decoration: none;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- ANIMATIONS (HOVER) --- */
.nhe-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(2, 72, 163, 0.12);
}

.nhe-card-item:hover .nhe-card-img img {
    transform: scale(1.15);
}

.nhe-card-item:hover .nhe-icon-float {
    transform: rotateY(360deg);
    background: #0248a3;
    color: #fff;
}

.nhe-card-item:hover .nhe-card-btn {
    color: #ffc107;
}
/* --- DARK MODE TRUST SECTION --- */
.dark-trust-section {
    padding: 80px 15px;
    background: #0a1118; /* Deep Dark Background */
    color: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.dt-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.dt-header {
    text-align: center;
    margin-bottom: 60px;
}

.dt-top-tag {
    color: #ffc107;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
}

.dt-title {
    font-size: clamp(26px, 5vw, 38px);
    margin: 10px 0;
}

.dt-title span {
    color: #007bff; /* Neon Blue Accent */
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.dt-desc {
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* Grid Layout */
.dt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.dt-card {
    background: rgba(255, 255, 255, 0.03); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Hover Neon Glow Effect */
.dt-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.15), transparent);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.dt-card:hover .dt-glow {
    opacity: 1;
}

.dt-card:hover {
    transform: translateY(-12px);
    border-color: #007bff;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

/* Icon Design */
.dt-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: 0.5s ease;
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.dt-card:hover .dt-icon {
    background: #007bff;
    color: #fff;
    transform: rotateY(360deg);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
}

.dt-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffc107; /* Gold headings */
}

.dt-card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Tiny Badge */
.dt-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 4px 12px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 193, 7, 0.3);
}
/* --- Service Project Slider --- */
.service-slider-section {
    padding: 80px 15px;
    background: #050a0f; /* Dark Premium Theme */
    color: #fff;
    overflow: hidden;
}

.ss-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ss-header {
    text-align: center;
    margin-bottom: 50px;
}

.ss-subtitle {
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
}

.ss-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-top: 10px;
}

.ss-title span {
    color: #007bff;
}

/* Slider Card Style */
.ss-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: grab;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

/* Glassmorphism Overlay */
.ss-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.ss-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: 0.5s 0.1s;
}

.ss-info p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: 0.5s 0.2s;
}

.ss-tag {
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Hover Effects */
.swiper-slide-active .ss-overlay,
.ss-card:hover .ss-overlay {
    opacity: 1;
}

.swiper-slide-active .ss-info h3,
.swiper-slide-active .ss-info p,
.ss-card:hover .ss-info h3,
.ss-card:hover .ss-info p {
    transform: translateY(0);
}

.ss-card:hover img {
    transform: scale(1.1);
}

/* Custom Swiper Buttons */
.ss-nav {
    color: #ffc107 !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #ffc107 !important;
    width: 25px;
    border-radius: 5px;
}

/* service end==================== */
/* --- Contact Hero Section --- */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: #050a0f; /* Deep Dark */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

/* Animated Background Shapes */
.hero-shapes .shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
}

.s1 {
    width: 300px;
    height: 300px;
    background: #0248a3;
    top: -100px;
    left: -100px;
    animation: move 10s infinite alternate;
}

.s2 {
    width: 250px;
    height: 250px;
    background: #ffc107;
    bottom: -50px;
    right: -50px;
    animation: move 8s infinite alternate-reverse;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

.ch-container {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    width: 100%;
}

/* Breadcrumb Styling */
.ch-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    animation: fadeInDown 0.8s ease;
}

.ch-breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.ch-breadcrumb a.active, .ch-breadcrumb a:hover {
    color: #ffc107;
}

.ch-breadcrumb span {
    margin: 0 10px;
    color: #444;
}

/* Title & Subtitle */
.ch-title {
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -2px;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ch-title span {
    color: #0248a3;
    text-shadow: 0 0 30px rgba(2, 72, 163, 0.5);
}

.ch-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

/* Quick Badges */
.ch-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.ch-badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.ch-badge-item i {
    color: #ffc107;
}

.ch-badge-item:hover {
    background: #0248a3;
    transform: translateY(-5px);
}

/* Mouse Scroll Animation */
.scroll-down {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #ffc107;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
/* --- Contact Section Styles (Light Mode) --- */
.contact-main-area {
    padding: 80px 15px;
    background: #f8f9fa; /* Light Grey background */
}

.cm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info side thoda chota, form thoda bada */
    gap: 40px;
    margin-bottom: 50px;
}

/* Info Card (Left) */
.contact-info-card {
    background: #0248a3; /* Brand Blue */
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(2, 72, 163, 0.2);
}

.info-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.info-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    color: #ffc107; /* Yellow Accent */
}

.info-text span {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}

.info-text p {
    font-size: 16px;
    font-weight: 600;
}

.info-socials {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.info-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.info-socials a:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-5px);
}

/* Form Card (Right) */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #0248a3;
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 72, 163, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0248a3;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #ffc107;
    color: #000;
}

/* Map Section */
.map-wrapper {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* --- RESPONSIVE 320PX --- */
@media (max-width: 991px) {
    .nhe-hero-container { grid-template-columns: 1fr; text-align: center; }
    .nhe-hero-content { order: 2; }
    .nhe-hero-visual { order: 1; max-width: 400px; margin: 0 auto; }
    .nhe-hero-btns, .nhe-breadcrumb { justify-content: center; }
    .nhe-hero-title { font-size: 36px; }
     .nhe-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .premium-hero { height: 60vh; }
    .main-title { font-size: 30px; }
    .desc { font-size: 14px; }
    .custom-nav { display: none; } /* Mobile par arrows hata diye */
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .main-heading { font-size: 30px; }
    .about-section { padding: 60px 20px; }
     .nhe-main-title { font-size: 30px; }
    .nhe-grid { gap: 25px; }
     .nhe-why-title { font-size: 30px; }
    .nhe-why-section { padding: 60px 20px; }
     .nhe-img-svc-h2 { font-size: 28px; }
       .nhe-trust-h2 { font-size: 26px; }
        .nhe-service-grid {
        grid-template-columns: 1fr;
    }
     .dt-grid {
        grid-template-columns: 1fr;
    }
     .ss-card {
        height: 380px;
    }
    .contact-main-area { padding: 40px 10px; }
    .contact-info-card, .contact-form-card { padding: 25px 20px; }
    .info-header h2 { font-size: 22px; }
    .submit-btn { font-size: 14px; }
}

@media (max-width: 320px) {
    .logo-img-wrapper { width: 40px; height: 40px; } /* Mobile logo size */
    .brand-info h1 { font-size: 12px; }
    .brand-info p { font-size: 7px; letter-spacing: 1px; }
    .marquee-content span { font-size: 10px; }
    .footer-col h3 { font-size: 16px; }
    .footer-col p, .q-links a, .contact-box p { font-size: 12px; }
     .premium-hero { height: 50vh; }
    .hero-content { padding: 0 20px; }
    .sub-title { font-size: 10px; letter-spacing: 1px; }
    .main-title { font-size: 22px; margin-bottom: 10px; }
    .desc { font-size: 11px; margin-bottom: 20px; }
    .btn-yellow, .btn-blue { padding: 10px 20px; font-size: 11px; }
     .about-section { padding: 40px 15px; }
    .main-heading { font-size: 22px; }
    .description { font-size: 13px; }
    .exp-badge { padding: 10px; bottom: -10px; right: 0; }
    .exp-badge .num { font-size: 20px; }
    .feat-info h4 { font-size: 16px; }
    .feat-info p { font-size: 12px; }
     .nhe-service-container { padding: 50px 10px; }
    .nhe-main-title { font-size: 20px; }
    .nhe-sub-txt { font-size: 11px; letter-spacing: 1px; }
    .nhe-card-media { height: 180px; }
    .nhe-card-h3 { font-size: 18px; }
    .nhe-card-p { font-size: 12px; }
    .nhe-btn { padding: 10px 20px; font-size: 11px; }
     .nhe-why-section { padding: 50px 10px; }
    .nhe-why-badge { font-size: 10px; letter-spacing: 1px; }
    .nhe-why-title { font-size: 22px; }
    .nhe-why-desc { font-size: 12px; }
    .nhe-why-card { padding: 30px 20px; }
    .nhe-why-card h3 { font-size: 18px; }
    .nhe-why-card p { font-size: 12px; }
    .nhe-contact-section { padding: 40px 10px; }
    .nhe-contact-title { font-size: 20px; }
    .nhe-form-box { padding: 25px 15px; }
    .nhe-input-group input, .nhe-input-group textarea { font-size: 12px; padding-left: 45px; }
    .nhe-input-group i { font-size: 16px; left: 15px; }
    .nhe-info-item span { font-size: 13px; }
    .nhe-map-container { height: 200px; }
        .about-hero-nhe { padding-top: 100px; padding-bottom: 40px; }
    .nhe-hero-title { font-size: 24px; }
    .nhe-hero-p { font-size: 13px; margin-bottom: 25px; }
    .nhe-hero-btns { flex-direction: column; gap: 10px; }
    .nhe-btn-filled, .nhe-btn-outline { width: 100%; text-align: center; padding: 12px; font-size: 14px; }
    .nhe-floating-badge { padding: 10px 12px; right: 0; top: -20px; }
    .badge-icon { width: 30px; height: 30px; font-size: 14px; }
    .badge-text strong { font-size: 15px; }
     .nhe-img-svc-sec { padding: 40px 10px; }
    .nhe-img-svc-h2 { font-size: 22px; }
    .nhe-img-svc-intro { font-size: 12px; }
    .nhe-img-svc-box { height: 160px; }
    .nhe-img-svc-info { padding: 20px 10px; }
    .nhe-img-svc-info h3 { font-size: 18px; }
    .nhe-img-svc-info p { font-size: 12px; }
    nhe-trust-h2 { font-size: 20px; }
    .nhe-trust-item { padding: 25px 15px; }
    .nhe-trust-item h4 { font-size: 16px; }
    .nhe-trust-item p { font-size: 12px; }
    .nhe-marquee-content span { font-size: 11px; margin-right: 30px; }
      .nhe-sec-title {
        font-size: 28px;
    }
    .nhe-card-body {
        padding: 30px 15px 20px;
    }
    .nhe-card-body h3 {
        font-size: 19px;
    }
    .nhe-card-img {
        height: 170px;
    }
  .dark-trust-section {
        padding: 50px 10px;
    }
    .dt-card {
        padding: 30px 15px;
    }
    .dt-title {
        font-size: 22px;
    }
    .dt-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .dt-card h3 {
        font-size: 18px;
    }
     .service-slider-section {
        padding: 50px 10px;
    }
    .ss-card {
        height: 320px;
    }
    .ss-info h3 {
        font-size: 18px;
    }
    .ss-title {
        font-size: 24px;
    }
}

/* Continuous Subtle Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.dt-card {
    animation: float 4s ease-in-out infinite;
 .contact-hero {
        height: 85vh; /* Thoda lamba screen ke liye */
    }
    .ch-title {
        font-size: 38px;
    }
    .ch-badges {
        flex-direction: column;
        align-items: center;
    }
    .ch-badge-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
     .contact-main-area { padding: 30px 5px; }
    .info-item { gap: 12px; }
    .info-text p { font-size: 14px; }
    .map-wrapper { height: 300px; }
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
    from { opacity: 0; scale: 0.8; }
    to { opacity: 1; scale: 1; }
}