        :root {
            --hvac-blue: #0b52aa;
            --hvac-dark-blue: #073a63;
            --hvac-orange: #ed1f25;
            --hvac-orange-hover: #0b52aa;
            --bg-light: #f3f7fa;
            --text-dark: #121824;
            --text-muted: #5a6578;
            --border-color: #e2e8f0;
            --card-shadow: 0 10px 30px rgba(0,0,0,0.06);
            --font-poppins: 'Poppins', sans-serif;
            --font-inter: 'Inter', sans-serif;
			 --newcolour: #e2e8f0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-poppins);
            font-weight: 500;
            color: var(--text-dark);
            line-height: 1.25;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container {
			width: 1400px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
			border: 0px solid red;
        }

        /* --- SECTION FADE & SLIDE ANIMATION --- */
        .reveal-section {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .reveal-section.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            font-family: var(--font-poppins);
            font-weight: 600;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            gap: 10px;
        }

        .btn-orange {
            background-color: var(--hvac-orange);
            color: #ffffff;
        }

        .btn-orange:hover {
            background-color: var(--hvac-orange-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
			 color: #ffffff;
        }

        .btn-blue {
            background-color: var(--hvac-blue);
            color: #ffffff;
        }

        .btn-blue:hover {
            background-color: var(--border-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 99, 167, 0.35);
        }

        .btn-outline-white {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            backdrop-filter: blur(5px);
        }

        .btn-outline-white:hover {
            background: #ffffff;
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        .section-tag {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--hvac-blue) !important;
            margin-bottom: 8px;
            display: inline-block;
        }

        .section-tag-orange { color: var(--hvac-orange); }
        .section-title { font-size: 34px; margin-bottom: 16px; }

        .section-subtitle {
            color: var(--text-dark);
            max-width: 600px;
            font-size: 15px;
        }

        .section-header-center {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header-center .section-subtitle { margin: 0 auto; }

        /* =========================================================
           --- HERO BANNER WITH HIGH VISIBILITY ANIMATIONS ---
           ========================================================= */
        .hero {
            position: relative;
            padding: 160px 0 190px 0;
            color: #ffffff;
            overflow: hidden;
            background-color: #03182b;
        }

        /* 1. HVAC & Financing Related Background Image with Continuous Pan/Zoom Animation */
        .hero-bg-img {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            /* High-Res Image: House Blueprints + Calculator + HVAC Financial Contract */
            background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            animation: heroPanZoom 14s infinite alternate ease-in-out;
            z-index: 1;
        }

        @keyframes heroPanZoom {
            0% {
                transform: scale(1) translate(0, 0);
            }
            50% {
                transform: scale(1.12) translate(-20px, -15px);
            }
            100% {
                transform: scale(1.2) translate(15px, 10px);
            }
        }

        /* 2. Balanced Dark Gradient Overlay (Text clear aur Image visible rakhta hai) */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg, 
                rgba(3, 24, 43, 0.92) 0%, 
                rgba(7, 58, 99, 0.75) 55%, 
                rgba(3, 24, 43, 0.55) 100%
            );
            z-index: 2;
        }

        /* 3. Glowing Moving Light Orbs Animation */
        .glow-orb-1 {
            position: absolute;
            top: 15%;
            left: 20%;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.5) 0%, rgba(255, 107, 0, 0) 70%);
            border-radius: 50%;
            filter: blur(40px);
            z-index: 3;
            animation: moveOrb1 8s infinite alternate ease-in-out;
            pointer-events: none;
        }

        .glow-orb-2 {
            position: absolute;
            bottom: 10%;
            right: 15%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(11, 99, 167, 0.7) 0%, rgba(11, 99, 167, 0) 70%);
            border-radius: 50%;
            filter: blur(50px);
            z-index: 3;
            animation: moveOrb2 10s infinite alternate ease-in-out;
            pointer-events: none;
        }

        @keyframes moveOrb1 {
            0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            100% { transform: translate(80px, 40px) scale(1.3); opacity: 1; }
        }

        @keyframes moveOrb2 {
            0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            100% { transform: translate(-60px, -50px) scale(1.25); opacity: 0.9; }
        }

        /* 4. Moving Grid Lines Effect */
        .hero-grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 3;
            animation: gridScroll 20s linear infinite;
            pointer-events: none;
        }

        @keyframes gridScroll {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }

        .hero .container {
            position: relative;
            z-index: 5;
        }

        /*.hero-content { max-width: 680px; }*/
