/* ========================================
   PYRION - Factory & Industry Template
   FIXED & FULLY RESPONSIVE CSS
   - Mobile hamburger menu FIXED
   - All breakpoints corrected
   - Cross-device compatibility
======================================== */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap");

/* ---- CSS Variables ---- */
:root {
  --primary: #d42d2d;

  --secondary: #1a1a2e;
  --dark: #111111;
  --darker: #0a0f1a;
  --dark2: #1e1e1e2a;
  --dark3: #1e1e1e31;
  --gray: #888888;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --border: #e5e5e5;
  --light: #f9fafb;
  --font-main: "Barlow", sans-serif;
  --font-heading: "Barlow Condensed", sans-serif;
  --transition: all 0.4s ease;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* ===========================
   HEADER / NAVBAR — FIXED
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transition);
}

.header-top {
  background: var(--dark);
  padding: 10px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.header-top-item i {
  color: var(--primary);
  font-size: 14px;
}

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

.header-top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  transition: var(--transition);
}

.header-top-social a:hover {
  background: var(--primary);
}

/* ---- Header Main ---- */
.header-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative; /* IMPORTANT for mega dropdown */
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  text-decoration: none;
}

.logo-light {
  width: 180px;
  height: 50px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  flex-shrink: 0;
}

.logo-icon i {
  color: #fff;
  font-size: 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text span {
  color: var(--primary);
}
/* application meag dropdown  */


/* ---- NAV MENU ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 28px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ===========================
   APPLICATION MEGA DROPDOWN
=========================== */

.app-mega-parent {
  position: static;
}

.app-mega-parent > .nav-link::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
}

.app-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  /* ✅ overflow & max-height REMOVED — submenu clip nahi hoga */
  overflow: visible;
}

.app-mega-parent:hover .app-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 10px 0;
  /* ✅ No overflow here either */
  overflow: visible;
}

.app-mega-item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  overflow: visible; /* ✅ MUST be visible */
}

.app-mega-item:nth-child(3n) { border-right: none; }

/* Industry name link */
.app-mega-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-has-sub > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: #ccc;
  flex-shrink: 0;
  margin-left: 8px;
  transition: all 0.25s ease;
}

.app-mega-item > a:hover {
  background: var(--primary);
  color: #ffffff;
  border-left-color: var(--primary);
  padding-left: 26px;
}

.app-mega-item > a:hover::after {
  color: #ffffff;
  transform: translateX(3px);
}

/* ===========================
   SUBMENU
=========================== */
.app-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 280px;
  box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary);
  z-index: 9999; /* ✅ High z-index */
  list-style: none;
  padding: 8px 0;
  /* ✅ Scroll after 6 items */
  max-height: 228px; /* ~38px per item × 6 items */
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar styling */
.app-submenu::-webkit-scrollbar {
  width: 5px;
}
.app-submenu::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.app-submenu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
.app-submenu::-webkit-scrollbar-thumb:hover {
  background: #b71c1c;
}

.app-has-sub:hover > .app-submenu {
  display: block;
}

.app-submenu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.app-submenu li:last-child a { border-bottom: none; }

.app-submenu li a:hover {
  color: #ffffff;
  background: var(--primary);
  padding-left: 28px;
}

/* ===========================
   COLUMN POSITION FIX
=========================== */

/* ✅ Column 2 — submenu left me khule */
.app-mega-item:nth-child(3n-1) > .app-submenu {
  left: auto;
  right: 100%;
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.12);
}

/* ✅ Column 3 — submenu left me khule */
.app-mega-item:nth-child(3n) > .app-submenu {
  left: auto;
  right: 100%;
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.12);
}

/* ✅ LAST ROWS FIX — submenu UPAR khulega (bottom rows ke liye) */
/* Row 7, 8, 9 — last ~9 items */
.app-mega-item:nth-child(n+19) > .app-submenu {
  top: auto;
  bottom: 0;
}

/* ===========================
   ABOUT DROPDOWN
=========================== */
.about-dropdown-parent {
  position: relative;
}

.about-dropdown-parent > .nav-link::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
}

.about-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  list-style: none;
  padding: 8px 0;
  overflow: visible;
}

.about-dropdown-parent:hover .about-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.about-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.about-dropdown li:last-child a { border-bottom: none; }

.about-dropdown li a i {
  color: var(--primary);
  font-size: 13px;
  width: 16px;
  text-align: center;
  transition: transform 0.25s ease;
}

.about-dropdown li a:hover {
  background: var(--primary);
  color: #ffffff;
  border-left-color: var(--primary);
  padding-left: 24px;
}

.about-dropdown li a:hover i {
  color: #ffffff;
  transform: scale(1.15);
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 991px) {

  .app-mega-dropdown {
    position: static;
    width: 100%;
    overflow: visible;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--primary);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.04);
    margin-left: 20px;
  }

  .app-mega-parent.mobile-open .app-mega-dropdown { display: block; }

  .app-mega-inner {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }

  .app-mega-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-right: none;
  }

  .app-mega-item > a {
    color: rgba(255,255,255,0.75);
    padding: 11px 18px;
    font-size: 13px;
    border-left: none;
    white-space: normal;
  }

  .app-mega-item > a:hover {
    background: var(--primary);
    color: #fff;
    border-left-color: transparent;
    padding-left: 18px;
  }

  .app-submenu {
    display: none;
    position: static;
    min-width: unset;
    width: 100%;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid rgba(255,255,255,0.15);
    margin-left: 16px;
    overflow: visible;
    max-height: none;
    background: transparent;
    padding: 4px 0;
  }

  .app-has-sub.mobile-sub-open > .app-submenu { display: block; }

  /* Reset all column overrides for mobile */
  .app-mega-item:nth-child(3n) > .app-submenu,
  .app-mega-item:nth-child(3n-1) > .app-submenu,
  .app-mega-item:nth-child(n+19) > .app-submenu {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .app-submenu li a {
    color: rgba(255,255,255,0.55);
    padding: 8px 16px;
    font-size: 12px;
    border-bottom-color: rgba(255,255,255,0.05);
    white-space: normal;
  }

  .app-submenu li a:hover {
    color: #fff;
    background: var(--primary);
    padding-left: 20px;
  }

  .app-has-sub > a::after { content: "\f0d7"; }
  .app-has-sub.mobile-sub-open > a::after { content: "\f0d8"; }

  .about-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--primary);
    display: none;
    margin-left: 20px;
    min-width: unset;
    width: calc(100% - 20px);
    background: rgba(255,255,255,0.04);
  }

  .about-dropdown-parent.mobile-open .about-dropdown { display: block; }

  .about-dropdown li a {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.06);
    border-left: none;
  }

  .about-dropdown li a:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 24px;
  }
}
/* ---- Dropdown ---- */
.dropdown {
  position: relative;
}

.dropdown > .nav-link::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--primary);
  padding-left: 28px;
  background: #fafafa;
}

/* ---- Header CTA Button ---- */
.header-btn {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 8% 100%, 0 60%);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* ====================================
   MOBILE NAV TOGGLE — FULLY FIXED
==================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
  z-index: 10000;
  position: relative;
  width: 44px;
  height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all 0.35s ease;
  transform-origin: center;
  pointer-events: none;
}

/* Active state - X icon */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9997;
  backdrop-filter: blur(2px);
}

.nav-mobile-overlay.active {
  display: block;
}

