      /* ============================================================
       MAC Solar & Energy — style.css  (DRY / Conflict-Free)
    ============================================================ */

      /* ── 1. CSS Custom Properties ─────────────────────────────── */
      :root {
          /* Brand colours */
          --clr-dark: #080f1a;
          --clr-navy: #001d3d;
          --clr-green: #699d28;
          --clr-green2: #4a7418;
          --clr-accent: #a8d848;
          --clr-gold: #e8b84b;
          --clr-white: #ffffff;
          --clr-off: #f3f6fb;
          --clr-text: #1a2b3c;
          --clr-muted: #6b7b8d;
          --clr-border: #e2e8f0;

          /* Derived / glass */
          --clr-glass: rgba(255, 255, 255, 0.12);
          --clr-glass-b: rgba(255, 255, 255, 0.08);
          --clr-green-alpha: rgba(105, 157, 40, 0.1);

          /* Gradients */
          --grad-green: linear-gradient(135deg,
                  var(--clr-green),
                  var(--clr-green2));
          --grad-accent: linear-gradient(135deg,
                  var(--clr-green),
                  var(--clr-accent));
          --grad-dark: linear-gradient(135deg, var(--clr-navy), var(--clr-dark));
          --grad-hero: linear-gradient(135deg,
                  rgb(8, 15, 26) 0%,
                  rgba(0, 29, 61, 0.885) 50%,
                  rgba(8, 15, 26, 0.9) 100%);
          --grad-cta: linear-gradient(135deg,
                  rgba(5, 40, 10, 0.92),
                  rgba(0, 60, 20, 0.88));

          /* Typography */
          --ff: "DM Sans", sans-serif;

          /* Spacing */
          --sp-xs: 0.5rem;
          --sp-sm: 1rem;
          --sp-md: 2rem;
          --sp-lg: 4rem;
          --sp-xl: 6rem;

          /* Radii */
          --r-sm: 8px;
          --r-md: 16px;
          --r-lg: 24px;
          --r-xl: 36px;
          --r-full: 9999px;

          /* Shadows */
          --sh-soft: 0 4px 24px rgba(0, 0, 0, 0.07);
          --sh-md: 0 8px 40px rgba(0, 0, 0, 0.12);
          --sh-green: 0 8px 32px rgba(105, 157, 40, 0.25);
          --sh-card: 0 12px 48px rgba(0, 29, 61, 0.1);

          /* Transitions */
          --t-fast: 0.18s ease;
          --t-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
          --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* ── 2. Base Reset ────────────────────────────────────────── */
      *,
      *::before,
      *::after {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      }

      html {
          scroll-behavior: smooth;
      }

      body {
          font-family: var(--ff);
          color: var(--clr-text);
          background: var(--clr-white);
          overflow-x: hidden;
          -webkit-font-smoothing: antialiased;
      }

      img {
          display: block;
          max-width: 100%;
          object-fit: cover;
      }

      a {
          text-decoration: none;
          transition: color var(--t-fast);
      }

      /* ── 3. Layout Utilities ──────────────────────────────────── */
      .bg-off {
          background-color: var(--clr-off);
      }

      .section-pad {
          padding: var(--sp-xl) 0;
      }

      .text-gradient {
          background: var(--grad-accent);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
      }

      /* ── 4. Typography ────────────────────────────────────────── */
      .eyebrow {
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 0.75rem;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: var(--clr-green);
          background: rgba(105, 157, 40, 0.1);
          border: 1px solid rgba(105, 157, 40, 0.25);
          padding: 0.35rem 0.9rem;
          border-radius: var(--r-full);
          margin-bottom: 0.75rem;
      }

      .eyebrow::before {
          content: "";
          display: inline-block;
          width: 6px;
          height: 6px;
          border-radius: 50%;
          background: var(--clr-green);
      }

      .section-title {
          font-size: clamp(1.85rem, 3.5vw, 2.75rem);
          line-height: 1.15;
          color: var(--clr-text);
      }

      .section-body {
          font-size: 1rem;
          line-height: 1.7;
          color: var(--clr-muted);
      }

      /* ── 5. Buttons (all variants) ────────────────────────────── */
      /* Shared base */
      .btn-mac {
          display: inline-flex;
          align-items: center;
          gap: 0.4rem;
          padding: 0.7rem 1.75rem;
          border-radius: var(--r-full);
          font-size: 0.9rem;
          font-family: var(--ff);
          border: 1.5px solid transparent;
          cursor: pointer;
          transition: all var(--t-med);
          position: relative;
          overflow: hidden;
      }

      .btn-mac::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(255, 255, 255, 0.15);
          opacity: 0;
          transition: opacity var(--t-fast);
      }

      .btn-mac:hover {
          transform: translateY(-2px);
      }

      .btn-mac:hover::after {
          opacity: 1;
      }

      /* Filled green */
      .btn-primary-mac {
          background: var(--grad-green);
          color: var(--clr-white) !important;
          box-shadow: var(--sh-green);
      }

      .btn-primary-mac:hover {
          box-shadow: 0 12px 40px rgba(105, 157, 40, 0.4);
      }

      /* Outline green */
      .btn-outline-mac {
          background: transparent;
          color: var(--clr-green) !important;
          border-color: var(--clr-green);
      }

      .btn-outline-mac:hover {
          background: var(--clr-green);
          color: var(--clr-white) !important;
          box-shadow: var(--sh-green);
      }

      /* Ghost (dark/hero backgrounds) */
      .btn-ghost-mac {
          background: rgba(255, 255, 255, 0.12);
          backdrop-filter: blur(12px);
          color: var(--clr-white) !important;
          border-color: rgba(255, 255, 255, 0.3);
      }

      .btn-ghost-mac:hover {
          background: rgba(255, 255, 255, 0.22);
      }

      /* ── 6. Glass Card ────────────────────────────────────────── */
      .glass-card {
          background: rgba(255, 255, 255, 0.14);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.22);
          border-radius: var(--r-lg);
          padding: 1.25rem 1.5rem;
      }

      /* ── 7. Animations ────────────────────────────────────────── */
      @keyframes float {

          0%,
          100% {
              transform: translateY(0);
          }

          50% {
              transform: translateY(-14px);
          }
      }

      @keyframes loadBar {
          to {
              width: 100%;
          }
      }

      @keyframes particleFloat {
          0% {
              transform: translateY(0) scale(1);
              opacity: 0.5;
          }

          100% {
              transform: translateY(-100vh) scale(0);
              opacity: 0;
          }
      }

      .float-anim {
          animation: float 5s ease-in-out infinite;
      }

      /* Fade-up scroll reveal */
      .fade-up {
          opacity: 0;
          transform: translateY(36px);
          transition:
              opacity 0.65s ease,
              transform 0.65s ease;
      }

      .fade-up.visible {
          opacity: 1;
          transform: translateY(0);
      }

      /* ── 8. Preloader ─────────────────────────────────────────── */
      #preloader {
          position: fixed;
          inset: 0;
          background: var(--clr-dark);
          z-index: 9999;
          display: flex;
          align-items: center;
          justify-content: center;
          transition:
              opacity 0.5s ease,
              visibility 0.5s ease;
      }

      #preloader.hidden {
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
      }

      .pre-logo {
          font-size: 2rem;
          color: var(--clr-white);
          margin-bottom: 1.5rem;
          letter-spacing: 0.06em;
      }

      .pre-logo span {
          color: var(--clr-green);
      }

      .pre-bar {
          width: 200px;
          height: 3px;
          background: rgba(255, 255, 255, 0.15);
          border-radius: var(--r-full);
          overflow: hidden;
          margin: 0 auto;
      }

      .pre-fill {
          height: 100%;
          width: 0;
          background: linear-gradient(90deg, var(--clr-green), var(--clr-accent));
          border-radius: var(--r-full);
          animation: loadBar 2s ease forwards;
      }

      /* ── 9. Navbar ────────────────────────────────────────────── */
      #mainNav {
          padding: 1.2rem 0;
          background: transparent;
          transition: all var(--t-med);
          z-index: 1000;
      }

      #mainNav.scrolled {
          background: rgba(8, 15, 26, 0.95);
          backdrop-filter: blur(20px);
          padding: 0.75rem 0;
          box-shadow: 0 2px 32px rgba(0, 0, 0, 0.25);
      }



      .brand-logo {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 1.35rem;
          letter-spacing: 0.02em;
          color: var(--clr-white) !important;
      }
      
      .brand-logo img{
          width:120px;
      }

      .brand-icon {
          width: 36px;
          height: 36px;
          background: var(--grad-green);
          border-radius: var(--r-sm);
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 1rem;
      }

      .brand-accent {
          color: var(--clr-green);
      }

      .navbar-nav .nav-link {
          font-size: 0.88rem;
          letter-spacing: 0.02em;
          color: rgba(255, 255, 255, 0.82) !important;
          padding: 0.5rem 0.85rem !important;
          border-radius: var(--r-full);
          transition: all var(--t-fast);
      }

      .navbar-nav .nav-link:hover,
      .navbar-nav .nav-link.active {
          color: var(--clr-white) !important;
          background: rgba(105, 157, 40, 0.18);
      }

      .custom-toggler {
          border: none;
          background: none;
          padding: 0.35rem;
          display: flex;
          flex-direction: column;
          gap: 5px;
          cursor: pointer;
      }

      .custom-toggler:focus {
          box-shadow: none;
      }

      .toggler-bar {
          display: block;
          width: 24px;
          height: 2px;
          background: var(--clr-white);
          border-radius: 2px;
          transition: all var(--t-fast);
      }

      /* ── 10. Hero ─────────────────────────────────────────────── */

      section {
          overflow: hidden;
      }

      .hero-section {
          position: relative;
          min-height: 100vh;
          background: url("/assets/images/hero-bg2.png") center/cover fixed;
          overflow: hidden;
      }

      .hero-overlay {
          position: absolute;
          inset: 0;
          background: var(--grad-hero);
      }

      .hero-particles {
          position: absolute;
          inset: 0;
          pointer-events: none;
      }

      .hero-particle {
          position: absolute;
          width: 4px;
          height: 4px;
          background: var(--clr-green);
          border-radius: 50%;
          opacity: 0.5;
          animation: particleFloat linear infinite;
      }

      .hero-container {
          position: relative;
          z-index: 2;
      }

      .hero-heading {
          font-size: clamp(2.2rem, 5vw, 3.85rem);
          line-height: 1.1;
          color: var(--clr-white);
          max-width: 800px;
          margin: auto;
      }

      .hero-heading-accent {
          color: var(--clr-accent);
      }

      .hero-sub {
          font-size: 1.05rem;
          line-height: 1.75;
          color: rgba(255, 255, 255, 0.72);
      }

      .hero-curve {
          position: absolute;
          bottom: -1px;
          left: 0;
          right: 0;
      }

      .hero-curve svg {
          display: block;
          width: 100%;
          height: 80px;
      }

      /* ── 11. About ────────────────────────────────────────────── */
      .about-main-img {
          width: 100%;
          max-height: 480px;
          object-fit: cover;
          border-radius: var(--r-lg);
          box-shadow: var(--sh-soft);
      }

      .about-image-wrap {
          position: relative;
          display: inline-block;
          width: 100%;
      }

      /* Floating achievement cards */
      .afc {
          position: absolute;
          text-align: center;
          border-radius: var(--r-lg);
          padding: 1.25rem 1.5rem;
      }

      .afc-light {
          background: var(--clr-white);
          border: 1px solid var(--clr-border);
      }

      .afc-green {
          background: var(--grad-green);
          border: none;
          color: white;
      }

      .afc.card-success {
          top: 20px;
          right: -20px;
          min-width: 150px;
      }

      .afc.card-exp {
          bottom: 80px;
          left: -20px;
          min-width: 140px;
      }

      .afc.card-projects {
          bottom: -10px;
          right: 20px;
      }

      .afc-value {
          font-size: 1.6rem;

          line-height: 1;
          color: var(--clr-text);
      }

      .afc-green .afc-value {
          color: white;
      }

      .afc-label {
          font-size: 0.75rem;
          color: var(--clr-muted);
          margin-top: 3px;
      }

      .afc-green .afc-label {
          color: rgba(255, 255, 255, 0.8);
      }

      .afc-icon {
          font-size: 1.4rem;
          color: var(--clr-green);
          margin-bottom: 0.3rem;
      }

      .afc-green .afc-icon {
          color: rgba(255, 255, 255, 0.9);
      }

      .afc-bar {
          margin-top: 0.5rem;
          height: 4px;
          background: var(--clr-border);
          border-radius: var(--r-full);
          overflow: hidden;
      }

      .afc-fill {
          height: 100%;
          background: var(--grad-accent);
          border-radius: var(--r-full);
          transition: width 1.5s ease;
      }

      .rating-stars i {
          color: var(--clr-gold);
          font-size: 0.9rem;
      }

      .rating-value {
          font-size: 0.85rem;
          color: var(--clr-text);
      }

      .reviews-avatars {
          display: flex;
      }

      .reviews-avatars img {
          width: 28px;
          height: 28px;
          border-radius: 50%;
          border: 2px solid white;
          margin-left: -8px;
          object-fit: cover;
      }

      .reviews-avatars img:first-child {
          margin-left: 0;
      }

      /* ── 12. Solution Cards ───────────────────────────────────── */
      .sol-card {
          position: relative;
          border-radius: 24px;
          overflow: hidden;
          height: 340px;
          cursor: pointer;
      }

      .sol-card::after {
          content: "";
          z-index: 10;
          background-color: #fff;
          width: 112px;
          height: 112px;
          position: absolute;
          bottom: -2px;
          right: -2px;
          -webkit-mask: url(/assets/images/btn-bg.webp) 100% 100% / contain no-repeat;
          mask: url(/assets/images/btn-bg.webp) 100% 100% / contain no-repeat;
      }

      .sol-card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform var(--t-slow);
      }

      .sol-card:hover img {
          transform: scale(1.07);
      }

      .sol-card-overlay {
          position: absolute;
          inset: 0;
          border-radius: 24px;
          background: linear-gradient(to top,
                  rgba(5, 20, 5, 0.78) 0%,
                  transparent 60%);
          transition: background 0.45s ease;
      }

      .sol-card:hover .sol-card-overlay {
          background: linear-gradient(to top,
                  rgba(5, 20, 5, 0.92) 0%,
                  rgba(5, 20, 5, 0.3) 100%);
      }

      .sol-card-footer {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 1.25rem;
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          gap: 1rem;
      }

      .sol-card-title {
          font-size: 1.15rem;

          color: #fff;
          letter-spacing: 0.01em;
          display: block;
      }

      .sol-card-desc {
          font-size: 0.84rem;
          color: rgba(255, 255, 255, 0.85);
          line-height: 1.6;
          margin: 0 0 0.6rem;
          width: 90%;
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          transform: translateY(20px);
          transition:
              max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .sol-card:hover .sol-card-desc {
          max-height: 100px;
          opacity: 1;
          transform: translateY(0);
      }

      .sol-card-btn {
          flex-shrink: 0;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: var(--clr-accent);
          color: var(--clr-dark);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1rem;
          box-shadow: 0 4px 16px rgba(168, 216, 72, 0.4);
          position: absolute;
          bottom: 5px;
          right: 5px;
          z-index: 11;
          transform: rotate(45deg);
          transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .sol-card-btn:hover {
          background: var(--clr-green);
          color: white;
          transform: rotate(0deg) scale(1.1);
      }

      /* ── 13. Feature Cards (Benefits) ────────────────────────── */
      .feature-card {
          background: var(--clr-white);
          border-radius: var(--r-lg);
          padding: 2rem 1.5rem;
          box-shadow: var(--sh-soft);
          border: 1px solid var(--clr-border);
          transition: all var(--t-med);
          height: 100%;
          position: relative;
          overflow: hidden;
      }

      .feature-card:hover {
          transform: translateY(-6px);
          box-shadow: var(--sh-md);
      }

      .fc-icon {
          width: 56px;
          height: 56px;
          border-radius: var(--r-md);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.4rem;
          margin-bottom: 1.2rem;
          transition: all var(--t-med);
      }

      /* Icon colour variants */
      .fc-icon-green {
          background: rgba(105, 157, 40, 0.12);
          color: var(--clr-green);
      }

      .fc-icon-green2 {
          background: rgba(74, 116, 24, 0.1);
          color: var(--clr-green2);
      }

      .fc-icon-navy {
          background: rgba(0, 29, 61, 0.1);
          color: var(--clr-navy);
      }

      .fc-icon-accent {
          background: rgba(168, 216, 72, 0.15);
          color: #5a9c1a;
      }

      .fc-title {
          font-size: 1.05rem;

          color: var(--clr-text);
          margin-bottom: 0.65rem;
      }

      .fc-text {
          font-size: 0.88rem;
          color: var(--clr-muted);
          line-height: 1.65;
          margin: 0;
      }

      .fc-arrow {
          margin-top: 1.2rem;
          width: 32px;
          height: 32px;
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.85rem;
          transition: all var(--t-fast);
      }

      .feature-card:hover .fc-arrow {
          background: var(--clr-green);
          color: white;
          transform: translateX(4px);
      }

      /* ── 14. Stats Band ───────────────────────────────────────── */
      .stats-band {
          background: var(--grad-dark);
          padding: 4rem 0;
          position: relative;
          overflow: hidden;
      }

      .stats-band::before {
          content: "";
          position: absolute;
          top: -50%;
          left: -10%;
          width: 400px;
          height: 400px;
          background: radial-gradient(circle,
                  rgba(105, 157, 40, 0.15) 0%,
                  transparent 70%);
          border-radius: 50%;
      }

      .stat-item {
          text-align: center;
          padding: 1.5rem 1rem;
          position: relative;
      }

      .stat-item:not(:last-child)::after {
          content: "";
          position: absolute;
          top: 20%;
          bottom: 20%;
          right: 0;
          width: 1px;
          background: rgba(255, 255, 255, 0.12);
      }

      .stat-value {
          font-size: clamp(2rem, 4vw, 3rem);

          background: var(--grad-accent);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          line-height: 1;
          margin-bottom: 0.4rem;
      }

      .stat-label {
          font-size: 0.85rem;
          color: rgba(255, 255, 255, 0.6);
      }

      /* ── 15. Offer / Component Cards ─────────────────────────── */
      .offer-section {
          position: relative;
          background: url("/assets/images/center1.jpg") center/cover fixed;
          overflow: hidden;
      }

      .offer-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg,
                  rgba(8, 15, 26, 0.92) 0%,
                  rgba(0, 29, 61, 0.85) 50%,
                  rgba(8, 15, 26, 0.88) 100%);
          z-index: 0;
      }

      .offer-section .container {
          position: relative;
          z-index: 1;
      }

      .offer-card {
          border-radius: var(--r-lg);
          padding: 2rem 1.5rem;
          transition: all var(--t-med);
          cursor: pointer;
          height: 100%;
          position: relative;
          overflow: hidden;
      }

      .offer-card-glass {
          background: rgba(255, 255, 255, 0.07);
          backdrop-filter: blur(16px);
          -webkit-backdrop-filter: blur(16px);
          border: 1px solid rgba(255, 255, 255, 0.12);
          color: var(--clr-white);
      }

      .offer-card-glass:hover {
          background: rgba(255, 255, 255, 0.13);
          border-color: rgba(105, 157, 40, 0.4);
          transform: translateY(-6px);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
      }

      .offer-card-highlight {
          background: var(--grad-accent);
          border: none;
          color: var(--clr-white);
      }

      .offer-card-highlight:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 56px rgba(245, 158, 11, 0.55);
      }

      .offer-icon {
          width: 56px;
          height: 56px;
          border-radius: var(--r-md);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          margin-bottom: 1.4rem;
          transition: all var(--t-med);
      }

      .offer-card-glass .offer-icon {
          background: rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.85);
          border: 1px solid rgba(255, 255, 255, 0.15);
      }

      .offer-card-highlight .offer-icon {
          background: rgba(255, 255, 255, 0.25);
          color: white;
      }

      .offer-title {
          font-size: 1.1rem;

          margin-bottom: 0.75rem;
          color: inherit;
      }

      .offer-text {
          font-size: 0.85rem;
          line-height: 1.65;
      }

      .offer-card-glass .offer-text {
          color: rgba(255, 255, 255, 0.6);
      }

      .offer-card-highlight .offer-text {
          color: rgba(255, 255, 255, 0.85);
      }

      .offer-cursor {
          position: absolute;
          bottom: 1.25rem;
          right: 1.25rem;
          width: 36px;
          height: 36px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.9rem;
          transition: all var(--t-fast);
      }

      .offer-card-glass .offer-cursor {
          background: rgba(105, 157, 40, 0.25);
          color: var(--clr-accent);
          border: 1px solid rgba(105, 157, 40, 0.3);
      }

      .offer-card-glass:hover .offer-cursor {
          background: var(--clr-green);
          color: white;
      }

      .offer-card-highlight .offer-cursor {
          background: rgba(255, 255, 255, 0.25);
          color: white;
      }

      .offer-card-highlight:hover .offer-cursor {
          background: white;
          color: #d97706;
          transform: scale(1.1);
      }

      .rating-caption {
          font-size: 0.82rem;
          color: rgba(255, 255, 255, 0.55);
          margin-top: 0.25rem;
      }

      /* ── 16. Testimonials ─────────────────────────────────────── */
      .testimonials-section {
          position: relative;
          background: url("/assets/images/bottom-img.jpg") bottom/cover no-repeat;
      }

      .testimonials-section::before {
          content: "";
          position: absolute;
          inset: 0;
          /* background-color: var(--clr-off); */
          opacity: 0.6;
          z-index: 1;
      }

      .testimonials-section>* {
          position: relative;
          z-index: 2;
      }

      .tc-card {
          background: var(--clr-white);
          border-radius: var(--r-lg);
          padding: 2rem;
          border: 1px solid var(--clr-border);
          height: 100%;
          position: relative;
          transition: all var(--t-med);
      }

      .tc-card:hover {
          transform: translateY(-8px);
          box-shadow: var(--sh-md);
      }

      .tc-card-featured {
          background: var(--grad-dark);
          border-color: rgba(105, 157, 40, 0.35);
          transform: translateY(-12px);
      }

      .tc-card-featured:hover {
          transform: translateY(-20px);
      }

      .tc-quote {
          font-size: 2.5rem;
          color: var(--clr-green);
          line-height: 1;
          margin-bottom: 0.75rem;
      }

      .tc-card-featured .tc-quote {
          color: var(--clr-accent);
      }

      .tc-text {
          font-size: 0.92rem;
          line-height: 1.75;
          color: var(--clr-muted);
          margin-bottom: 1.5rem;
      }

      .tc-card-featured .tc-text {
          color: rgba(255, 255, 255, 0.75);
      }

      .tc-author {
          display: flex;
          align-items: center;
          gap: 0.9rem;
      }

      .tc-avatar {
          width: 46px;
          height: 46px;
          border-radius: 50%;
          border: 2px solid rgba(105, 157, 40, 0.4);
          flex-shrink: 0;
      }

      .tc-name {
          font-size: 0.92rem;

          color: var(--clr-text);
      }

      .tc-card-featured .tc-name {
          color: var(--clr-white);
      }

      .tc-location {
          font-size: 0.78rem;
          color: var(--clr-muted);
          margin-top: 2px;
      }

      .tc-card-featured .tc-location {
          color: rgba(255, 255, 255, 0.55);
      }

      .tc-stars i {
          color: var(--clr-gold);
          font-size: 0.8rem;
      }

      .carousel-ctrl {
          width: 46px;
          height: 46px;
          border-radius: 50%;
          background: var(--clr-off);
          border: 1.5px solid var(--clr-border);
          color: var(--clr-text);
          font-size: 1rem;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all var(--t-fast);
      }

      .carousel-ctrl.active,
      .carousel-ctrl:hover {
          background: var(--clr-green);
          border-color: var(--clr-green);
          color: white;
      }

      /* ── 17. Partners ─────────────────────────────────────────── */
      .partner-card {
          background: var(--clr-navy);
          border: 1px solid var(--clr-border);
          border-radius: var(--r-lg);
          padding: 2rem 1.5rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 0.9rem;
          transition: all var(--t-med);
          cursor: default;
          position: relative;
          overflow: hidden;
          min-height: 140px;
      }

      .partner-card:hover {
          transform: translateY(-6px);
          box-shadow: var(--sh-md);
          border-color: rgba(105, 157, 40, 0.3);
      }

      .partner-logo-wrap {
          height: 52px;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
      }

      .partner-logo-wrap img {
          max-height: 48px;
          width: auto;
          max-width: 140px;
          transition: filter var(--t-med);
      }

      .partner-name {
          font-size: 0.78rem;

          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: var(--clr-off);
          transition: color var(--t-fast);
      }

      .partner-card:hover .partner-name {
          color: var(--clr-green);
      }

      .partnerSwiper,
      .certSwiper {
          padding-bottom: 50px;
      }

      .partnerSwiper .swiper-slide,
      .certSwiper .swiper-slide {
          height: auto;
      }

      .swiper-pagination-bullet {
          background: var(--clr-accent);
      }

      .partner-card,
      .cert-card {
          height: 100%;
      }

      /* ── 18. Blog ─────────────────────────────────────────────── */
      .blog-card {
          display: flex;
          align-items: center;
          gap: 1.5rem;
          background: var(--clr-white);
          border-radius: var(--r-lg);
          padding: 1.25rem;
          box-shadow: var(--sh-soft);
          border: 1px solid var(--clr-border);
          transition: all var(--t-med);
          position: relative;
      }

      .blog-card:hover {
          transform: translateX(6px);
          box-shadow: var(--sh-md);
      }

      .blog-thumb {
          flex-shrink: 0;
          width: 120px;
          height: 100px;
          border-radius: var(--r-md);
          overflow: hidden;
      }

      .blog-thumb img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform var(--t-slow);
      }

      .blog-card:hover .blog-thumb img {
          transform: scale(1.08);
      }

      .blog-body {
          flex: 1;
      }

      .blog-meta {
          display: flex;
          gap: 1rem;
          margin-bottom: 0.5rem;
      }

      .blog-read,
      .blog-date {
          font-size: 0.75rem;
          color: var(--clr-muted);
      }

      .blog-read {
          color: var(--clr-green);
      }

      .blog-title {
          font-size: 0.98rem;

          color: var(--clr-text);
          line-height: 1.4;
          margin-bottom: 0.4rem;
          transition: color var(--t-fast);
      }

      .blog-card:hover .blog-title {
          color: var(--clr-green);
      }

      .blog-excerpt {
          font-size: 0.82rem;
          color: var(--clr-muted);
          margin: 0;
          line-height: 1.5;
      }

      .blog-arrow {
          flex-shrink: 0;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: var(--grad-green);
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.95rem;
          box-shadow: var(--sh-green);
          transition: all var(--t-fast);
          margin-right: 0.5rem;
          transform: rotate(45deg);
      }

      .blog-card:hover .blog-arrow {
          transform: rotate(0deg) scale(1.1);
      }

      /* Featured blog card */
      .blog-featured {
          position: relative;
          height: 100%;
          border-radius: 24px;
          overflow: hidden;
          cursor: pointer;
          display: flex;
          align-items: flex-end;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          transition: transform 0.4s ease;
      }

      .blog-featured::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(to bottom,
                  rgba(0, 0, 0, 0.2) 0%,
                  rgba(0, 0, 0, 0.75) 100%);
          z-index: 1;
          transition: background 0.3s ease;
      }

      .blog-featured:hover {
          transform: scale(1.02);
      }

      .blog-featured:hover::before {
          background: rgba(0, 0, 0, 0.45);
      }

      .blog-featured .blog-body {
          position: relative;
          z-index: 2;
          padding: 2rem;
          color: white;
      }

      .blog-featured .blog-title {
          font-size: 1.8rem;

          margin-bottom: 0.8rem;
          background: var(--grad-accent);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
      }

      .blog-featured .blog-excerpt {
          font-size: 1rem;
          line-height: 1.5;
          margin-bottom: 1rem;
          color: var(--clr-white);
      }

      .blog-featured .blog-meta {
          font-size: 0.9rem;
          display: flex;
          justify-content: space-between;
          margin-bottom: 1rem;
      }

      .blog-featured .blog-read,
      .blog-featured .blog-date {
          color: var(--clr-white);
      }

      /* ── 19. CTA Section ──────────────────────────────────────── */
      .cta-section {
          position: relative;
          padding: 7rem 0;
          background: url("/assets/images/Solar-PV-Modules.png") center/cover no-repeat;
          background-attachment: fixed;
          overflow: hidden;
          margin: var(--r-md);
          border-radius: var(--r-lg);
      }

      .cta-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: var(--grad-cta);

      }

      .cta-container {
          position: relative;
          z-index: 2;
      }

      .cta-badge {
          display: inline-flex;
          align-items: center;
          background: rgba(168, 216, 72, 0.15);
          border: 1px solid rgba(168, 216, 72, 0.3);
          color: var(--clr-accent);
          padding: 0.5rem 1.2rem;
          border-radius: var(--r-full);
          font-size: 0.8rem;

          letter-spacing: 0.12em;
          text-transform: uppercase;
          margin-bottom: 1.5rem;
      }

      .cta-heading {
          font-size: clamp(2.5rem, 4vw, 5.5rem);

          line-height: 1.05;
          color: var(--clr-white);
          letter-spacing: 0.04em;
          margin-bottom: 1.5rem;
      }

      .cta-accent {
          background: var(--grad-accent);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
      }

      .cta-sub {
          font-size: 1.05rem;
          color: rgba(255, 255, 255, 0.7);
          max-width: 520px;
          margin: 0 auto 2rem;
          line-height: 1.7;
      }

      /* ── 20. Footer ───────────────────────────────────────────── */
      .site-footer {
          background: var(--clr-dark);
          padding: 5rem 0 0;
          border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .footer-logo-icon {
          width: 34px;
          height: 34px;
          background: var(--grad-green);
          border-radius: var(--r-sm);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.95rem;
          color: white;
      }

      .footer-logo-text {
          font-size: 1.2rem;

          color: var(--clr-white);
      }

      .footer-logo-text span {
          color: var(--clr-green);
      }

      .footer-about {
          font-size: 0.88rem;
          color: rgba(255, 255, 255, 0.55);
          line-height: 1.7;
          margin-top: 0.5rem;
      }

      .footer-social-link {
          width: 36px;
          height: 36px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.07);
          border: 1px solid rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.6);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.9rem;
          transition: all var(--t-fast);
      }

      .footer-social-link:hover {
          background: var(--clr-green);
          border-color: var(--clr-green);
          color: white;
          transform: translateY(-3px);
      }

      .footer-heading {
          font-size: 0.85rem;

          color: var(--clr-white);
          text-transform: uppercase;
          letter-spacing: 0.12em;
          margin-bottom: 1.25rem;
      }

      .footer-links {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .footer-links li {
          margin-bottom: 0.6rem;
      }

      .footer-links a {
          font-size: 0.88rem;
          color: rgba(255, 255, 255, 0.5);
          transition: color var(--t-fast);
      }

      .footer-links a:hover {
          color: var(--clr-green);
      }

      .footer-contacts {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .footer-contacts li {
          display: flex;
          align-items: flex-start;
          gap: 0.75rem;
          font-size: 0.88rem;
          color: rgba(255, 255, 255, 0.5);
          margin-bottom: 0.85rem;
      }

      .footer-contacts i {
          color: var(--clr-green);
          margin-top: 2px;
          flex-shrink: 0;
      }

      .footer-contacts a {
          color: rgba(255, 255, 255, 0.5);
      }

      .footer-contacts a:hover {
          color: var(--clr-green);
      }

      .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.08);
          padding: 1.5rem 0;
          margin-top: 2rem;
      }

      .footer-copy {
          font-size: 0.82rem;
          color: rgba(255, 255, 255, 0.35);
      }

      .footer-legal {
          font-size: 0.82rem;
          color: rgba(255, 255, 255, 0.4);
          transition: color var(--t-fast);
      }

      .footer-legal:hover {
          color: var(--clr-green);
      }

      .footer-cities {
          display: flex;
          flex-wrap: wrap;
          gap: 5px;
      }

      .footer-cities li {
          background: rgba(255, 255, 255, .10);
          backdrop-filter: blur(8px);
          border: 1px solid rgba(255, 255, 255, .18);
          border-radius: 999px;
          padding: 5px 10px;
          font-size: 5px;
      }

      /* ── 21. Back to Top ──────────────────────────────────────── */
      .back-to-top {
          position: fixed;
          bottom: 2rem;
          right: 2rem;
          width: 44px;
          height: 44px;
          background: var(--grad-green);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1rem;
          box-shadow: var(--sh-green);
          opacity: 0;
          transform: translateY(20px);
          transition: all var(--t-med);
          z-index: 999;
      }

      .back-to-top.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .back-to-top:hover {
          transform: translateY(-4px);
          color: white;
      }

      /* ── 22. Responsive ───────────────────────────────────────── */
      @media (max-width: 991.98px) {
          .afc.card-success {
              right: 0;
          }

          .afc.card-exp {
              left: 0;
          }

          .tc-card-featured {
              transform: none;
          }

          .tc-card-featured:hover {
              transform: translateY(-8px);
          }
      }

      @media (max-width: 767.98px) {
          .navbar-collapse {
              height: 100vh;
              padding: 50px 20px;
              text-align: center;
          }

          .blog-card {
              align-items: end;
          }

          .section-pad {
              padding: 4rem 0;
          }

          .blog-card {
              flex-direction: column;
          }

          .blog-thumb {
              width: 100%;
              height: 160px;
          }

          .stat-item:not(:last-child)::after {
              display: none;
          }

          .afc {
              position: relative !important;
              inset: auto;
              margin: 0.75rem 0;
              display: none;
          }

          .about-image-wrap {
              text-align: center;
          }
      }

      @media (max-width: 575.98px) {
          .cta-heading {
              font-size: 2.2rem;
          }

          .hero-heading {
              font-size: 1.95rem;
          }
      }

      /* Benefits background */
      .benefits-section {
          position: relative;
          background: url("/assets/images/perspective_grid_pattern.jpg") center/cover no-repeat;
      }

      .benefits-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background-color: var(--clr-off);
          opacity: 0.6;
          z-index: 1;
      }

      .benefits-section>* {
          position: relative;
          z-index: 2;
      }


      /* about-us page */

      /* ============================================================
   About Us — Internal CSS (extends common styles)
   ============================================================ */

      /* ── Page Hero ─────────────────────────────────────────────── */
      .about-hero {
          position: relative;
          min-height: 80vh;
          background: url('/assets/images/bread1.jpg') center/cover no-repeat;
          display: flex;
          align-items: center;
          overflow: hidden;
      }

      .about-hero-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(8, 15, 26, 0.90) 0%, rgba(0, 29, 61, 0.80) 60%, rgba(8, 15, 26, 0.70) 100%);
      }

      .about-hero-content {
          position: relative;
          z-index: 2;
          padding: 8rem 10px 5rem;
      }

      .about-hero-title {
          font-family: var(--ff);
          font-size: clamp(2.4rem, 5vw, 4rem);
          line-height: 1.1;
          color: var(--clr-white);
      }

      .about-hero-sub {
          font-size: 1.05rem;
          line-height: 1.75;
          color: rgba(255, 255, 255, 0.70);
          max-width: 540px;
      }

      /* Breadcrumb */
      .page-breadcrumb {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 0.82rem;
          color: rgba(255, 255, 255, 0.5);
          margin-bottom: 1.25rem;
      }

      .page-breadcrumb a {
          color: rgba(255, 255, 255, 0.5);
          transition: color var(--t-fast);
      }

      .page-breadcrumb a:hover {
          color: var(--clr-accent);
      }

      .page-breadcrumb .sep {
          color: rgba(255, 255, 255, 0.25);
      }

      .page-breadcrumb .current {
          color: var(--clr-accent);
      }

      /* ── Values ─────────────────────────────────────────────────── */
      .value-item {
          display: flex;
          gap: 1.25rem;
          align-items: flex-start;
          padding: 1.5rem;
          border-radius: var(--r-lg);
          border: 1px solid var(--clr-border);
          background: var(--clr-white);
          box-shadow: var(--shadow-soft);
          transition: all var(--t-med);
      }

      .value-item:hover {
          transform: translateX(6px);
          box-shadow: var(--shadow-md);
          border-color: rgba(105, 157, 40, 0.3);
      }

      .value-num {
          font-size: 2rem;

          line-height: 1;
          background: linear-gradient(135deg, var(--clr-green), var(--clr-accent));
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          flex-shrink: 0;
          width: 2.5rem;
      }

      .value-title {
          font-size: 1rem;

          color: var(--clr-text);
          margin-bottom: 0.35rem;
      }

      .value-text {
          font-size: 0.85rem;
          color: var(--clr-muted);
          line-height: 1.6;
          margin: 0;
      }

      /* ── Timeline ───────────────────────────────────────────────── */
      .timeline {
          position: relative;
          padding-left: 2.5rem;
      }

      .timeline::before {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          left: 10px;
          width: 2px;
          background: linear-gradient(to bottom, var(--clr-green), var(--clr-accent), transparent);
      }

      .tl-item {
          position: relative;
          padding-bottom: 2.25rem;
      }

      .tl-item:last-child {
          padding-bottom: 0;
      }

      .tl-dot {
          position: absolute;
          left: -2.4rem;
          top: 4px;
          width: 18px;
          height: 18px;
          border-radius: 50%;
          background: var(--clr-green);
          border: 3px solid var(--clr-white);
          box-shadow: 0 0 0 3px rgba(105, 157, 40, 0.25);
          z-index: 1;
      }

      .tl-year {
          display: inline-block;
          font-size: 0.75rem;

          color: var(--clr-green);
          background: rgba(105, 157, 40, 0.1);
          border: 1px solid rgba(105, 157, 40, 0.25);
          padding: 0.2rem 0.7rem;
          border-radius: var(--r-full);
          margin-bottom: 0.5rem;
          letter-spacing: 0.08em;
      }

      .tl-title {
          font-size: 0.98rem;

          color: var(--clr-text);
          margin-bottom: 0.3rem;
      }

      .tl-text {
          font-size: 0.84rem;
          color: var(--clr-muted);
          line-height: 1.6;
          margin: 0;
      }

      /* ── Mission Section (dark bg) ──────────────────────────────── */
      .mission-section {
          position: relative;
          background: url('/assets/images/On-Grid-Systems.png') center/cover fixed;
          overflow: hidden;
      }

      .mission-section::before {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(8, 15, 26, 0.92) 0%, rgba(0, 29, 61, 0.85) 50%, rgba(8, 15, 26, 0.88) 100%);
          z-index: 0;
      }

      .mission-section .container {
          position: relative;
          z-index: 1;
      }

      /* ── Process / Zigzag Cards ─────────────────────────────────── */
      .process-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 0 0.75rem;
          position: relative;
      }

      .process-item--down {
          padding-top: 2.5rem;
      }

      .process-item--up {
          padding-top: 0;
      }

      .process-img-wrap {
          position: relative;
          width: 300px;
          height: 280px;
          flex-shrink: 0;
      }

      .process-item--down .process-img-wrap img {
          border-radius: 50% 50% 0 0;
      }

      .process-item--up .process-img-wrap img {
          border-radius: 0 0 50% 50%;
      }

      .process-img-wrap img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      }



      .process-num {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--clr-green), var(--clr-green2));
          color: white;
          font-size: 0.78rem;

          letter-spacing: 0.05em;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 4px 14px rgba(105, 157, 40, 0.45);
          border: 2px solid white;
          z-index: 2;
      }

      .process-item--down .process-num {
          bottom: -15px;
          top: auto;
      }

      .process-item--up .process-num {
          top: -15px;
          bottom: auto;
      }

      .process-body {
          padding: 1.25rem 0.5rem 0;
      }

      .process-body--top {
          padding: 0 0.5rem 1.25rem;
          order: -1;
      }

      .process-title {
          font-size: 0.98rem;

          color: var(--clr-accent);
          margin-bottom: 0.5rem;
          line-height: 1.35;
      }

      .process-text {
          font-size: 0.83rem;
          color: var(--clr-white);
          line-height: 1.65;
          margin: 0;
      }

      /* ── Certifications ─────────────────────────────────────────── */
      .cert-card {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 0.75rem;
          padding: 1.75rem 1.25rem;
          background: var(--clr-off);
          border-radius: var(--r-lg);
          border: 1px solid var(--clr-border);
          box-shadow: var(--shadow-soft);
          transition: all var(--t-med);
      }

      .cert-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-md);
          border-color: rgba(105, 157, 40, 0.3);
      }

      .cert-icon {
          width: 56px;
          height: 56px;
          border-radius: var(--r-md);
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          font-size: 1.5rem;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .cert-name {
          font-size: 0.9rem;

          color: var(--clr-text);
          line-height: 1.3;
      }

      .cert-body {
          font-size: 0.78rem;
          color: var(--clr-muted);
          margin: 0;
          line-height: 1.5;
      }

      /* ── Contact Section ─────────────────────────────────────────── */
      .contact-section {
          position: relative;
          overflow: hidden;
          background: var(--clr-off);
          min-height: 100vh;
          margin: var(--r-md);
          border-radius: var(--r-lg);
          padding: 5rem 0;

      }

      .contact-bg {
          position: absolute;
          inset: 0;
          background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
          z-index: 0;
      }

      .contact-overlay {
          position: absolute;
          inset: 0;
          background: var(--grad-cta);
          z-index: 1;
      }



      .contact-container {
          position: relative;
          z-index: 2;
      }



      .contact-eyebrow {
          color: var(--clr-accent) !important;
          background: rgba(168, 216, 72, 0.12) !important;
          border-color: rgba(168, 216, 72, 0.28) !important;
          width: fit-content;
      }

      .contact-heading {
          font-family: var(--ff);
          font-size: clamp(2.6rem, 5.5vw, 4.5rem);

          line-height: 1.08;
          color: var(--clr-white);
          letter-spacing: -0.01em;
      }

      .contact-info {
          display: flex;
          flex-direction: column;
          gap: 1.75rem;
      }

      .contact-info-label {
          font-size: 1.05rem;

          color: var(--clr-white);
          margin-bottom: 0.35rem;
      }

      .contact-info-text {
          font-size: 0.92rem;
          color: rgba(255, 255, 255, 0.65);
          line-height: 1.7;
          margin: 0;
      }

      .contact-info-text a {
          color: rgba(255, 255, 255, 0.65);
          transition: color var(--t-fast);
          display: block;
      }

      .contact-info-text a:hover {
          color: var(--clr-accent);
      }

      .contact-card {
          background: var(--clr-white);
          border-radius: 28px;
          padding: 2.75rem 2.25rem;
          box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
      }

      .contact-card-title {
          font-family: var(--ff);
          font-size: 1.5rem;

          color: var(--clr-text);
          line-height: 1.25;
          margin-bottom: 0.5rem;
      }

      .contact-card-sub {
          font-size: 0.88rem;
          color: var(--clr-muted);
          margin: 0;
          line-height: 1.6;
      }

      .cf-input {
          width: 100%;
          background: #f4f6f9;
          border: 1.5px solid transparent;
          border-radius: 12px;
          padding: 0.85rem 1.1rem;
          font-family: var(--ff);
          font-size: 0.88rem;
          color: var(--clr-text);
          outline: none;
          transition: border-color var(--t-fast), box-shadow var(--t-fast);
          appearance: none;
          -webkit-appearance: none;
      }

      .cf-input::placeholder {
          color: var(--clr-muted);
      }

      .cf-input:focus {
          border-color: var(--clr-green);
          box-shadow: 0 0 0 3px rgba(105, 157, 40, 0.12);
          background: var(--clr-white);
      }

      .cf-select {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7b8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: right 1rem center;
          padding-right: 2.5rem;
          cursor: pointer;
          color: var(--clr-muted);
      }

      .cf-select:focus {
          color: var(--clr-text);
      }

      .cf-textarea {
          resize: vertical;
          min-height: 110px;
      }

      .cf-check {
          display: flex;
          align-items: flex-start;
          gap: 0.75rem;
          cursor: pointer;
      }

      .cf-check input[type="checkbox"] {
          display: none;
      }

      .cf-check-box {
          flex-shrink: 0;
          width: 20px;
          height: 20px;
          border-radius: 5px;
          border: 1.5px solid var(--clr-border);
          background: #f4f6f9;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 1px;
          transition: all var(--t-fast);
      }

      .cf-check input:checked+.cf-check-box {
          background: var(--clr-green);
          border-color: var(--clr-green);
      }

      .cf-check input:checked+.cf-check-box::after {
          content: '';
          display: block;
          width: 5px;
          height: 9px;
          border: 2px solid white;
          border-top: none;
          border-left: none;
          transform: rotate(45deg) translateY(-1px);
      }

      .cf-check-label {
          font-size: 0.84rem;
          color: var(--clr-muted);
          line-height: 1.5;
          user-select: none;
      }

      .cf-submit {
          display: inline-flex;
          align-items: center;
          gap: 0.6rem;
          background: var(--clr-accent);
          color: var(--clr-dark);
          font-family: var(--ff);
          font-size: 0.95rem;

          border: none;
          border-radius: var(--r-full);
          padding: 0.85rem 2rem;
          cursor: pointer;

          box-shadow: 0 6px 24px rgba(168, 216, 72, 0.4);

          transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);


      }

      .cf-submit:hover {
          background: var(--clr-green);
          color: var(--clr-white);
          transform: translateY(-4px);
          box-shadow: 0 12px 36px rgba(105, 157, 40, 0.4);
      }

      .cf-submit i {
          font-size: 1rem;
          transform: rotate(0deg);
          width: 36px;
          height: 36px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.9rem;

      }

      .cf-submit:hover i {
          transform: rotate(-55deg);
      }

      /* ── Responsive ─────────────────────────────────────────────── */
      @media (max-width: 991.98px) {


          .contact-heading {
              font-size: 2.6rem;
          }
      }

      @media (max-width: 767.98px) {

          .process-item--down,
          .process-item--up {
              padding-top: 0;
          }

          .process-body--top {
              order: 0;
              padding: 1.25rem 0.5rem 0;
          }

          .process-img-wrap {
              width: 300px;
              height: 320px;
          }

          .contact-card {
              padding: 2rem 1.5rem;
              border-radius: 20px;
          }

          .contact-heading {
              font-size: 2.2rem;
          }

          .timeline {
              padding-left: 2rem;
          }
      }



      /* product page */
      /* ============================================================
       Solar PV Modules — Internal CSS (extends style.css)
    ============================================================ */


      /* ── Gallery ─────────────────────────────────────────────────── */
      .pd-gallery {
          display: flex;
          gap: 1rem;
          background: var(--clr-off);
          padding: 20px;
          border-radius: var(--r-lg);
      }

      .pd-thumbs {
          display: flex;
          flex-direction: column;
          gap: 0.6rem;
          flex-shrink: 0;
      }

      .pd-thumb {
          width: 72px;
          height: 72px;
          border-radius: var(--r-md);
          overflow: hidden;
          border: 2px solid var(--clr-border);
          cursor: pointer;
          transition: border-color var(--t-fast);
          background: var(--clr-white);
      }

      .pd-thumb img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
      }

      .pd-thumb.active,
      .pd-thumb:hover {
          border-color: var(--clr-green);
      }

      .pd-main-img-wrap {
          flex: 1;
          min-width: 0;
          background: var(--clr-white);
          border-radius: var(--r-lg);
          overflow: hidden;
          position: relative;
          aspect-ratio: 4/3;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: var(--sh-soft);
      }

      .pd-main-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: opacity 0.25s ease;
      }

      .pd-zoom-btn {
          position: absolute;
          top: 0.75rem;
          right: 0.75rem;
          width: 34px;
          height: 34px;
          border-radius: 50%;
          background: var(--clr-white);
          border: 1px solid var(--clr-border);
          color: var(--clr-muted);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.88rem;
          cursor: pointer;
          transition: all var(--t-fast);
      }

      .pd-zoom-btn:hover {
          background: var(--clr-green);
          color: white;
          border-color: var(--clr-green);
      }

      .pd-badge {
          position: absolute;
          top: 0.75rem;
          left: 0.75rem;
          background: var(--grad-green);
          color: white;
          font-size: 0.7rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          padding: 0.3rem 0.8rem;
          border-radius: var(--r-full);
          box-shadow: var(--sh-green);
      }

      /* ── Trust Badges row ────────────────────────────────────────── */
      .pd-trust-row {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0.5rem;
          flex-wrap: wrap;
          margin-top: 1rem;
      }

      .pd-trust-badge {
          display: flex;
          align-items: center;
          gap: 0.4rem;
          font-size: 0.72rem;
          color: var(--clr-white);
          background: var(--grad-dark);
          border: 1px solid var(--clr-border);
          border-radius: var(--r-full);
          padding: 0.3rem 0.75rem;
          white-space: nowrap;
      }

      .pd-trust-badge i {
          color: var(--clr-green);
          font-size: 0.8rem;
      }

      /* ── Info panel ─────────────────────────────────────────────── */

      .pd-title {
          font-family: var(--ff);
          font-size: clamp(1.5rem, 3vw, 2rem);
          color: var(--clr-text);
          line-height: 1.2;
          margin-bottom: 0.4rem;
      }

      .pd-price {
          font-size: 1.3rem;
          color: var(--clr-green);
          margin-bottom: 0.75rem;
      }

      .pd-price-note {
          font-size: 0.78rem;
          color: var(--clr-muted);
          margin-left: 0.4rem;
      }

      .pd-stars {
          display: flex;
          align-items: center;
          gap: 0.4rem;
          margin-bottom: 1rem;
      }

      .pd-stars i {
          color: var(--clr-gold);
          font-size: 0.9rem;
      }

      .pd-review-count {
          font-size: 0.8rem;
          color: var(--clr-muted);
      }

      .pd-divider {
          border: none;
          border-top: 1px solid var(--clr-border);
          margin: 1.1rem 0;
      }

      .pd-desc {
          font-size: 0.9rem;
          color: var(--clr-muted);
          line-height: 1.75;
          margin-bottom: 1.25rem;
      }

      .pd-info {
          padding: 20px;
      }

      /* Highlights */
      .pd-highlights {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 0.6rem;
          margin-bottom: 1.25rem;
      }

      .pd-highlight-item {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 0.8rem;
          color: var(--clr-text);
          background: var(--clr-off);
          border: 1px solid var(--clr-border);
          border-radius: var(--r-sm);
          padding: 0.5rem 0.75rem;
      }

      .pd-highlight-item i {
          color: var(--clr-green);
          font-size: 0.9rem;
          flex-shrink: 0;
      }

      /* Variant selector */
      .pd-variant-label {
          font-size: 0.82rem;
          color: var(--clr-text);
          margin-bottom: 0.4rem;
          letter-spacing: 0.02em;
      }

      .pd-select {
          width: 100%;
          background: var(--clr-white);
          border: 1.5px solid var(--clr-border);
          border-radius: 8px;
          padding: 0.65rem 2.5rem 0.65rem 0.9rem;
          font-family: var(--ff);
          font-size: 0.88rem;
          color: var(--clr-text);
          outline: none;
          appearance: none;
          cursor: pointer;
          transition: border-color var(--t-fast);
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7b8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: right 0.9rem center;
      }

      .pd-select:focus {
          border-color: var(--clr-green);
      }

      /* Qty + actions */
      .pd-actions {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          flex-wrap: wrap;
      }

      .pd-qty {
          display: flex;
          align-items: center;
          border: 1.5px solid var(--clr-border);
          border-radius: 8px;
          overflow: hidden;
          background: var(--clr-white);
      }

      .pd-qty input {
          width: 48px;
          text-align: center;
          border: none;
          outline: none;
          font-family: var(--ff);
          font-size: 0.9rem;
          color: var(--clr-text);
          padding: 0.6rem 0;
          background: transparent;
      }

      .pd-qty-btn {
          width: 32px;
          height: 40px;
          border: none;
          background: none;
          color: var(--clr-muted);
          font-size: 0.7rem;
          cursor: pointer;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 2px;
          padding: 0;
          transition: color var(--t-fast);
      }

      .pd-qty-btn:hover {
          color: var(--clr-green);
      }

      .pd-buy-btn {
          flex: 1;
          min-width: 120px;
          background: linear-gradient(135deg, var(--clr-green), var(--clr-green2));
          color: white;
          border: none;
          border-radius: var(--r-full);
          padding: 0.7rem 1.5rem;
          font-family: var(--ff);
          font-size: 0.9rem;
          cursor: pointer;
          box-shadow: var(--sh-green);
          transition: all var(--t-med);
      }

      .pd-buy-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 28px rgba(105, 157, 40, 0.4);
      }

      .pd-wish-btn {
          width: 42px;
          height: 42px;
          border-radius: 50%;
          border: 1.5px solid var(--clr-border);
          background: var(--clr-white);
          color: var(--clr-muted);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1rem;
          cursor: pointer;
          transition: all var(--t-fast);
          flex-shrink: 0;
      }

      .pd-wish-btn:hover,
      .pd-wish-btn.active {
          border-color: #e74c3c;
          color: #e74c3c;
      }

      /* Meta */
      .pd-meta {
          margin-top: 1.25rem;
      }

      .pd-meta-row {
          display: flex;
          align-items: baseline;
          gap: 0.5rem;
          font-size: 0.85rem;
          margin-bottom: 0.4rem;
      }

      .pd-meta-key {
          color: var(--clr-text);
          flex-shrink: 0;
      }

      .pd-meta-val {
          color: var(--clr-muted);
      }

      .pd-meta-tag {
          display: inline-block;
          font-size: 0.75rem;
          color: var(--clr-green);
          background: rgba(105, 157, 40, 0.1);
          border: 1px solid rgba(105, 157, 40, 0.2);
          border-radius: var(--r-full);
          padding: 0.15rem 0.6rem;
          margin: 0.1rem;
          text-decoration: none;
          transition: all var(--t-fast);
      }

      .pd-meta-tag:hover {
          background: var(--clr-green);
          color: white;
      }

      /* ── Tabs Section ────────────────────────────────────────────── */
      .pd-tabs-section {
          background: var(--clr-off);
      }

      .pd-tab-nav {
          display: flex;
          border-bottom: 2px solid var(--clr-border);
          margin-bottom: 2rem;
          gap: 0;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
      }

      .pd-tab-nav::-webkit-scrollbar {
          display: none;
      }

      .pd-tab-btn {
          flex-shrink: 0;
          background: var(--clr-white);
          border: 1px solid var(--clr-border);
          border-bottom: none;
          padding: 0.7rem 1.6rem;
          font-family: var(--ff);
          font-size: 0.78rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: var(--clr-muted);
          cursor: pointer;
          transition: all var(--t-fast);
          position: relative;
          bottom: -2px;
          border-radius: var(--r-sm) var(--r-sm) 0 0;
      }

      .pd-tab-btn.active {
          color: var(--clr-text);
          border-bottom: 2px solid var(--clr-off);
          background: var(--clr-off);
      }

      .pd-tab-panel {
          display: none;
      }

      .pd-tab-panel.active {
          display: block;
      }

      /* Description tab */
      .pd-desc-full {
          font-size: 0.92rem;
          color: var(--clr-muted);
          line-height: 1.85;
      }

      /* Additional info table */
      .pd-info-table {
          width: 100%;
          border-collapse: collapse;
      }

      .pd-info-table tr {
          border-bottom: 1px solid var(--clr-border);
      }

      .pd-info-table tr:last-child {
          border-bottom: none;
      }

      .pd-info-table td {
          padding: 0.8rem 1rem;
          font-size: 0.88rem;
          vertical-align: top;
      }

      .pd-info-table td:first-child {
          color: var(--clr-text);
          width: 200px;
          background: rgba(0, 0, 0, 0.02);
      }

      .pd-info-table td:last-child {
          color: var(--clr-muted);
      }

      /* ── Why Choose Section ──────────────────────────────────────── */
      .why-section {
          background: var(--clr-white);
      }

      .why-card {
          background: var(--clr-off);
          border-radius: var(--r-lg);
          padding: 1.75rem 1.5rem;
          border: 1px solid var(--clr-border);
          transition: all var(--t-med);
          height: 100%;
      }

      .specification-card {
          position: relative;
          background: url('/assets/images/common.png') center/cover no-repeat;
          z-index: 0;
          overflow: hidden;
      }


      .specification-card .eyebrow {
          color: var(--clr-white);
      }


      /* dark overlay */
      .specification-card::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg,
                  rgb(8, 15, 26) 0%,
                  rgba(0, 29, 61, 0.74) 50%,
                  rgba(8, 15, 26, 0.69) 100%);
          z-index: 1;
      }

      /* ensure content stays above overlay */
      .specification-card>* {
          position: relative;
          z-index: 2;
      }

      .why-card:hover {
          transform: translateY(-6px);
          box-shadow: var(--sh-md);
          border-color: rgba(105, 157, 40, 0.3);
      }

      .why-icon {
          width: 52px;
          height: 52px;
          border-radius: var(--r-md);
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          font-size: 1.3rem;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1rem;
          transition: all var(--t-med);
      }

      .why-card:hover .why-icon {
          background: var(--clr-green);
          color: white;
      }

      .why-title {
          font-size: 0.98rem;
          color: var(--clr-text);
          margin-bottom: 0.5rem;
      }

      .why-text {
          font-size: 0.84rem;
          color: var(--clr-muted);
          line-height: 1.65;
          margin: 0;
      }

      /* ── Panel Types Section ─────────────────────────────────────── */
      .types-section {
          background: var(--clr-off);
      }

      .type-card {
          background: var(--clr-white);
          border-radius: var(--r-lg);
          overflow: hidden;
          border: 1px solid var(--clr-border);
          transition: all var(--t-med);
          height: 100%;
      }

      .type-card:hover {
          transform: translateY(-6px);
          box-shadow: var(--sh-md);
      }

      .type-card-header {
          padding: 1.5rem;
          background: var(--grad-dark);
          position: relative;
          overflow: hidden;
      }

      .type-card-header::before {
          content: "";
          position: absolute;
          top: -30px;
          right: -30px;
          width: 100px;
          height: 100px;
          border-radius: 50%;
          background: rgba(105, 157, 40, 0.15);
      }

      .type-card-icon {
          width: 48px;
          height: 48px;
          border-radius: var(--r-md);
          background: rgba(168, 216, 72, 0.15);
          color: var(--clr-accent);
          font-size: 1.3rem;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 0.75rem;
          position: relative;
      }

      .type-card-title {
          font-size: 1.1rem;
          color: var(--clr-white);
          margin-bottom: 0.25rem;
      }

      .type-card-sub {
          font-size: 0.78rem;
          color: rgba(255, 255, 255, 0.5);
      }

      .type-card-body {
          padding: 1.5rem;
      }

      .type-card-list {
          list-style: none;
          padding: 0;
          margin: 0 0 1rem;
      }

      .type-card-list li {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 0.84rem;
          color: var(--clr-muted);
          padding: 0.35rem 0;
          border-bottom: 1px solid var(--clr-border);
      }

      .type-card-list li:last-child {
          border-bottom: none;
      }

      .type-card-list i {
          color: var(--clr-green);
          font-size: 0.8rem;
          flex-shrink: 0;
      }

      .type-card-badge {
          display: inline-block;
          font-size: 0.72rem;
          padding: 0.25rem 0.75rem;
          border-radius: var(--r-full);
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          border: 1px solid rgba(105, 157, 40, 0.2);
      }

      /* ── Specs Table Section ─────────────────────────────────────── */
      .specs-table-wrap {
          background: var(--clr-off);
          border-radius: var(--r-md);
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          border: 1px solid var(--clr-border);
      }

      .specs-table {
          width: 100%;
          min-width: 580px;
          border-collapse: collapse;
      }

      .specs-table thead {
          background: var(--grad-dark);
      }

      .specs-table th {
          padding: 1.5rem 1.25rem;
          font-size: 0.8rem;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.7);
          text-align: center;
      }

      .specs-table th:first-child {
          color: var(--clr-accent);
      }

      .specs-table td {
          padding: 0.85rem 1.25rem;
          font-size: 0.86rem;
          border-bottom: 1px solid var(--clr-border);
          vertical-align: middle;
          text-align: center;
      }

      .specs-table tr:last-child td {
          border-bottom: none;
      }

      .specs-table td:first-child {
          color: var(--clr-text);
          background: rgba(0, 0, 0, 0.015);
          text-align: left;
      }

      .specs-table td:not(:first-child) {
          color: var(--clr-muted);
          text-align: center;
      }

      .specs-table tbody tr:hover td {
          background: rgba(105, 157, 40, 0.04);
      }

      .spec-highlight {
          color: var(--clr-green) !important;
      }

      /* ── Applications Section ────────────────────────────────────── */
      .apps-section {
          position: relative;
          background: url(/assets/images/center1.jpg) center / cover fixed;
          overflow: hidden;
      }

      .apps-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg,
                  rgba(8, 15, 26, 0.92) 0%,
                  rgba(0, 29, 61, 0.85) 50%,
                  rgba(8, 15, 26, 0.88) 100%);
          z-index: 0;
      }

      .app-item {
          display: flex;
          align-items: center;
          gap: 1rem;
          background: rgba(255, 255, 255, 0.06);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 50px;
          padding: 5px 10px;
          transition: all var(--t-med);
      }

      .app-item:hover {
          background: rgba(105, 157, 40, 0.15);
          border-color: rgba(105, 157, 40, 0.3);
          transform: translateX(5px);
      }

      .app-icon {
          width: 40px;
          height: 40px;
          flex-shrink: 0;
          border-radius: 10px;
          color: var(--clr-accent);
          font-size: 1rem;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .app-name {
          font-size: 0.88rem;
          color: var(--clr-white);
      }

      /* ── Brands Section ──────────────────────────────────────────── */
      .brands-section {
          background: var(--clr-off);
      }

      .brand-logo-card {
          background: var(--clr-white);
          border: 1px solid var(--clr-border);
          border-radius: var(--r-lg);
          padding: 1.75rem 1.5rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 0.75rem;
          text-align: center;
          transition: all var(--t-med);
          height: 100%;
      }

      .brand-logo-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--sh-md);
          border-color: rgba(105, 157, 40, 0.3);
      }

      .brand-logo-icon {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          background: var(--grad-dark);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.4rem;
          color: var(--clr-accent);
      }

      .brand-logo-name {
          font-size: 1rem;
          color: var(--clr-text);
      }

      .brand-logo-desc {
          font-size: 0.78rem;
          color: var(--clr-muted);
          line-height: 1.5;
      }

      .brand-cert-tag {
          font-size: 0.68rem;
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          border: 1px solid rgba(105, 157, 40, 0.2);
          padding: 0.15rem 0.6rem;
          border-radius: var(--r-full);
      }

      /* ── FAQ Section ─────────────────────────────────────────────── */
      .pd-faq-section {
          background: var(--clr-white);
      }

      .pd-faq-item {
          border: 1px solid var(--clr-border);
          border-radius: var(--r-md);
          background: var(--clr-off);
          overflow: hidden;
          transition: border-color var(--t-fast);
      }

      .pd-faq-item:hover {
          border-color: rgba(105, 157, 40, 0.3);
      }

      .pd-faq-question {
          width: 100%;
          background: none;
          border: none;
          text-align: left;
          padding: 1.1rem 1.4rem;
          font-family: var(--ff);
          font-size: 0.95rem;
          color: var(--clr-text);
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          gap: 1rem;
          transition: color var(--t-fast);
      }

      .pd-faq-question:hover {
          color: var(--clr-green);
      }

      .pd-faq-icon {
          width: 28px;
          height: 28px;
          border-radius: 50%;
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.8rem;
          flex-shrink: 0;
          transition: all var(--t-med);
      }

      .pd-faq-item.open .pd-faq-icon {
          background: var(--clr-green);
          color: white;
          transform: rotate(45deg);
      }

      .pd-faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .pd-faq-item.open .pd-faq-answer {
          max-height: 300px;
      }

      .pd-faq-answer-inner {
          padding: 0 1.4rem 1.2rem;
          font-size: 0.88rem;
          color: var(--clr-muted);
          line-height: 1.7;
      }

      /* ── Zoom Lightbox ───────────────────────────────────────────── */
      .pd-lightbox {
          display: none;
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.9);
          z-index: 9999;
          align-items: center;
          justify-content: center;
          padding: 1rem;
      }

      .pd-lightbox.open {
          display: flex;
      }

      .pd-lightbox img {
          max-width: 90vw;
          max-height: 90vh;
          object-fit: contain;
          border-radius: var(--r-md);
      }

      .pd-lightbox-close {
          position: absolute;
          top: 1.5rem;
          right: 1.5rem;
          width: 44px;
          height: 44px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          color: white;
          font-size: 1.1rem;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all var(--t-fast);
      }

      .pd-lightbox-close:hover {
          background: rgba(255, 255, 255, 0.2);
      }

      /* ── Responsive ─────────────────────────────────────────────── */

      /* Tablet ≤ 991px */
      @media (max-width: 991.98px) {
          .pd-gallery {
              flex-direction: column-reverse;
          }

          .pd-thumbs {
              flex-direction: row;
              flex-wrap: wrap;
          }

          .pd-thumb {
              width: 60px;
              height: 60px;
          }

          /* Un-stick gallery on tablet/mobile — sticky causes layout issues */
          .col-lg-6.sticky-md-top {
              position: static !important;
          }
      }

      /* Large phones ≤ 767px */
      @media (max-width: 767.98px) {

          .pd-meta-row {
              flex-direction: column;
          }


          .pd-tab-btn {
              padding: 0.6rem 0.9rem;
              font-size: 0.7rem;
          }

          .pd-highlights {
              grid-template-columns: 1fr;
          }

          /* Trust badges: horizontal scroll instead of ugly wrap */
          .pd-trust-row {
              flex-wrap: nowrap;
              justify-content: flex-start;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch;
              scrollbar-width: none;
              padding-bottom: 2px;
          }

          .pd-trust-row::-webkit-scrollbar {
              display: none;
          }

          /* Specs additional table horizontal scroll */
          .pd-info-table {
              display: block;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch;
          }

          .pd-info-table td:first-child {
              width: 150px;
              min-width: 150px;
          }

          .specs-table th,
          .specs-table td {
              padding: 0.65rem 0.75rem;
              font-size: 0.8rem;
          }

          .pd-faq-question {
              font-size: 0.88rem;
              padding: 1rem 1.1rem;
          }

          .pd-faq-answer-inner {
              padding: 0 1.1rem 1rem;
          }
      }

      /* Small phones ≤ 479px */
      @media (max-width: 479.98px) {
          .pd-thumb {
              width: 52px;
              height: 52px;
          }

          .pd-title {
              font-size: 1.4rem;
          }

          .pd-price {
              font-size: 1.1rem;
          }

          .pd-faq-question {
              font-size: 0.84rem;
          }

          /* CTA section edge-to-edge on very small phones */
          .cta-section {
              margin: 0 !important;
              border-radius: 0 !important;
          }

          .cta-section .d-flex {
              flex-direction: column;
              align-items: stretch;
          }

          .cta-section .btn-mac {
              justify-content: center;
          }
      }


      /* ============================================================
       Contact Us — Internal CSS (extends common styles)
       ============================================================ */


      /* ── Contact Info + Form Card Section ───────────────────────── */
      .ctc-wrap {

          box-shadow: var(--shadow-card);
          display: flex;
          flex-direction: row;
          gap: 2rem;

      }

      /* Left dark panel */
      .ctc-info-panel {
          flex: 0 0 500px;
          background: var(--clr-navy);
          position: relative;
          padding: 1rem;
          display: flex;
          flex-direction: column;
          min-height: 480px;
          border-radius: 16px;
      }

      .ctc-info-panel::before {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(5, 15, 10, 0.96) 0%, rgba(0, 29, 61, 0.75) 50%, rgba(5, 15, 10, 0.45) 100%);
          border-radius: inherit;
      }

      .ctc-info-panel .info {
          padding: 2rem;
      }

      .ctc-info-inner {
          position: relative;
          z-index: 1;
      }


      .img-div::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(8, 15, 26, 0.25) 0%, rgba(0, 29, 61, 0.53) 50%, rgba(8, 15, 26, 0.35) 100%);
          aspect-ratio: 1/1;
          border-radius: 16px;
          overflow: hidden;
      }


      .ctc-info-inner img {
          width: 100%;
          aspect-ratio: 1/1;
          border-radius: 16px;

      }

      .ctc-info-heading {
          font-size: 1rem;
          font-weight: 700;
          color: var(--clr-white);
          margin-bottom: 1.25rem;
          letter-spacing: 0.04em;
          text-transform: uppercase;
      }

      .ctc-info-item {
          display: flex;
          align-items: flex-start;
          gap: 0.85rem;
          margin-bottom: 1.25rem;
      }

      .ctc-info-item:last-child {
          margin-bottom: 0;
      }

      .ctc-info-icon {
          width: 34px;
          height: 34px;
          border-radius: 50%;
          background: rgba(105, 157, 40, 0.25);
          border: 1px solid rgba(105, 157, 40, 0.4);
          color: var(--clr-accent);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.88rem;
          flex-shrink: 0;
          margin-top: 2px;
      }

      .ctc-info-label {
          font-size: 0.72rem;
          color: rgba(255, 255, 255, 0.45);
          text-transform: uppercase;
          letter-spacing: 0.1em;
          margin-bottom: 0.15rem;
      }

      .ctc-info-value {
          font-size: 0.88rem;
          color: var(--clr-white);
          line-height: 1.5;
          margin: 0;
      }

      .ctc-info-value a {
          color: var(--clr-white);
          transition: color var(--t-fast);
      }

      .ctc-info-value a:hover {
          color: var(--clr-accent);
      }

      /* Right form panel */
      .ctc-form-panel {
          flex: 1;
          padding: 2.75rem 2.5rem;
          background: var(--clr-off);
          border-radius: 16px;

      }

      .ctc-form-title {
          font-family: var(--ff-body);
          font-size: 1.6rem;
          font-weight: 700;
          color: var(--clr-text);
          margin-bottom: 0.4rem;
          line-height: 1.25;
      }

      .ctc-form-sub {
          font-size: 0.88rem;
          color: var(--clr-muted);
          line-height: 1.6;
          margin-bottom: 1.75rem;
      }

      /* ── Form Inputs ─────────────────────────────────────────────── */
      .cf-label {
          display: block;
          font-size: 0.78rem;
          font-weight: 600;
          color: var(--clr-text);
          margin-bottom: 0.35rem;
          letter-spacing: 0.02em;
      }

      .cf-label span {
          color: var(--clr-green);
      }

      .cf-input {
          width: 100%;
          background: var(--clr-white);

          border: 1.5px solid var(--clr-border);
          border-radius: 10px;
          padding: 0.75rem 1rem;
          font-family: var(--ff-body);
          font-size: 0.88rem;
          color: var(--clr-text);
          outline: none;
          transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
          appearance: none;
          -webkit-appearance: none;
      }

      .cf-input::placeholder {
          color: var(--clr-muted);
          font-size: 0.83rem;
      }

      .cf-input:focus {
          border-color: var(--clr-green);
          box-shadow: 0 0 0 3px rgba(105, 157, 40, 0.10);
          background: var(--clr-white);
      }

      .cf-select {
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7b8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: right 1rem center;
          padding-right: 2.5rem;
          cursor: pointer;
          color: var(--clr-muted);
      }

      .cf-select:focus {
          color: var(--clr-text);
      }

      .cf-textarea {
          resize: vertical;
          min-height: 100px;
      }

      .cf-submit {
          display: inline-flex;
          align-items: center;
          gap: 0.6rem;
          background: linear-gradient(135deg, var(--clr-green), var(--clr-green2));
          color: var(--clr-white);
          font-family: var(--ff-body);
          font-size: 0.92rem;
          font-weight: 600;
          border: none;
          border-radius: var(--r-full);
          padding: 0.8rem 2rem;
          cursor: pointer;
          box-shadow: var(--shadow-green);
          transition: all var(--t-med);
      }

      .cf-submit:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 32px rgba(105, 157, 40, 0.4);
      }




      /* ── Map Section ─────────────────────────────────────────────── */


      .map-embed {
          width: 100%;
          height: 420px;
          border: none;
          border-radius: var(--r-lg);
          display: block;
          box-shadow: var(--shadow-card);
          filter: grayscale(10%);
          transition: filter var(--t-med);
      }

      .map-embed:hover {
          filter: grayscale(0%);
      }

      /* ── Quick Contact Cards ────────────────────────────────────── */
      .qc-card {
          background: var(--clr-white);
          border-radius: var(--r-lg);
          padding: 1.75rem 1.5rem;
          border: 1px solid var(--clr-border);
          box-shadow: var(--shadow-soft);
          display: flex;
          align-items: flex-start;
          gap: 1.1rem;
          transition: all var(--t-med);
          height: 100%;
      }

      .qc-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-md);
          border-color: rgba(105, 157, 40, 0.25);
      }

      .qc-icon {
          width: 48px;
          height: 48px;
          border-radius: var(--r-md);
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          font-size: 1.25rem;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          transition: all var(--t-med);
      }

      .qc-card:hover .qc-icon {
          background: var(--clr-green);
          color: white;
      }

      .qc-label {
          font-size: 0.75rem;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          color: var(--clr-muted);
          margin-bottom: 0.25rem;
      }

      .qc-value {
          font-size: 0.95rem;
          font-weight: 600;
          color: var(--clr-text);
          line-height: 1.4;
          margin: 0;
      }

      .qc-value a {
          color: var(--clr-text);
          transition: color var(--t-fast);
      }

      .qc-value a:hover {
          color: var(--clr-green);
      }

      /* ── FAQ Section ────────────────────────────────────────────── */

      .faq-section {
          position: relative;
          background: url(/assets/images/Solar-PV-Modules.png) center / cover no-repeat;
          background-attachment: fixed;
          overflow: hidden;
          margin: var(--r-md);
          padding: 7rem 0;
          border-radius: var(--r-lg);
      }

      .faq-section::before {
          content: "";
          position: absolute;
          inset: 0;
          background: var(--grad-cta);
      }


      .faq-item {
          border: 1px solid var(--clr-border);
          border-radius: var(--r-md);
          background: var(--clr-white);
          overflow: hidden;
          transition: border-color var(--t-fast);
      }

      .faq-item:hover {
          border-color: rgba(105, 157, 40, 0.3);
      }

      .faq-question {
          width: 100%;
          background: none;
          border: none;
          text-align: left;
          padding: 1.1rem 1.4rem;
          font-family: var(--ff-body);
          font-size: 0.95rem;
          font-weight: 600;
          color: var(--clr-text);
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          gap: 1rem;
          transition: color var(--t-fast);
      }

      .faq-question:hover {
          color: var(--clr-green);
      }

      .faq-icon {
          width: 28px;
          height: 28px;
          border-radius: 50%;
          background: rgba(105, 157, 40, 0.1);
          color: var(--clr-green);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.8rem;
          flex-shrink: 0;
          transition: all var(--t-med);
      }

      .faq-item.open .faq-icon {
          background: var(--clr-green);
          color: white;
          transform: rotate(45deg);
      }

      .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .faq-item.open .faq-answer {
          max-height: 200px;
      }

      .faq-answer-inner {
          padding: 0 1.4rem 1.2rem;
          font-size: 0.88rem;
          color: var(--clr-muted);
          line-height: 1.7;
      }

      /* ── Responsive ─────────────────────────────────────────────── */
      @media (max-width: 991.98px) {
          .ctc-wrap {
              flex-direction: column;
          }

          .ctc-info-panel {
              flex: none;
              min-height: 300px;
              justify-content: flex-end;
          }

          .ctc-form-panel {
              padding: 2rem 1.75rem;
          }
      }

      @media (max-width: 767.98px) {
          .ctc-form-panel {
              padding: 1.75rem 1.25rem;
          }

          .map-embed {
              height: 280px;
          }
      }