 :root {
            --primary-color: #ff6b00; /* Vibrant Orange */
            --primary-dark: #e65100;
            --secondary-color: #0f172a; /* Deep Slate Blue */
            --text-color: #334155;
            --light-bg: #f1f5f9;
        }
        
        body {
           font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            
        }
        a{
            text-decoration: none;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondary-color);
            font-weight: 700;
        }

        /* NAVBAR BASE */
    .navbar {
        background: #fff;
        padding: 18px 0;
        transition: all 0.4s ease;
        position: fixed;
        width: 100%;
        z-index: 2;
    }
    .navbar.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    /* Branding */
    .navbar-brand {
        font-size: 28px;
        font-weight: 800;
        color: var(--text-dark) !important;
    }
    .navbar-brand span {
        color: var(--primary-color);
    }

    /* Desktop nav links */
    .nav-link {
        color: var(--text-dark) !important;
        font-weight: 600;
        margin: 0 10px;
        font-size: 14px;
        text-transform: uppercase;
        transition: .3s;
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }

    /* QUOTE BUTTON */
    .btn-quote-nav {
        background: var(--primary-color);
        padding: 8px 20px;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-weight: 700;
        font-size: 12px;
        transition: .3s;
    }
    .btn-quote-nav:hover {
        background: var(--primary-dark);
    }

    /* ===================== DESKTOP HOVER SUBMENU ===================== */
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown-menu {
        border: none;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    }
    .dropdown-item:hover {
        background: var(--primary-color);
        color: #fff;
    }

    /* ===================== MOBILE LEFT MENU ===================== */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.65);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        /* z-index: 9998; */
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -260px;
        width: 260px;
        height: 100%;
        background: #fff;
        padding: 20px 20px;
        transition: .4s;
         z-index: 9999; 
        box-shadow: 4px 0 12px rgba(0,0,0,0.15);
    }
    .mobile-menu.active {
        left: 0;
    }

    /* Close Button */
    .mobile-close {
        font-size: 26px;
        font-weight: bold;
        cursor: pointer;
        color: var(--text-dark);
        float: right;
        margin-top: -5px;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 600;
    }
    .mobile-menu a:hover {
        color: var(--primary-color);
    }

    /* MOBILE SUBMENU */
    .submenu-toggle {
        float: right;
        font-size: 18px;
        cursor: pointer;
        margin-top: -2px;
    }

    .mobile-submenu {
        display: none;
        padding-left: 20px;
    }
    .mobile-submenu a {
        font-size: 14px;
        border: none;
        padding: 8px 0;
    }

    /* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

/* Main image block */
.about-img-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 25px 25px 0 #ff7a00; /* dark orange shadow */
    transition: 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 30px 30px 0 #ff9d3c; /* lighter orange on hover */
}

/* Trust Badges */
.trust-badges {
    margin-top: 35px;
}

.badge-box {
    background: #fff7e8;
    padding: 15px 22px;
    border-radius: 10px;
    font-weight: 600;
    color: #ff7a00;
    border-left: 5px solid #ff7a00;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.badge-box i {
    font-size: 1.5rem;
}

/* Bullet list styling */
.about-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #555;
}

.about-list li i {
    color: #ff7a00;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-img {
        box-shadow: 20px 20px 0 #ff7a00;
    }
}
/* ---------------------------
    Premium Hero Section
---------------------------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Background Image + Orange Overlay */
    background-image:
        linear-gradient(rgba(26, 15, 7, 0.38), rgba(26, 15, 7, 0.88)),
        url('img/background-image.jpg');
    background-size: cover;
    background-position: center;
}

/* Orange Glow Lamps */
.bg-lamp,
.bg-lamp2 {
    position: absolute;
    filter: blur(85px);
    opacity: 0.8;
    z-index: 1;
}

.bg-lamp {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,120,0,0.55), transparent 65%);
    top: -120px;
    left: -120px;
    animation: floatLamp 8s infinite alternate ease-in-out;
}

.bg-lamp2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,160,70,0.55), transparent 65%);
    bottom: -120px;
    right: -120px;
    animation: floatLamp2 8s infinite alternate ease-in-out;
}