/* Sticky header */
.header.sticky .header-top {
  display: none;
}
.header.sticky .header-main {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}
 /* =========================================
           1. MEGA DROPDOWN CSS (Isko apni CSS file mein daalein)
         /* =========================================
           1. MEGA DROPDOWN CSS (Isko apni CSS file mein daalein)
           ========================================= */

        /* 1. 🚀 FIX: Parent elements MUST be static so the dropdown can take full screen width.
           (Aapki theme me ul par position: relative laga hoga, ye use override karega) */
        .mega-dropdown-parent,
        ul.nav-links,
        .navbar ul {
            position: static !important; 
            list-style: none;
        }

        /* 2. Dropdown Box Setup */
        .mega-dropdown {
            position: absolute;
            top: 80px; /* Aapki Navbar ki height ke hisab se isko adjust karein */
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            border-top: 2px solid #e31e24; /* Red border to match your theme */
            padding: 40px 0;
            z-index: 99999 !important; /* 🚀 FIX: Increased z-index so nothing shows through it */
        }

        /* 3. Dropdown Container Full Width */
        .mega-dropdown .container {
            max-width: 95% !important; 
            width: 100%;
            margin: 0 auto;
        }

        /* Show Dropdown on Hover (Desktop) */
        @media (min-width: 992px) {
            .mega-dropdown-parent:hover .mega-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* 4-Column Grid */
        .mega-dropdown-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px; 
            width: 100%;
        }

        /* Category Titles & Links Styling */
        .mega-cat-title {
            display: block;
            color: #e31e24;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 8px;
            transition: color 0.2s;
            text-decoration: none;
        }
        .mega-cat-title:hover { color: #000; }
        
        .mega-list { list-style: none; padding: 0; margin: 0; }
        .mega-list li { margin-bottom: 10px; }
        .mega-list li a {
            color: #555;
            font-size: 13px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
            line-height: 1.4;
            text-decoration: none;
        }
        .mega-list li a i {
            color: #ccc;
            font-size: 10px;
            margin-top: 4px;
            margin-right: 8px;
            transition: color 0.3s;
        }
        .mega-list li a:hover { color: #e31e24; transform: translateX(5px); }
        .mega-list li a:hover i { color: #e31e24; }
        .mt-4 { margin-top: 30px; } 

        /* Responsive Mobile Code */
        @media (max-width: 991px) {
            .mega-dropdown-parent { position: relative !important; }
            .mega-dropdown { 
                position: static !important; 
                box-shadow: none; 
                display: none; 
                padding: 20px 0; 
                opacity: 1; 
                visibility: visible; 
                transform: none; 
            }
            .mega-dropdown.active { display: block; }
            .mega-dropdown .container { max-width: 100% !important; padding: 0 20px; }
            .mega-dropdown-inner { grid-template-columns: 1fr; gap: 15px; }
        }

        /* home slider main CSS */

        
/* ===========================
   HERO / BANNER
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}

.hero-slide.active .hero-tag {
  transform: translateX(0);
  opacity: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 25px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease 0.4s;
}

.hero-slide.active .hero-title {
  transform: translateY(0);
  opacity: 1;
}
.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 40px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.6s;
}

.hero-slide.active .hero-desc {
  transform: translateY(0);
  opacity: 1;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.8s;
}

.hero-slide.active .hero-btns {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 0;
  display: flex;
  gap: 5px;
  z-index: 5;
}

.hero-btn-prev,
.hero-btn-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.hero-btn-next {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: var(--primary-dark);
}

.hero-dots {
  position: absolute;
  bottom: 55px;
  left: 0;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  width: 50px;
}

/* Hero Feature Strip */
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  z-index: 5;
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-strip-item:last-child {
  border-right: none;
}
.hero-strip-item i {
  font-size: 30px;
  opacity: 0.8;
}

.hero-strip-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-strip-item-text span {
  font-size: 13px;
  opacity: 0.8;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 8% 100%, 0 60%);
}
.btn-primary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 8% 100%, 0 60%);
}
.btn-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 8% 100%, 0 60%);
}
.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  clip-path: polygon(0 0, 92% 0, 100% 40%, 100% 100%, 8% 100%, 0 60%);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn i {
  transition: transform 0.3s ease;
}
.btn:hover i {
  transform: translateX(4px);
}

/* ===========================
   SECTION TITLES
=========================== */
.section-title-wrap {
  margin-bottom: 55px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var( --primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title span {
  color: var(--primary);
}
.section-title-white {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-top: 15px;
}
.section-desc-white {
  color: rgba(255, 255, 255, 0.75);
}

.text-center .section-tag {
  justify-content: center;
}
.text-center .section-tag::before {
  display: none;
}
.text-center .section-tag::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.text-center .section-desc {
  margin: 15px auto 0;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary);
}
.section-label span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 100px 0;
}

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

.about-img-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: 500px; /* ✅ SAME height for both */
  object-fit: cover;
  display: block;
}

.about-img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  z-index: 3;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 25px;
  text-align: center;
  z-index: 4;
  min-width: 130px;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
}

.about-experience-badge .num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-experience-badge span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-img-shape {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.1;
  z-index: 1;
}

.about-content {
  padding-left: 50px;
}

.about-features {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--gray-light);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--primary);
  color: var(--white);
}
.about-feature i {
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}
.about-feature:hover i {
  color: var(--white);
}

.about-feature-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
}
.about-feature:hover .about-feature-text strong {
  color: var(--white);
}
.about-feature-text span {
  font-size: 13px;
  color: #666;
  transition: var(--transition);
}
.about-feature:hover .about-feature-text span {
  color: rgba(255, 255, 255, 0.8);
}

/* About intro (alternate layout) */
.about-intro {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
  z-index: 1;
}

/* MAIN IMAGE */
.about-img-main {
  position: relative;
  z-index: 1;
}

/* SMALL IMAGE */
.about-img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  z-index: 3;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.about-img-small.about-img-corner {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 180px;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* 🔴 RED BOX (IMPORTANT FIX) */
.about-exp-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 99;

  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.about-exp-badge .num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.about-exp-badge .text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 15px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.about-btn:hover {
  background: var(--dark);
  transform: translateY(-3px);
}
.about-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}
.about-btn:hover i {
  transform: translateX(4px);
}
/* <!-- TESTIMONIALS -->  */
/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  background: var(--gray-light);
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  transition: var(--transition);
}

.service-icon i {
  font-size: 28px;
  color: var(--white);
}
.service-card:hover .service-icon {
  background: var(--dark);
}

.service-num {
  position: absolute;
  top: 25px;
  right: 25px;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-num {
  color: rgba(212, 45, 45, 0.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

.service-link i {
  transition: transform 0.3s ease;
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.stat-item {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

.stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Stats grid layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* ICON BOX */
.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2); /* thoda bright kiya */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  backdrop-filter: blur(4px); /* premium look */
}

/* ICON */
.stat-icon i {
  color: #ffffff; /* 🔥 ab clearly visible */
  font-size: 26px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: #ffffff; /* 🔥 white kar do */
  margin-left: 4px;
  font-weight: 900;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===========================
   PROJECTS / PORTFOLIO
=========================== */
.projects-section {
  padding: 100px 0;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--gray-light);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.project-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card-cat {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

.project-card-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transform: scale(0) rotate(-45deg);
  transition: var(--transition);
}

.project-card:hover .project-card-link {
  transform: scale(1) rotate(0deg);
}

/* ===========================
   CORE PRINCIPLES
=========================== */
.mv-section {
  padding: 90px 0;
  background: var(--gray-light);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white);
  padding: 40px 36px;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

/* 🔴 CHANGE: LOGO RED */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary); /* ✅ LOGO RED */
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

.mv-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mv-card:hover::before {
  transform: scaleY(1);
}

.mv-card-inner {
  position: relative;
  z-index: 1;
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.4s;
}

.mv-card:hover .mv-icon {
  background: var(--white);
}

.mv-icon i {
  color: var(--white);
  font-size: 26px;
  transition: color 0.4s;
}

.mv-card:hover .mv-icon i {
  color: var(--primary);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.mv-card:hover h3 {
  color: var(--white);
}

.mv-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.4s;
}

.mv-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   WHY US SECTION
=========================== */
.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.why-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.why-feature {
  display: flex;
  gap: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--primary);
  background: rgba(212, 45, 45, 0.05);
}

.why-feature-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.why-feature-icon i {
  font-size: 22px;
  color: var(--white);
}
.why-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.why-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-video {
  position: relative;
}
.why-video img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 0 15px rgba(212, 45, 45, 0.2);
}

.play-btn:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn i {
  color: var(--white);
  font-size: 26px;
  margin-left: 4px;
  transition: color 0.3s;
}
.play-btn:hover i {
  color: var(--primary);
}

.why-list {
  list-style: none;
  margin-top: 28px;
}

.why-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.why-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-list-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.why-list-icon i {
  color: var(--primary);
  font-size: 20px;
}
.why-list li:hover .why-list-icon {
  background: var(--primary);
}
.why-list li:hover .why-list-icon i {
  color: var(--white);
}
.why-list-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-list-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   TEAM SECTION
=========================== */
.team-section {
  padding: 100px 0;
  background: var(--gray-light);
}

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

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.team-img {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img img,
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img,
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--darker) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .team-social a {
  transform: translateY(0);
  opacity: 1;
}
.team-card:hover .team-social a:nth-child(1) {
  transition-delay: 0.05s;
}
.team-card:hover .team-social a:nth-child(2) {
  transition-delay: 0.1s;
}
.team-card:hover .team-social a:nth-child(3) {
  transition-delay: 0.15s;
}
.team-card:hover .team-social a:nth-child(4) {
  transition-delay: 0.2s;
}
.team-social a:hover {
  background: var(--dark);
}

.team-role-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.team-info {
  padding: 22px 25px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.team-card:hover .team-info {
  border-bottom-color: var(--primary);
}
.team-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.team-card:hover .team-info h3 {
  color: var(--primary);
}
.team-info span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.team-info p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.team-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 12px;
  transition: gap 0.3s;
}
.team-info-link:hover {
  gap: 12px;
}


/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(212, 45, 45, 0.1);
  border-color: var(--primary);
}