.hero-content { max-width: 50%;margin: auto;}
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 107, 0, 0.22);
            border: 1px solid rgba(255, 107, 0, 0.5);
            color: #ff944d;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 15px;
            backdrop-filter: blur(4px);
        }

        .hero h1 {
            color: #ffffff !important;
            font-size: 48px !important;
            font-weight: 800 !important;
            margin-bottom: 20px !important;
            line-height: 1.15;
            text-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

        .hero p {
            color: #e0f0ff;
            font-size: 17px;
            margin-bottom: 35px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .hero-btns { /*display: flex;*/ gap: 15px; flex-wrap: wrap;display: inline-flex; }

        /* --- FEATURE OVERLAP CARDS --- */
        .overlap-features {
            margin-top: -80px;
            position: relative;
            z-index: 10;
            margin-bottom: 90px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .feature-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            border-top: 4px solid var(--hvac-blue);
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-top-color: var(--hvac-orange);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 58px;
            height: 58px;
            background-color: var(--bg-light);
            color: var(--hvac-orange);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background-color: var(--hvac-orange);
            color: #ffffff;
        }

        .feature-text h3 { font-size: 18px; margin-bottom: 8px !important; }
        .feature-text p { font-size: 13.5px; color: var(--text-muted); }

        /* --- ABOUT & OVERVIEW SECTION --- */
        .about-section { padding-bottom: 90px; }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-images { position: relative; }
        .about-img-main {
            border-radius: 12px;
            width: 85%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
			margin-top: 130px;
        }
        .about-img-sub {
            position: absolute;
            bottom: -30px;
            right: 0;
            width: 55%;
            border-radius: 12px;
            border: 6px solid #ffffff;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
        }

        .about-images:hover .about-img-main { transform: scale(1.02); }
        .about-images:hover .about-img-sub { transform: translateY(-6px); }

        .about-checklist {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 25px 0 35px 0;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 14px;
        }

        .checklist-item i {
            color: var(--hvac-orange);
            background-color: rgba(255, 107, 0, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        /* --- HVAC FINANCING CARDS --- */
        .products-section {
            background-color: var(--bg-light);
            padding: 90px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        }

        .product-img-wrapper {
            position: relative;
            height: 210px;
            overflow: hidden;
        }

        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-img-wrapper img {
            transform: scale(1.08);
        }

        .product-tag-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 44px;
            height: 44px;
            background: var(--hvac-blue);
            color: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background 0.3s ease;
        }

        .product-card:hover .product-tag-icon {
            background: var(--hvac-orange);
        }

        .product-body { padding: 25px; }
        .product-body h3 { font-size: 20px; margin-bottom: 12px; }
        .product-body p { color: var(--text-dark); font-size: 14px; margin-bottom: 20px; }

        .product-features-list {
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
            margin-bottom: 20px;
        }

        .product-features-list li {
            font-size: 13px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-features-list li i { color: var(--hvac-blue); }

        /* --- ANIMATED COUNTER SECTION --- */
        .counter-section {
            position: relative;
            background: linear-gradient(rgba(7, 58, 99, 0.92), rgba(7, 58, 99, 0.92)), url('https://images.pexels.com/photos/8005398/pexels-photo-8005398.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover fixed;
            color: #ffffff;
            padding: 80px 0;
        }

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

        .counter-item i {
            font-size: 30px;
            color: #ffffff;
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .counter-item h3 {
            font-size: 42px;
            color: var(--hvac-orange) !important;
            margin-bottom: 5px !important;
            font-weight: 800;
        }

        .counter-item p {
            color: #b3cbe0;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        /* --- HOW HVAC FINANCING WORKS - HOVER ANIMATION & COLOR CHANGE --- */
        .process-section {
            background: var(--hvac-blue);
            color: #ffffff;
            padding: 95px 0;
        }

        .process-section .section-title { color: #ffffff !important; }
        .process-section .section-subtitle { color: #b3cbe0 !important; }

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


        .process-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 35px 22px;
            border-radius: 12px;
            text-align: center;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .process-card-icon {
            font-size: 28px;
            color: var(--hvac-orange);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .process-card:hover {
            background: #ffffff;
            transform: translateY(-12px) scale(1.03);
            border-color: #ffffff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .process-number {
            width: 42px;
            height: 42px;
            background: var(--hvac-orange);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
            margin: 0 auto 15px auto;
            transition: all 0.4s ease;
        }

        .process-card:hover .process-number {
            background: var(--hvac-blue);
            transform: rotate(360deg) scale(1.1);
        }

        .process-card:hover .process-card-icon {
            color: var(--hvac-blue);
            transform: scale(1.15);
        }

        .process-card h4 {
            color: #ffffff !important;
            font-size: 18px;
            margin-bottom: 10px !important;
            transition: color 0.4s ease;
        }

        .process-card:hover h4 {
            color: var(--text-dark) !important;
        }

        .process-card p {
            color: #d8e8f5;
            font-size: 13px;
            transition: color 0.4s ease;
        }

        .process-card:hover p {
            color: var(--text-muted);
        }

        /* --- CTA BANNER --- */
        .cta-section {
            background: linear-gradient(135deg, var(--hvac-orange) 0%, #bf0508 100%);
            color: #ffffff !important;
            padding: 60px 0 !important;
            position: relative;
        }

        .cta-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta-text h2 { color: #ffffff !important; font-size: 28px !important; }
        .cta-text p { color: #fff0e6; font-size: 15px; margin-top: 5px; }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .features-grid, .products-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
            .about-grid { grid-template-columns: 1fr; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .hero h1 { font-size: 38px; }
			.container {
			width: 100%;
            margin: 0 auto;
            padding: 0 20px;
			border: 0px solid red;
        }
        }

        @media (max-width: 768px) {
            .features-grid, .products-grid, .process-grid, .counter-grid { grid-template-columns: 1fr; }
            .hero { padding: 110px 0 140px 0; }
            .hero h1 { font-size: 30px; }
            .cta-container { flex-direction: column; gap: 20px; text-align: center; }
			.container {
			width: 100%;
            margin: 0 auto;
            padding: 0 20px;
			border: 0px solid red;
        }
        }

/* Main Outer Container - Iski height fixed hai */
  .iframe-crop-box {
    position: relative;
    width: 1400px;
    height: 500px; /* Middle section ki visible height */
    overflow: hidden; /* Header aur Footer ko cut karne ke liye */
    border: 0px solid #d0d7de;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #ffffff;
	margin: auto;
	 border: 0px solid red;
  }

  /* Iframe Position Strategy */
  .iframe-crop-box iframe {
    position: absolute;
    /* Header ko upar shift karke hide karne ke liye */
    top: -80px; 
    left: 0;
    width: 100%;
    /* Total height itni rakhi hai ke footer bottom border se bahar nikal jaye */
    height: 500px; 
    border: none;
    /* Scrolling disable ki hai taake footer scroll ho ke samne na aaye */
    scrolling: no; 
  }

  /* Custom Navy Blue Custom Scrollbar (Agar container me overflow aaye) */
  .iframe-crop-box::-webkit-scrollbar {
    width: 8px;
  }
  .iframe-crop-box::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .iframe-crop-box::-webkit-scrollbar-thumb {
    background-color: #000080; /* Navy Blue */
    border-radius: 4px;
  }

  /* Mobile aur Tablet Responsive Adjustment */
  @media (max-width: 768px) {
    .iframe-crop-box {
      height: 600px; /* Mobile layout height */
    }
    .iframe-crop-box iframe {
      top: -150px; /* Mobile header crop offset */
      height: 1350px;
    }
  }

  @media (max-width: 480px) {
    .iframe-crop-box {
      height: 650px;
    }
    .iframe-crop-box iframe {
      top: -130px;
      height: 1400px;
    }
  }

    .faq-container {
      max-width: 650px;
      margin: 0 auto;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 35px !important;
      color: #333333;
    }

    .faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
      background-color: #ffffff;
      transition: border-color 0.3s ease;
    }

    /* Normal State Header */
    .faq-question {
      width: 100%;
      padding: 16px 20px;
      background-color: #ffffff;
      color: #ec1e21; /* Normal Color */
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      border: none;
      outline: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease, background-color 0.3s ease;
    }

    .faq-icon {
      font-size: 20px;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    /* Active State Header */
    .faq-item.active .faq-question {
      color: #0b52aa; /* Active Color */
      background-color: #f0f6ff;
    }

    .faq-item.active {
      border-color: #0b52aa;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* Answer Toggle Slide */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-in-out;
      background-color: #ffffff;
    }

    .faq-answer p {
      padding: 0 20px 16px 20px;
      color: #000 !important;
      line-height: 1.6 !important;
      font-size: 14px !important;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }


@media only screen and (min-width:250px) and (max-width:1399px) {
.hero h1 {
  color: #ffffff !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  line-height: 1.15;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}	
	
.hero-content { max-width: 80%;margin: auto;}
.about-section {
  padding-bottom: 0px;
}
.products-section {
  background-color: var(--bg-light);
  padding: 30px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  gap: 10px;
}
}

   /* Image wala exact design */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(56, 38, 26, 0.85); /* Dark Brown Semi-transparent */
            border: 1.5px solid #e27d38; /* Bright Orange Border */
            border-radius: 50px; /* Fully Rounded Ends */
            padding: 10px 24px;
            color: #f7934c; /* Warm Orange Text Color */
            font-family: 'Arial Black', sans-serif;
            font-size: 14px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 15px rgba(226, 125, 56, 0.2);
            transition: all 0.3s ease;
        }

        .hero-badge i {
            font-size: 16px;
            color: #f7934c;
        }

        /* Fade-in & Fade-out Animation */
        .badge-text {
            display: inline-block;
            transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .badge-text.fade-out {
            opacity: 0;
            transform: translateY(-6px);
        }

        .badge-text.fade-in {
            opacity: 0;
            transform: translateY(6px);
        }