/* Animations */
@keyframes floatLamp {
    0% { transform: translate(0,0); }
    100% { transform: translate(40px, 50px); }
}
@keyframes floatLamp2 {
    0% { transform: translate(0,0); }
    100% { transform: translate(-40px, -50px); }
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Logo */
.logo-container {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 20;
}
.logo-container img {
    max-height: 70px;
}

/* Hero Content */
.hero-content {
    color: #fff7e8;
    /* z-index: 10; */
    animation: fadeUp 1.2s ease-out forwards;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(45deg, #ff7a00, #ff9d3c);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.92;
    margin: 25px 0;
}

/* Buttons */
.btn-main {
    background: linear-gradient(45deg, #ff7a00, #ff9d3c);
    color: #fff;
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 40px;
    margin-right: 10px;
    border: none;
}
.btn-main:hover {
    background: #fff;
    color: #ff7a00;
}

.btn-sec {
    border: 2px solid #ff9d3c;
    padding: 12px 35px;
    color: #ff9d3c;
    border-radius: 40px;
    font-weight: 700;
}
.btn-sec:hover {
    background: #ff9d3c;
    color: #000;
}

/* Right Form */
.hero-form {
    padding: 35px 30px;
    margin-top: 35px;
    background: rgba(255,245,235,0.95);
    border-radius: 15px;
    animation: fadeRight 1.5s ease-out forwards;
    /* z-index: 10; */
}
.hero-form h3 {
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a0f07;
}
.hero-form .form-control {
    height: 48px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.hero-form button {
    background: #ff7a00;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 700;
}
.hero-form button:hover {
    background: #d86300;
}

/* Responsive */
@media (max-width: 992px) {
    #hero {
        height: auto;
        padding-top: 160px;
        padding-bottom: 60px;
        text-align: center;
    }
    .logo-container {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }
    .hero-title {
        font-size: 3rem;
    }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.4rem; }
    .hero-text { font-size: 1rem; }
}
       /* Background Pattern for Section */
#services {
    background: linear-gradient(180deg, #fff8f0, #fff);
    position: relative;
    overflow: hidden;
}

/* Soft abstract shapes */
#services::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 132, 24, 0.15);
    filter: blur(80px);
    border-radius: 50%;
   
}
#services::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 162, 50, 0.15);
    filter: blur(80px);
    border-radius: 50%;
  
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
   
}
.section-title span {
    font-size: 14px;
    font-weight: 700;
    color: #ff7a00;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9d3c);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* Service Boxes */
.service-box {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border-radius: 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
    
    border: 1px solid #eee;
}

/* Top Accent Border */
.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9d3c);
    transition: 0.4s ease;
}

/* Hover Effects */
.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: transparent;
}
.service-box:hover::before {
    width: 100%;
}

/* Icon Style */
.service-icon {
    font-size: 42px;
    color: #ff7a00;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 90px;
    height: 90px;
    background: rgba(255, 125, 0, 0.15);
    border-radius: 50%;
    transition: 0.4s;
    position: relative;
}

/* Floating Effect on Hover */
.service-box:hover .service-icon {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(45deg, #ff7a00, #ff9d3c);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 125, 0, 0.4);
}

/* Title */
.service-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

/* Description */
.service-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
 /* --- Testimonials --- */
        .testimonial-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            margin: 15px;
            text-align: center;
            border-bottom: 3px solid transparent;
            transition: 0.3s;
        }
        .testimonial-card:hover {
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* --- Why Choose Us --- */
    .why-choose-us {
        background: var(--secondary-color);
        color: white;
        padding: 100px 0;
        position: relative;
    }
    .why-choose-us .section-title h2 { color: white; }
    .feature-item {
        display: flex;
        margin-bottom: 30px;
    }
    .feature-icon {
        flex: 0 0 60px;
        height: 60px;
        background: rgba(255,255,255,0.1);
        color: var(--primary-color);
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 20px;
    }

    /* === Attractive Footer (Lucknow Edition) === */
.footer {
    background: linear-gradient(135deg, #0a0f1c, #101828);
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-title {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.footer p {
    line-height: 1.7;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer-social a {
    background: #1e293b;
    padding: 10px 13px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer .brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.footer .brand-name span {
    color: var(--primary-color);
}

/* === Fixed Contact Icons === */
.fixed-contact-icons {
  position: fixed;
  right: 15px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Individual Icon Style */
.fixed-contact-icons .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* WhatsApp */
.fixed-contact-icons .whatsapp {
  background-color: #25D366;
}

/* Call */
.fixed-contact-icons .call {
  background-color: #007bff;
}

/* SMS */
.fixed-contact-icons .sms {
  background-color: #ff9800;
}

/* Hover Effects */
.fixed-contact-icons .contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fixed-contact-icons {
    right: 10px;
    bottom: 80px;
  }
  .fixed-contact-icons .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