.testimonial-quote {
  font-size: 60px;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}
.testimonial-rating {
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.testimonial-author-info span {
  font-size: 13px;
  color: var(--primary);
}

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

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.stars i {
  color: var(--primary);
  font-size: 14px;
}

/* ===========================
   BLOG SECTION
=========================== */
.blog-section {
  padding: 100px 0;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.blog-img {
  overflow: hidden;
  height: 240px;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-body {
  padding: 28px 28px 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.blog-meta-item i {
  color: var(--primary);
}

.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-body h3 a:hover {
  color: var(--primary);
}
.blog-body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 28px;
  border-top: 1px solid #f0f0f0;
}

.blog-read-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more i {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

/* ===========================
   BLOG SECTION
=========================== */
/* Desktop Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


/* ===========================
   CTA BANNER
=========================== */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 15px;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 30px;
}
.cta-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}

.cta-phone-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  animation: ring 2s ease infinite;
  flex-shrink: 0;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
}

.cta-phone-text small {
  display: block;
  font-size: 13px;
  opacity: 0.8;
}
.cta-phone-text strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}



/* ===========================
   PAGE BANNER
=========================== */
.page-banner {
  position: relative;
  padding: 140px 0 80px;
  background: var(--darker);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

/* ===== LASER CUTTING EFFECT (MAIN) ===== */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  /* 🔥 IMPORTANT: apni laser cutting image ka path daalo */
  background: url("assets/image/laser-cutting.png") center/cover no-repeat;

  z-index: 1;

  /* Glow effect */
  mix-blend-mode: screen;
  opacity: 0.9;

  animation: laserGlow 1.2s infinite alternate;
}
/* Naya code image ko full height aur width me cover karne ke liye */
.banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ye image ko stretch hone se bachayega aur full cover karega */
  z-index: 0; /* Isko overlay ke peeche rakhne ke liye */
}

/* Aapki already exist karne wali class (Check kar lein ki aisi hi ho) */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1; /* Overlay image ke upar aayega */
}


/* ===== DARK OVERLAY ===== */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* ===== PATTERN ===== */
.banner-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(232, 160, 32, 0.04) 30px,
    rgba(232, 160, 32, 0.04) 60px
  );
  z-index: 0;
}

/* ===== BACKGROUND IMAGE ===== */
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15; /* reduced for laser focus */
  filter: blur(1px);
  z-index: 0;
}

/* ===== OVERLAY ===== */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.page-banner-content,
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ===== TITLE ===== */
.page-banner-title,
.banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 65px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease;
}

.page-banner-title span,
.banner-content h1 span {
  color: var(--primary);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep,
.breadcrumb span.sep {
  color: var(--primary);
}

.breadcrumb span,
.breadcrumb .current {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

/* ===== LASER GLOW ANIMATION ===== */
@keyframes laserGlow {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* product slider css */
.page-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Laser Layer */
.laser-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.laser-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.banner-overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Content */
.banner-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
}
/* ===========================
   PARTNERS / CLIENTS SLIDER FIX
=========================== */
.partners-section {
  padding: 60px 0;
  border-top: 1px solid #eee;
}

/* 1. Overflow hidden lagana zaruri hai taaki bahar ka hissa chhupe */
.partners-overflow {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

/* 2. Wrap hata kar animation lagana */
.partners-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content; /* Sabhi logos ko ek single line mein rakhega */
  animation: slideLogos 100s linear infinite; /* Animation add kiya */
}

/* (Optional) Agar user mouse upar rakhe toh slider ruk jaye */
.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  opacity: 1;
  transition: var(--transition, 0.3s ease);
  padding: 15px;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

.partner-logo:hover .partner-logo-text {
  color: var(--white, #fff);
}

.partner-logo img {
  max-height: 65px;
  width: auto;
}

.partner-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 3. Slider Animation Keyframes */
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Kyunki JS ne innerHTML copy kiya hai, hum theek half (-50%) piche jayenge */
    transform: translateX(-50%); 
  }
}
/* About page partners - dark background with icons */
.about-partners {
  padding: 60px 0;
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about-partners .partners-title {
  color: rgba(255, 255, 255, 0.4);
}
.about-partners .partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: opacity 0.3s;
  filter: grayscale(1) brightness(2);
  padding: 15px 30px;
}
.about-partners .partner-logo:hover {
  opacity: 0.9;
  filter: none;
}
.about-partners .partner-logo i {
  font-size: 28px;
  color: var(--white);
}
.about-partners .partner-logo span {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  padding: 100px 0;
}

.info-cards-section {
  padding: 80px 0 0;
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-card {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.info-card:hover::before {
  transform: scaleX(1);
}

.info-icon {
  width: 72px;
  height: 72px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.4s;
}

.info-card:hover .info-icon {
  background: var(--primary);
}
.info-icon i {
  color: var(--primary);
  font-size: 28px;
  transition: color 0.4s;
}
.info-card:hover .info-icon i {
  color: var(--white);
}
.info-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.info-card a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.info-card a:hover {
  color: var(--primary);
}

.contact-main {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--dark);
  padding: 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--white);
}
.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group label span {
  color: var(--primary);
}

.form-control,
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background: var(--gray-light);
  border: 2px solid transparent;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
}

.form-control::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}
textarea.form-control,
.form-group textarea {
  resize: none;
  height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.submit-btn i {
  transition: transform 0.3s;
}
.submit-btn:hover i {
  transform: translateX(4px);
}

/* Office details */
.office-info h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.office-info h3 span {
  color: var(--primary);
}
.office-info > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 34px;
}

.office-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.office-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.office-detail-icon i {
  color: var(--white);
  font-size: 18px;
}
.office-detail-content h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.office-detail-content p,
.office-detail-content a {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}
.office-detail-content a:hover {
  color: var(--primary);
}

.office-hours {
  background: var(--darker);
  padding: 32px;
  margin-top: 36px;
  border-left: 4px solid var(--primary);
}
.office-hours h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}
.hours-row .time {
  color: var(--primary);
  font-weight: 700;
}

/* Map */
.map-section {
  padding: 0 0 90px;
 margin-top: 100px; 
}
.map-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.map-wrap iframe,
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%);
}

.map-overlay-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--darker);
  color: var(--white);
  padding: 28px;
  max-width: 280px;
  border-left: 4px solid var(--primary);
}
.map-overlay-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.map-overlay-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.map-overlay-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

/* Branches */
.branches-section {
  padding: 90px 0;
  background: var(--light);
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s;
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.branch-img {
  height: 200px;
  overflow: hidden;
}
.branch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.branch-card:hover .branch-img img {
  transform: scale(1.05);
}
.branch-info {
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.branch-info h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.branch-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.branch-detail i {
  color: var(--primary);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.branch-detail p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark2);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-about p {
  font-size: 14px;
  color: rgb(0, 0, 0); 
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a,
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
 color: rgb(0, 0, 0);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.footer-social a:hover,
.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-widget h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
 color: rgb(0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgb(0, 0, 0); 
  transition: var(--transition);
}

.footer-links a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item,
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}
.footer-contact-item i,
.contact-item i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 15px;
  flex-shrink: 0;
}
.footer-contact-item p,
.contact-item p {
  font-size: 14px;
  color: rgb(0, 0, 0);
}
.footer-contact-item a,
.contact-item a {
  font-size: 14px;
  color: rgb(0, 0, 0); 
}
.footer-contact-item a:hover,
.contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  background: var(--dark3);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copy {
  font-size: 14px;
  color: rgb(0, 0, 0);;
}
.footer-copy a {
  color: var(--primary);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 13px;
   color: rgb(0, 0, 0);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Widget title */
.widget-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.widget-title.light {
  font-size: 22px;
  color: var(--white);
  background: var(--darker);
  padding: 14px 20px;
  border-bottom: none;
  position: relative;
  border-left: 4px solid var(--primary);
}

/* ===========================
   GRID LAYOUT
=========================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col {
  flex: 1;
  padding: 0 15px;
}
.col-12 {
  width: 100%;
  padding: 0 15px;
}
.col-6 {
  width: 50%;
  padding: 0 15px;
}
.col-4 {
  width: 33.333%;
  padding: 0 15px;
}
.col-3 {
  width: 25%;
  padding: 0 15px;
}
.col-8 {
  width: 66.666%;
  padding: 0 15px;
}
.col-5 {
  width: 41.666%;
  padding: 0 15px;
}
.col-7 {
  width: 58.333%;
  padding: 0 15px;
}
.col-2 {
  width: 16.666%;
  padding: 0 15px;
}

.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-15 {
  gap: 15px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}

/* CSS Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.grid-2-8 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}
.grid-8-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animated {
  opacity: 1 !important;
  transform: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ===========================
   BACK TO TOP
=========================== */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  background: var(--dark);
}

/* ===========================
   PROCESS STEPS
=========================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 10px,
    transparent 10px,
    transparent 20px
  );
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.process-step-icon {
  width: 100px;
  height: 100px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.process-step-icon i {
  font-size: 36px;
  color: var(--primary);
  transition: var(--transition);
}
.process-step:hover .process-step-icon i {
  color: var(--white);
}

.process-step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: #666;
}

/* ===========================
   SKILL BARS
=========================== */
.skill-bar {
  margin-bottom: 20px;
}

.skill-header,
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-bar-label span,
.skill-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skill-bar-label strong,
.skill-pct {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.skill-bar-track,
.skill-track {
  height: 6px;
  background: #e8e8e8;
  overflow: hidden;
}
.skill-bar-fill,
.skill-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 1.5s ease;
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  position: relative;
  padding: 150px 0;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}
.video-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.video-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.video-section-content {
  position: relative;
  z-index: 2;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
  animation: pulse 2s ease infinite;
  margin-bottom: 30px;
  transition: var(--transition);
}

.video-play-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 45, 45, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(212, 45, 45, 0);
  }
}

.video-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.video-title span {
  color: var(--primary);
}

.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.video-modal {
  position: relative;
  width: 90%;
  max-width: 900px;
}
.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 35px;
  height: 35px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.video-modal-close:hover {
  background: var(--dark);
}
.video-modal iframe {
  width: 100%;
  height: 500px;
}

/* ===========================
   TABS
=========================== */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}

.tab-btn,
.exp-tab {
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover,
.exp-tab.active,
.exp-tab:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-pane,
.exp-panel {
  display: none;
}
.tab-pane.active,
.exp-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

/* ===========================
   SERVICE DETAIL IMAGE
=========================== */
.detail-img {
  margin: 30px 0;
  overflow: hidden;
}

.detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===========================
   SIDEBAR
=========================== */
.sidebar {
  padding-left: 30px;
}

.widget {
  background: var(--white);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-widget-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-widget-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--gray-light);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.service-widget-list a:hover,
.service-widget-list a.active {
  background: var(--primary);
  color: var(--white);
}
.service-widget-list a i {
  font-size: 12px;
}

.contact-widget {
  background: var(--primary) !important;
  text-align: center;
  padding: 40px 30px;
}
.contact-widget i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}
.contact-widget h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}
.contact-widget .phone {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.contact-widget .btn {
  margin-top: 20px;
  background: var(--dark);
  color: var(--white);
}
.contact-widget .btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag,
.tag-link {
  padding: 7px 16px;
  background: var(--gray-light);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  text-decoration: none;
}

.tag:hover,
.tag-link:hover {
  background: var(--primary);
  color: var(--white);
}

.sidebar-widget {
  margin-bottom: 40px;
}

.search-form {
  display: flex;
}
.search-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: var(--font-main);
  font-size: 15px;
  outline: none;
}
.search-form input:focus {
  border-color: var(--primary);
}
.search-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 18px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}
.search-form button:hover {
  background: var(--dark);
}

.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recent-post img {
  width: 70px;
  height: 65px;
  object-fit: cover;
  flex-shrink: 0;
}
.recent-post-text small,
.recent-post-date {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.recent-post-text a,
.recent-post-info h5 a {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  text-decoration: none;
}
.recent-post-text a:hover,
.recent-post-info h5 a:hover {
  color: var(--primary);
}

.categories-list {
  list-style: none;
}
.categories-list li {
  border-bottom: 1px solid var(--border);
}
.categories-list li:last-child {
  border-bottom: none;
}
.categories-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}
.categories-list a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.categories-list a span {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  padding: 2px 10px;
  font-weight: 700;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
}
.page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.page-link:hover,
.page-link.active {
  background: var(--primary);
  color: var(--white);
}

/* Blog detail */
.blog-detail-section {
  padding: 80px 0;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

.post-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}
.post-thumb img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.post-thumb:hover img {
  transform: scale(1.04);
}

.post-date-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}
.post-meta-item i {
  color: var(--primary);
  font-size: 13px;
}
.post-meta-item a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.post-meta-item a:hover {
  color: var(--primary);
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.post-content p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 22px;
}

.post-quote {
  background: var(--darker);
  border-left: 5px solid var(--primary);
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
}
.post-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 40px;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
}
.post-quote p {
  color: var(--white);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 14px;
}
.post-quote cite {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}

.post-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.post-images-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post-tags-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.post-tags span {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-share span {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
}
.share-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--gray);
  font-size: 14px;
  transition: all 0.3s;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  text-decoration: none;
}
.share-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* Author box */
.author-box {
  background: var(--light);
  padding: 36px;
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
  border-left: 4px solid var(--primary);
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}
.author-info h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.author-info .role {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.author-info p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Comments */
.section-title-sm {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 16px;
}
.section-title-sm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.comment-item {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.comment-item.reply {
  margin-left: 60px;
}
.comment-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}
.comment-date {
  color: var(--gray);
  font-size: 13px;
}
.comment-body p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.reply-btn {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
}
.reply-btn:hover {
  opacity: 0.8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Profile / Team single */
.profile-section {
  padding: 90px 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: start;
}
.profile-img-wrap {
  position: relative;
  margin-bottom: 32px;
}
.profile-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.profile-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--darker), transparent);
  padding: 30px 28px 24px;
}
.profile-social {
  display: flex;
  gap: 10px;
}
.profile-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}
.profile-social a:hover {
  background: var(--primary);
}

.member-role-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  margin-bottom: 16px;
}
.member-name {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.member-name span {
  color: var(--primary);
}
.member-title-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.member-title-line::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--border);
}
.member-title-text {
  color: var(--gray);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.member-bio p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--light);
  border-left: 3px solid var(--primary);
}
.info-item label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}
.info-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

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

/* Success msg */
.success-msg {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #064e3b;
  padding: 18px 24px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 14px;
}
.success-msg i {
  color: #10b981;
  margin-right: 8px;
}

/* =============================================
   RESPONSIVE BREAKPOINTS — ALL FIXED
============================================= */

/* ---- 1200px ---- */
@media (max-width: 1199px) {
  .about-content {
    padding-left: 30px;
  }
  .grid-2-8,
  .grid-8-2 {
    gap: 40px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- 991px — TABLET ---- */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  /* Grid collapses */
  .grid-2,
  .grid-2-8,
  .grid-8-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Column fixes */
  .col-4,
  .col-3 {
    width: 50%;
  }
  .col-8,
  .col-5,
  .col-7,
  .col-6 {
    width: 100%;
  }

  /* About */
  .about-content {
    padding-left: 0;
    margin-top: 80px;
  }
  .about-img-small {
    right: 0;
    bottom: -30px;
  }
  .about-experience-badge {
    left: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-small.about-img-corner {
    display: none;
  }
  .about-exp-badge {
    left: 10px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }

  /* Stats */
  .stats-section::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Hero strip */
  .hero-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why section */
  .why-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-right {
    justify-content: flex-start;
    margin-top: 30px;
  }

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

  /* Info cards */
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Branches */
  .branches-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Blog */
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    padding-left: 0;
    order: -1;
    margin-top: 50px;
  }

  /* Profile */
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Video */
  .video-modal iframe {
    height: 300px;
  }

  /* ======================================
     MOBILE NAV — HAMBURGER MENU FIXED
  ====================================== */
  .header-top {
    display: none;
  }
@media (max-width: 991px) {
  .header-top { display: none !important; }
}
  /* Hide header btn and show toggle */
  .header-btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Mobile nav panel slides in from right */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 40px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    list-style: none;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 25px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
    background: rgba(212, 45, 45, 0.08);
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--primary);
    margin-left: 20px;
    display: none;
    padding: 5px 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    padding: 10px 20px;
  }
  .dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 28px;
    background: transparent;
  }

  /* Mega dropdown mobile */
  .mega-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--primary);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.04);
    margin-left: 20px;
  }

  .mega-dropdown-parent.mobile-open .mega-dropdown {
    display: block;
  }

  .mega-dropdown-inner {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .mega-col {
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mega-col:last-child {
    border-bottom: none;
  }
  .mega-cat-title {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--primary);
  }
  .mega-list li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  .mega-list li a:hover {
    color: var(--primary);
  }

  /* Close button in mobile nav */
  .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
    border-radius: 2px;
  }

  .nav-close-btn:hover {
    background: var(--primary);
  }

  .join-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---- 767px — MOBILE ---- */
@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }

  /* Grids */
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .col-4,
  .col-3,
  .col-6 {
    width: 100%;
  }

  /* Hero */
  .hero-content {
    padding: 120px 0 80px;
  }
  .hero-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-strip-item {
    padding: 15px;
  }
  .hero-controls {
    bottom: 100px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 30px 20px;
  }

  /* Page banner */
  .page-banner {
    padding: 100px 0 50px;
    margin-top: 70px;
  }
  .page-banner-title,
  .banner-content h1 {
    font-size: clamp(26px, 6vw, 42px);
    letter-spacing: 1px;
  }

  /* Team */
  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-single-img img {
    height: 350px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Branches */
  .branches-grid {
    grid-template-columns: 1fr;
  }

  /* Info cards */
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Map */
  .map-overlay-card {
    display: none;
  }

  /* Blog */
  .post-title {
    font-size: clamp(22px, 4vw, 28px);
  }
  .post-thumb img {
    height: 280px;
  }
  .post-images-grid {
    grid-template-columns: 1fr;
  }
  .author-box {
    flex-direction: column;
  }
  .comment-item.reply {
    margin-left: 20px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }
  .cta-right {
    justify-content: flex-start;
    margin-top: 20px;
  }

  /* Member */
  .member-name {
    font-size: 34px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .exp-tabs {
    flex-wrap: wrap;
  }
  .exp-item {
    flex-direction: column;
    gap: 12px;
  }
  .exp-item:hover {
    padding-left: 0;
  }

  /* Join CTA */
  .join-inner {
    padding: 40px 30px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 30px;
  }

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

  /* Video modal */
  .video-modal iframe {
    height: 240px;
  }

  /* Blog detail layout */
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: -1;
  }

  /* Profile */
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-img-wrap img {
    height: 380px;
  }
}

/* ---- 480px — SMALL MOBILE ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr;
  }
  .hero-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-filter {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .footer-top {
    padding: 50px 0 30px;
  }
  .footer-bottom-links {
    justify-content: center;
  }

  .blog-tags-share,
  .post-tags-share {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-num {
    font-size: 42px;
  }

  .logo-text {
    font-size: 20px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .page-banner {
    padding: 90px 0 40px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 34px);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: clamp(20px, 5vw, 30px);
  }
  .cta-phone-text strong {
    font-size: 18px;
  }

  .video-section {
    padding: 100px 0;
  }
}

/* ---- Extra small — 360px ---- */
@media (max-width: 360px) {
  .nav-menu {
    width: 280px;
    right: -290px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .hero-tag {
    font-size: 11px;
  }
}

/* ========================================
   FULLY RESPONSIVE OVERRIDES
   All devices: Mobile, Tablet, Desktop
   Images never overflow, layout always clean
======================================== */

/* ---- Global image safety ---- */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Logo responsive ---- */
.logo-light {
  width: clamp(110px, 22vw, 180px);
  height: auto;
  object-fit: contain;
}

/* ---- Desktop nav close button hidden ---- */
.nav-close-btn {
  display: none;
}

/* ---- Prevent horizontal scroll ---- */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ---- Hero: use svh so mobile browser chrome doesn't cause overflow ---- */
.hero-slider,
.hero-slide {
  min-height: 100svh;
}
@supports not (min-height: 100svh) {
  .hero-slider,
  .hero-slide {
    min-height: 100vh;
  }
}

/* ---- All section images should be contained ---- */
.about-img-main img,
.service-img img,
.project-img img,
.blog-thumb img,
.team-img img,
.profile-img-wrap img,
.post-thumb img,
.why-img img,
.expertise-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==============================
   TABLET — 1024px
============================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .header-main-inner {
    gap: 12px;
  }

  .hero-content {
    padding: 130px 0 90px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(26px, 4vw, 42px);
  }
}

/* ==============================
   TABLET — 991px
============================== */
@media (max-width: 991px) {
  /* Nav close button visible on mobile */
  .nav-close-btn {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    z-index: 10001;
    transition: background 0.3s;
  }
  .nav-close-btn:hover {
    background: var(--primary);
  }

  /* Logo sizing on tablet */
  .logo-light {
    width: clamp(100px, 18vw, 150px);
  }

  /* Hero */
  .hero-content {
    padding: 110px 0 70px;
  }
  .hero-title {
    font-size: clamp(30px, 6vw, 52px) !important;
  }
  .hero-desc {
    font-size: 15px;
    max-width: 90%;
  }

  /* Images - force responsive */
  .about-img-main img {
    max-height: 450px;
    object-fit: cover;
  }

  /* Service cards */
  .service-card {
    padding: 28px 22px;
  }

  /* CTA grid */
  .cta-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Footer 4-col → 2-col */
  .footer .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px;
  }

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

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

/* ==============================
   MOBILE — 767px
============================== */
@media (max-width: 767px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Logo */
  .logo-light {
    width: clamp(90px, 40vw, 140px);
  }

  /* Hero full rework */
  .hero-slider,
  .hero-slide {
    min-height: 85svh;
  }
  .hero-content {
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: clamp(26px, 7.5vw, 42px) !important;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-dots {
    display: none;
  }

  /* Hero controls repositioned */
  .hero-controls {
    position: static !important;
    margin-top: 16px;
  }

  /* Hero strip stacked */
  .hero-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* Section spacing */
  .section-pad {
    padding: 55px 0;
  }
  .section-title {
    font-size: clamp(22px, 6vw, 34px);
  }
  .section-subtitle {
    font-size: 14px;
  }

  /* All grids → single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-8,
  .grid-8-2 {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* Footer → single column */
  .footer .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* About section images */
  .about-img-main img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  .about-img-small {
    display: none !important;
  }
  .about-content {
    padding-left: 0 !important;
    margin-top: 0;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-item {
    padding: 24px 16px;
  }
  .stat-num {
    font-size: 38px !important;
  }

  /* Services */
  .service-card img,
  .service-img img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }

  /* Process steps */
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  .team-card .team-img img {
    height: 280px;
    width: 100%;
    object-fit: cover;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blog */
  .blog-grid,
  .blog-layout {
    grid-template-columns: 1fr !important;
  }
  .blog-thumb img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  /* CTA */
  .cta-inner,
  .cta-section .container > div {
    flex-direction: column;
    gap: 20px;
  }
  .cta-title {
    font-size: clamp(20px, 5vw, 28px);
  }
  .cta-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-form-wrap {
    padding: 24px 16px;
  }

  /* Form rows */
  .form-row,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  /* Page banner */
  .page-banner {
    padding: 100px 0 50px;
    margin-top: 65px;
  }
  .page-banner-title,
  .banner-content h1 {
    font-size: clamp(24px, 6vw, 38px);
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
  .project-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  /* Branches */
  .branches-grid {
    grid-template-columns: 1fr !important;
  }

  /* Map overlay */
  .map-overlay-card {
    display: none !important;
  }

  /* Info cards */
  .info-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Sidebar */
  .blog-layout {
    grid-template-columns: 1fr !important;
  }
  .sidebar {
    padding-left: 0;
  }

  /* Video */
  .video-section {
    padding: 80px 0;
  }
  .video-modal iframe {
    height: 220px;
  }

  /* Why / expertise grids */
  .why-grid,
  .expertise-grid {
    grid-template-columns: 1fr !important;
  }
  .why-img img,
  .expertise-img img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
  }

  /* Partners */
  .partners-track .partner-logo {
    width: 130px;
    padding: 0 18px;
  }

  /* Back to top */
  .back-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
    font-size: 14px;
  }
}

/* ==============================
   SMALL MOBILE — 480px
============================== */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  /* Header */
  .logo-light {
    width: clamp(80px, 38vw, 120px);
  }
  .header-main-inner {
    gap: 8px;
  }

  /* Hero */
  .hero-slider,
  .hero-slide {
    min-height: 80svh;
  }
  .hero-content {
    padding: 90px 0 50px;
  }
  .hero-title {
    font-size: clamp(24px, 8vw, 36px) !important;
  }
  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
  }
  .hero-strip-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-strip-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-strip-item:last-child {
    border-bottom: none;
  }

  /* Stats single col */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .stat-num {
    font-size: 36px !important;
  }

  /* Section title */
  .section-title {
    font-size: clamp(20px, 6.5vw, 30px);
  }

  /* Buttons full width on small mobile */
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Filter buttons wrap */
  .project-filter {
    flex-wrap: wrap;
    gap: 6px;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Blog tags */
  .blog-tags-share,
  .post-tags-share {
    flex-direction: column;
    gap: 12px;
  }

  /* Comment indent */
  .comment-item.reply {
    margin-left: 16px;
  }

  /* CTA */
  .cta-section {
    padding: 55px 0;
  }

  /* Join */
  .join-inner {
    padding: 32px 20px;
    text-align: center;
  }

  /* Logo in footer */
  .footer .logo-icon {
    width: 36px;
    height: 36px;
  }
  .footer .logo-text {
    font-size: 18px;
  }
}

/* ==============================
   EXTRA SMALL — 360px
============================== */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .logo-light {
    width: 90px;
  }
  .nav-menu {
    width: 270px !important;
    right: -280px !important;
  }
  .nav-menu.open {
    right: 0 !important;
  }
  .hero-title {
    font-size: 22px !important;
  }
  .hero-desc {
    font-size: 13px;
  }
  .btn {
    padding: 11px 16px;
    font-size: 12px;
  }
}

/* ==============================
   NAV CLOSE BUTTON JS HOOK
============================== */
/* JS will wire the close button — add visual focus style */
.nav-close-btn:focus-visible {
  outline: 2px solid var(--primary);
}

/* product page css  */

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Main Container */
.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 60px;
}

/* --- LEFT SIDE: SLIDER & IMAGE --- */
.left-section {
  flex: 1;
  width: 100%;
  max-width: 715px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Red Corner Accents */
.slider-wrapper {
  width: 100%;
  position: relative;
  padding: 20px;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #d42d2d;
  z-index: 0;
}

.slider-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.slider-wrapper::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Image Box - Clean White Product Box */
.slider-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Slide Container */
.slide {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  overflow: hidden;
}

/* Zoom Effect CSS */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  
  pointer-events: none; /* Mouse events sirf parent (.slide) par honge */
}

/* Slider Indicators */
.slider-indicators {
  display: none;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.indicator-line {
  width: 25px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-line.active {
  background-color: #d42d2d;
  width: 45px;
  box-shadow: 0 0 8px rgba(255, 0, 51, 0.4);
}

/* --- RIGHT SIDE: NORMAL CLEAN TEXT --- */
.right-section {
  flex: 1.2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.laser-subtitle {
  color: #d42d2d;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.laser-subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #d42d2d;
}

.main-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.sub-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 25px;
  border-left: 4px solid #d42d2d;
  padding-left: 15px;
}

.normal-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: justify;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background-color: #d42d2d;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 6px 15px rgba(255, 0, 51, 0.2);
  border: 2px solid #d42d2d;
}

.btn-primary:hover {
  background-color: transparent;
  color: #d42d2d;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .main-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }

  .left-section {
    max-width: 500px;
    margin: 0 auto;
  }

  .right-section {
    align-items: center;
    text-align: center;
  }

  .laser-subtitle {
    justify-content: center;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .sub-heading {
    border-left: none;
    border-bottom: 2px solid #d42d2d;
    padding-left: 0;
    padding-bottom: 10px;
    display: inline-block;
  }

  .normal-text {
    text-align: center;
  }

  .btn-primary {
    align-self: center;
  }
}
/* product keyfeature  */

/* CSS Variables ab sirf is section tak seemit hain (scoped) */
.cnc-mc-section {
  --cnc-primary: #0f172a;
  --cnc-secondary: #2563eb;
  --cnc-accent: #ea580c;
  --cnc-bg: #f1f5f9;
  --cnc-card-bg: #ffffff;
  --cnc-text-light: #64748b;

  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  padding: 100px 20px 80px;
  background-color: var(--cnc-bg);
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
  overflow-x: hidden;
}

.cnc-mc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cnc-mc-header {
  text-align: center;
  margin-bottom: 80px;
}

.cnc-mc-subtitle {
  color: var(--cnc-accent);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
  background-color: rgba(234, 88, 12, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.cnc-mc-title {
  color: var(--cnc-primary);
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.cnc-mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px 30px;
  counter-reset: cnc-mc-counter;
}

.cnc-mc-card {
  background-color: var(--cnc-card-bg);
  padding: 50px 30px 30px;
  border-radius: 0 35px 0 35px;
  box-shadow: 8px 8px 0px 0px rgba(37, 99, 235, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid #e2e8f0;
  z-index: 1;
  counter-increment: cnc-mc-counter;
  display: flex;
  flex-direction: column;
}

.cnc-mc-card:hover {
  transform: translateY(-10px) translateX(-5px);
  box-shadow: 12px 12px 0px 0px var(--cnc-accent);
  border-color: var(--cnc-accent);
}

.cnc-mc-card::after {
  content: "0" counter(cnc-mc-counter);
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 70px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  z-index: -1;
  transition: all 0.4s ease;
  line-height: 1;
}

.cnc-mc-card:nth-child(n + 10)::after {
  content: counter(cnc-mc-counter);
}

.cnc-mc-card:hover::after {
  color: rgba(234, 88, 12, 0.08);
  transform: scale(1.1) rotate(5deg);
}

.cnc-mc-icon-box {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--cnc-secondary), #1e3a8a);
  color: white;
  border-radius: 18px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  transition: all 0.5s ease;
}

.cnc-mc-icon-box i {
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}

.cnc-mc-card:hover .cnc-mc-icon-box {
  transform: rotate(0deg);
  background: linear-gradient(135deg, var(--cnc-accent), #f97316);
  border-radius: 50%;
}

.cnc-mc-card:hover .cnc-mc-icon-box i {
  transform: rotate(0deg) scale(1.1);
}

.cnc-mc-card h3 {
  color: var(--cnc-primary);
  font-size: 20px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cnc-mc-card p {
  color: var(--cnc-text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cnc-mc-section {
    padding: 80px 15px 60px;
  }
  .cnc-mc-header {
    margin-bottom: 60px;
  }
  .cnc-mc-card {
    padding: 40px 25px 25px;
  }
}

/* product aplication  */
/* === APPLICATION SLIDER SECTION === */
.app-slider-section {
  width: 100%;
  background: #f9fafb;
  padding: 60px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.app-slider-section .app-slider-header {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.app-slider-section .app-subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  color: #cc0000;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.app-slider-section .app-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

/* === SLIDER WRAPPER — 1200px centered with fade === */
.app-slider-section .app-slider-row {
  width: 100%;
  max-width: 1200px; /* ✅ 1200px max */
  margin: 0 auto 16px; /* ✅ centered */
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Left-right fade */
.app-slider-section .app-slider-row::before,
.app-slider-section .app-slider-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}
.app-slider-section .app-slider-row::before {
  left: 0;
  background: linear-gradient(to right, #f9fafb 20%, transparent);
}
.app-slider-section .app-slider-row::after {
  right: 0;
  background: linear-gradient(to left, #f9fafb 20%, transparent);
}

/* Track */
.app-slider-section .app-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 8px 10px;
  margin: 0;
}

/* Animations */
.app-slider-section .app-scroll-left {
  animation: appScrollLeft 40s linear infinite;
}
.app-slider-section .app-scroll-right {
  animation: appScrollRight 35s linear infinite;
}
.app-slider-section .app-slider-row:hover .app-scroll-left,
.app-slider-section .app-slider-row:hover .app-scroll-right {
  animation-play-state: paused;
}

@keyframes appScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes appScrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* === CARD — ~3 visible at a time === */
.app-slider-section .app-card {
  width: 340px; /* 1200 / 3 = ~340px visible */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.app-slider-section .app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(204, 0, 0, 0.15);
  z-index: 10;
}

/* Image */
.app-slider-section .app-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}

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

.app-slider-section .app-card:hover .app-img-wrap img {
  transform: scale(1.05);
}

/* Shine */
.app-slider-section .app-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 20;
  pointer-events: none;
}
.app-slider-section .app-card:hover .app-img-wrap::before {
  animation: appShine 0.7s ease-in-out;
}

@keyframes appShine {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}

/* Title */
.app-slider-section .app-card-title {
  width: 100%;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  background: #fff;
  box-sizing: border-box;
  transition: color 0.3s;
}
.app-slider-section .app-card:hover .app-card-title {
  color: #cc0000;
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
  .app-slider-section .app-card {
    width: 300px;
  }
  .app-slider-section .app-img-wrap {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .app-slider-section .app-card {
    width: 260px;
  }
  .app-slider-section .app-img-wrap {
    height: 175px;
  }
  .app-slider-section .app-track {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .app-slider-section .app-slider-header {
    padding: 0 15px 28px;
  }
  .app-slider-section .app-card {
    width: 200px;
  }
  .app-slider-section .app-img-wrap {
    height: 140px;
  }
  .app-slider-section .app-card-title {
    font-size: 11px;
    padding: 10px 12px;
  }
  .app-slider-section .app-track {
    gap: 14px;
  }
  .app-slider-section .app-slider-row::before,
  .app-slider-section .app-slider-row::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .app-slider-section .app-card {
    width: 160px;
  }
  .app-slider-section .app-img-wrap {
    height: 115px;
  }
  .app-slider-section .app-card-title {
    font-size: 10px;
    padding: 8px 10px;
  }
  .app-slider-section .app-track {
    gap: 10px;
  }
}

/* product applicxation industryes we serve  */


        .main-container {
            max-width: 1200px;
            width: 100%;
            box-sizing: border-box;
            margin: 0 auto;
            padding: 20px 0;
            /* Outer box ki styling (background, shadow, border-radius) hata di gayi hai */
        }

        /* TABS (BUTTONS) STYLES */
        .tabs-header {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            border-bottom: 2px solid #eaeaea;
            padding-bottom: 20px;
        }

        .tab-btn {
            background-color: #f8f9fa;
            color: #444;
            border: 2px solid #eaeaea;
            padding: 12px 28px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            border-radius: 30px; 
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #cc0000, #e60000);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: -1;
            border-radius: 30px;
        }

        .tab-btn:hover {
            color: #cc0000;
            border-color: #cc0000;
            background-color: transparent;
            transform: translateY(-2px);
        }

        .tab-btn.active {
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25);
            transform: translateY(-2px);
        }

        .tab-btn.active::before {
            width: 100%;
        }

        /* CONTENT SECTIONS STYLES */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* TYPOGRAPHY */
        .section-title {
            text-align: start;
            font-size: 36px;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
            margin-top: 0;
            letter-spacing: -0.5px;
        }

        .section-title span {
            color: #cc0000;
        }

        .section-desc {
            text-align: start;
            font-size: 17px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 900px;
        }

        .section-subtitle {
            text-align: start;
            font-size: 22px;
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            display: inline-block;
            position: relative;
        }

        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #cc0000;
            border-radius: 5px;
            transition: width 0.3s ease;
        }

        .tab-content:hover .section-subtitle::after {
            width: 100%;
        }

        /* DYNAMIC GRID SYSTEM */
        .grid-container {
            display: grid;
            gap: 20px;
            margin-bottom: 20px;
        }

        .grid-4-cols { grid-template-columns: repeat(4, 1fr); }
        .grid-3-cols { grid-template-columns: repeat(3, 1fr); }

        /* CREATIVE BOX STYLES */
        .item-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90px;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
        }

        /* Staggered Entry Animation Classes */
        .tab-content.active .item-box {
            animation: slideUpFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
        
        .tab-content.active .item-box:nth-child(1) { animation-delay: 0.05s; }
        .tab-content.active .item-box:nth-child(2) { animation-delay: 0.10s; }
        .tab-content.active .item-box:nth-child(3) { animation-delay: 0.15s; }
        .tab-content.active .item-box:nth-child(4) { animation-delay: 0.20s; }
        .tab-content.active .item-box:nth-child(5) { animation-delay: 0.25s; }
        .tab-content.active .item-box:nth-child(6) { animation-delay: 0.30s; }
        .tab-content.active .item-box:nth-child(7) { animation-delay: 0.35s; }
        .tab-content.active .item-box:nth-child(8) { animation-delay: 0.40s; }
        .tab-content.active .item-box:nth-child(9) { animation-delay: 0.45s; }
        .tab-content.active .item-box:nth-child(10) { animation-delay: 0.50s; }
        .tab-content.active .item-box:nth-child(11) { animation-delay: 0.55s; }
        .tab-content.active .item-box:nth-child(12) { animation-delay: 0.60s; }

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

        /* Cool Fill Hover Effect for Boxes */
        .item-box::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #cc0000, #ff1a1a);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: -1;
            border-radius: 12px;
        }

        .item-val {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            line-height: 1.5;
            transition: color 0.4s ease;
        }

        /* Hover Actions */
        .item-box:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 15px 25px rgba(204, 0, 0, 0.15);
            border-color: transparent;
        }

        .item-box:hover::before {
            top: 0;
        }

        .item-box:hover .item-val {
            color: #ffffff;
        }

        /* RESPONSIVE DESIGN */
        @media(max-width: 992px) {
            .grid-4-cols, .grid-3-cols { 
                grid-template-columns: repeat(2, 1fr); 
            }
        }

        @media(max-width: 600px) {
            .tabs-header {
                flex-direction: column;
                gap: 10px;
            }
            .tab-btn {
                text-align: center;
                border-radius: 8px; 
            }
            .tab-btn::before {
                border-radius: 8px;
            }
            .grid-4-cols, .grid-3-cols { 
                grid-template-columns: 1fr; 
            }
            .section-title { font-size: 28px; }
        }


        /* product technical speficication css  */

          /* Basic Font aur Body Style */
          @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
        
      

          /* Main Container - 1200px Max Width */
          .mr-laser-container {
              max-width: 1200px;
              margin: 0 auto;
              display: flex;
              gap: 40px;
              background: #ffffff;
              padding: 40px;
              border-radius: 16px;
              box-shadow: 0 15px 35px rgba(0,0,0,0.1);
              box-sizing: border-box;
              border-top: 5px solid #d32f2f; /* Red Accent Top */
              opacity: 0;
              transform: translateY(30px);
              animation: containerFadeIn 0.8s ease-out forwards;
          }
  
          /* Left Column (Table) - 50% width */
          .left-col {
              flex: 0 0 50%;
              max-width: 50%;
          }
  
          /* Right Column (Video + Form) - 50% width */
          .right-col {
              flex: 0 0 calc(50% - 40px);
              max-width: calc(50% - 40px);
              display: flex;
              flex-direction: column;
              gap: 40px;
          }
  
          /* Section Titles */
          .section-title {
              font-size: 22px;
              font-weight: 700;
              color: #d32f2f;
              margin-top: 0;
              margin-bottom: 20px;
              border-bottom: 2px solid #f0f0f0;
              padding-bottom: 10px;
              text-transform: uppercase;
              position: relative;
          }
  
          /* Title Hover Line Animation */
          .section-title::after {
              content: '';
              position: absolute;
              left: 0;
              bottom: -2px;
              width: 0;
              height: 2px;
              background-color: #d32f2f;
              transition: width 0.5s ease;
          }
          .mr-laser-container:hover .section-title::after {
              width: 50px;
          }
  
          /* Animated Table Style */
          .specs-table {
              width: 100%;
              border-collapse: separate;
              border-spacing: 0 5px; 
              font-size: 15px;
          }
  
          .specs-table th, .specs-table td {
              padding: 14px 15px;
              text-align: left;
              border-top: 1px solid #eee;
              border-bottom: 1px solid #eee;
          }
  
          .specs-table th {
              background-color: #f9f9f9;
              font-weight: 600;
              color: #444;
              width: 40%;
              border-left: 1px solid #eee;
              border-radius: 6px 0 0 6px;
          }
  
          .specs-table td {
              border-right: 1px solid #eee;
              border-radius: 0 6px 6px 0;
              background-color: #fff;
              color: #555;
          }
  
          /* Table Row Animation States */
          .specs-table tr {
              transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
              opacity: 0; 
              transform: translateX(-20px); 
          }
  
          .specs-table tr.animate-row {
              opacity: 1;
              transform: translateX(0);
          }
  
          .specs-table tr:hover {
              box-shadow: 0 5px 15px rgba(211, 47, 47, 0.15);
              transform: scale(1.01) translateX(5px) !important;
          }
  
          .specs-table tr:hover th {
              background-color: #fff0f0;
              border-left: 3px solid #d32f2f;
              color: #d32f2f;
          }
  
          .specs-table tr:hover td {
              background-color: #fffaf9;
          }
  
          /* Responsive Video Container */
          .video-wrapper {
              position: relative;
              padding-bottom: 56.25%; /* 16:9 ratio */
              height: 0;
              overflow: hidden;
              border-radius: 10px;
              box-shadow: 0 4px 15px rgba(0,0,0,0.1);
              opacity: 0;
              transform: scale(0.95);
          }
  
          .video-wrapper.animate-video {
              animation: videoPopIn 0.8s ease-out forwards;
          }
  
          .video-wrapper iframe {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              border: 0;
          }
  
          /* NEW Mr Laser Contact Form Style (Based on image provided) */
          .new-form-container {
              background: #ffffff;
              border: 1px solid #eaeaea;
              padding: 30px;
              border-radius: 12px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.04);
              opacity: 0;
              transform: translateY(20px);
          }
  
          .new-form-container.animate-form {
              animation: formSlideUp 0.8s ease-out forwards;
          }
  
          .form-head-line {
              display: flex;
              align-items: center;
              gap: 15px;
              color: #d32f2f;
              font-weight: 700;
              font-size: 14px;
              letter-spacing: 1.5px;
              margin-bottom: 10px;
              text-transform: uppercase;
          }
  
          .form-head-line::before {
              content: "";
              display: block;
              width: 40px;
              height: 2px;
              background-color: #d32f2f;
          }
  
          .form-title-main {
              font-size: 32px;
              font-weight: 900;
              color: #111;
              margin: 0 0 15px 0;
              text-transform: uppercase;
              letter-spacing: -0.5px;
          }
  
          .form-title-main span {
              color: #d32f2f;
          }
  
          .form-desc {
              color: #777;
              font-size: 15px;
              line-height: 1.6;
              margin-bottom: 30px;
          }
  
          .grid-2-col {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 20px;
          }
  
          .custom-group {
              margin-bottom: 20px;
              display: flex;
              flex-direction: column;
          }
  
          .custom-group label {
              font-size: 12px;
              font-weight: 700;
              color: #000;
              margin-bottom: 8px;
              text-transform: uppercase;
              letter-spacing: 0.5px;
          }
  
          .custom-group label span {
              color: #d32f2f;
          }
  
          .custom-input {
              background-color: #f6f6f6;
              border: 1px solid transparent;
              padding: 14px 16px;
              border-radius: 4px;
              font-family: 'Roboto', sans-serif;
              font-size: 14px;
              color: #333;
              width: 100%;
              box-sizing: border-box;
              transition: all 0.3s ease;
          }
          
          .custom-input::placeholder {
              color: #aaa;
          }
  
          .custom-input:focus {
              border-color: #d32f2f;
              outline: none;
              background-color: #fff;
              box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.08);
          }
  
          textarea.custom-input {
              resize: vertical;
              min-height: 110px;
          }
  
          /* Skewed Red Button Style */
          .custom-btn {
              background: transparent;
              border: none;
              position: relative;
              padding: 14px 28px;
              color: white;
              font-weight: 700;
              font-family: inherit;
              display: inline-flex;
              align-items: center;
              gap: 10px;
              cursor: pointer;
              font-size: 14px;
              letter-spacing: 1px;
              margin-top: 5px;
              margin-bottom: 20px;
              z-index: 1;
              text-transform: uppercase;
          }
  
          .custom-btn::before {
              content: '';
              position: absolute;
              top: 0; left: 0; right: 0; bottom: 0;
              background-color: #d32f2f;
              transform: skewX(-15deg);
              z-index: -1;
              border-radius: 3px;
              transition: all 0.3s ease;
          }
  
          .custom-btn:hover::before {
              background-color: #b71c1c;
              transform: skewX(-15deg) scale(1.05);
          }
  
          .secure-text {
              display: flex;
              align-items: center;
              gap: 8px;
              color: #555;
              font-size: 14px;
              border-top: 1px solid #eee;
              padding-top: 15px;
          }
  
          /* Keyframe Animations */
          @keyframes containerFadeIn {
              to { opacity: 1; transform: translateY(0); }
          }
  
          @keyframes videoPopIn {
              to { opacity: 1; transform: scale(1); }
          }
  
          @keyframes formSlideUp {
              to { opacity: 1; transform: translateY(0); }
          }
  
          /* Mobile Responsiveness */
          @media (max-width: 950px) {
              .mr-laser-container {
                  flex-direction: column;
                  padding: 20px;
              }
              .left-col, .right-col {
                  flex: 0 0 100%;
                  max-width: 100%;
              }
              .specs-table th { width: 45%; }
              .grid-2-col {
                  grid-template-columns: 1fr;
                  gap: 0;
              }
          }
          
          /* video css  */
          
  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --primary: #c8102e;
    --dark: #111;
    --white: #fff;
    --gray-light: #f4f4f4;
    --border: #e0e0e0;
    --font-heading: 'Barlow Condensed', sans-serif;
  }

  @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@400;600&display=swap');



  /* ==============================
     VIDEO SECTION
  ============================== */
  .video-section {
    padding: 80px 0;
    background: var(--gray-light);
  }

  .vs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Title */
  .section-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 40px;
  }

  .section-title span { color: var(--primary); }

  /* ==============================
     SLIDER LAYOUT
  ============================== */
  .vs-outer {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Arrow Buttons */
  .vs-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.3s, transform 0.2s;
    line-height: 1;
  }

  .vs-arrow:hover {
    background: var(--dark);
    transform: scale(1.08);
  }

  /* Overflow hidden wrapper */
  .vs-window {
    flex: 1;
    overflow: hidden;
  }

  /* Track - slides horizontally */
  .vs-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* ==============================
     VIDEO CARD
     3 cards visible = each card is
     calc((100% - 2*24px) / 3)
  ============================== */
  .vs-card {
    /* JS will set this via inline style after measuring */
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    cursor: pointer;
  }

  .vs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.13);
    border-color: transparent;
  }

  .vs-card a {
    text-decoration: none;
    display: block;
  }

  /* Thumbnail */
  .vs-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
  }

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

  .vs-card:hover .vs-thumb img {
    transform: scale(1.06);
  }

  /* Play overlay */
  .vs-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.32);
    transition: background 0.3s;
  }

  .vs-card:hover .vs-play {
    background: rgba(0,0,0,0.52);
  }

  .vs-play svg {
    width: 62px;
    height: 62px;
    background: var(--primary);
    border-radius: 50%;
    padding: 18px 14px 18px 20px;
    fill: #fff;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 12px rgba(200,16,46,0.5));
  }

  .vs-card:hover .vs-play svg {
    transform: scale(1.18);
  }

  /* Card Info */
  .vs-info {
    display: none;
  }

  /* ==============================
     DOTS
  ============================== */
  .vs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }

  .vs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }

  .vs-dot.active {
    background: var(--primary);
    transform: scale(1.4);
  }

  /* ==============================
     RESPONSIVE
  ============================== */
  @media (max-width: 900px) {
    .vs-arrow { width: 40px; height: 40px; font-size: 16px; }
  }

  /* ===== PAGE BANNER IMAGE FIX ===== */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: none; /* gradient pseudo-element se aayega */
}

.page-banner-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.page-banner-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Content upar dikhega overlay ke */
.page-banner-content,
.banner-content {
  position: relative;
  z-index: 3;
}


  /* whatsapp css  */

    .whatsapp-float {
      position: fixed;
      left: 20px;
      bottom: 30px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 35px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      /* Animation properties */
      transform-origin: top center;
      animation: swing-animation 2.5s infinite ease-in-out;
      transition: background-color 0.3s;
    }

    .whatsapp-float:hover {
      background-color: #1ebe57;
      color: #fff;
    }

    @keyframes swing-animation {
      0% { transform: rotate(0deg); }
      15% { transform: rotate(15deg); }
      30% { transform: rotate(-10deg); }
      45% { transform: rotate(5deg); }
      60% { transform: rotate(-5deg); }
      75% { transform: rotate(2deg); }
      100% { transform: rotate(0deg); }
    }
    