/*priyanka Css*/
/* ===== VIDEO HERO SECTION ===== */

:root {
  --primary: #3A449C;
  --primary-dark: #2a3278;
  --primary-deeper: #1e2455;
  --accent: #5891CD;
  --accent-light: #7ab0de;
  --accent-lighter: #c8dff4;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --light-gray: #e8edf5;
  --mid-gray: #8a9bb5;
  --dark: #0d1225;
  --dark-2: #151c35;
  --dark-3: #1e2748;
  --text-dark: #0d1225;
  --text-med: #3d4a6b;
  --text-light: #6b7a9e;
  --gold: #c9a84c;
  --gradient-primary: linear-gradient(135deg, #3A449C 0%, #5891CD 100%);
  --gradient-dark: linear-gradient(135deg, #0d1225 0%, #1e2748 100%);
  --shadow-sm: 0 2px 12px rgba(58,68,156,0.08);
  --shadow-md: 0 8px 40px rgba(58,68,156,0.15);
  --shadow-lg: 0 20px 80px rgba(58,68,156,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth;overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── NAVBAR ─── */
.main_nav{
     position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
     width:100%;background:#fff;backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88,145,205,0.15);
  transition: all 0.3s ease;
}
.navbar {
 
  /*padding:10px 50px;*/
  display: flex; align-items: center; justify-content: space-between;
  /*background: rgba(13,18,37,0.95);*/
  
  
}

.navbar.scrolled {
  background: #fff;
  border-bottom-color: rgba(88,145,205,0.3);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.nav-logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white;
  letter-spacing: -1px; font-family: 'Montserrat', sans-serif;
  position: relative; overflow: hidden;
}
.nav-logo-icon::before {
  content: '';
  position: absolute; top: -50%; left: 30%;
  width: 3px; height: 200%;
  background: rgba(255,255,255,0.6);
  transform: rotate(15deg);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-en { font-size: 15px; font-weight: 800; color: white; letter-spacing: 1.5px; line-height: 1.1; }
.nav-logo-ar { font-size: 10px; font-weight: 400; color: var(--accent-light); font-family: 'Cairo', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
  /*color: rgba(255,255,255,0.75);*/
  color:#3b4799;
  text-decoration: none; transition: all 0.25s;
  position: relative;
}

.nav-link:hover { 
color: white;     
background: rgb(59 71 153); 
    
}
.nav-link.active { color: var(--accent-light); }
.nav-products-wrapper { position: relative; }
.nav-products-wrapper:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu {
  position: absolute; top: calc(100% + 20px); left: -20%; transform: translateX(-50%) translateY(-8px);
  width: 680px; background: var(--dark-2);
  border: 1px solid rgba(88,145,205,0.2);
  border-radius: var(--radius-lg); padding: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 9;
}
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.mega-item:hover { background: rgba(88,145,205,0.12); color: white; }
.mega-item-icon {
    background: #fff;
    font-size: 20px;
    padding: 5px;
    display:flex;
    align-items:center;
    border-radius: 10px;
    /* width: 57px; */
    text-align: center;
}
.mega-item-icon img{
  width: 34px;
  height: 34px;
}
.mega-item-text { font-size: 12px; font-weight: 600; }
.nav-cta {
  padding: 10px 22px; border-radius: 8px;
  background: var(--gradient-primary);
  font-size: 13px; font-weight: 700; color: white;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.25s; border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(58,68,156,0.4); }
.nav-top-bar {
    display:none;
  background: var(--primary-deeper); padding: 8px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px;
}
.nav-top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.nav-top-bar a:hover { color: var(--accent-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--gradient-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(88,145,205,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(58,68,156,0.15) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(88,145,205,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,145,205,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translateY(0); } 100% { transform: translateY(60px); } }
.hero-glow {
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(88,145,205,0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(88,145,205,0.15); border: 1px solid rgba(88,145,205,0.3);
  font-size: 11px; font-weight: 700; color: var(--accent-light);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}

.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); animation: blink 1.5s ease-in-out infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-size: clamp(40px, 5vw, 68px); font-weight: 900;
  color: white; line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--accent); position: relative; }
.hero-title .accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary); border-radius: 2px;
}
.hero-subtitle { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  background: var(--gradient-primary); color: white;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(58,68,156,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,68,156,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: white;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-size: 32px; font-weight: 900; color: white; line-height: 1; }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 100%; max-width: 480px; }
.hero-main-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(88,145,205,0.2);
  border-radius: 24px; padding: 32px;
  backdrop-filter: blur(20px);
}
.hero-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hero-product-item {
  background: rgba(88,145,205,0.08); border: 1px solid rgba(88,145,205,0.15);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  transition: all 0.3s;
}
.hero-product-item:hover { background: rgba(88,145,205,0.15); border-color: rgba(88,145,205,0.3); transform: translateY(-4px); }
.hero-product-emoji { font-size: 32px; margin-bottom: 10px; }
.hero-product-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }
.floating-badge {
  position: absolute; padding: 12px 18px; border-radius: 12px;
  background: rgba(13,18,37,0.95); border: 1px solid rgba(88,145,205,0.3);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.floating-badge-1 { top: -20px; right: -30px; animation-delay: 0s; }
.floating-badge-2 { bottom: -20px; left: -30px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-badge-icon { font-size: 20px; }
.floating-badge-text { font-size: 11px; font-weight: 700; color: white; }
.floating-badge-sub { font-size: 10px; color: rgba(255,255,255,0.5); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(88,145,205,0.5)); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero-scroll-text { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.4); }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--gradient-dark); }
.section-gray { background: var(--off-white); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(58,68,156,0.1); color: var(--primary); margin-bottom: 16px;
  border: 1px solid rgba(58,68,156,0.2);
}
.section-dark .section-label { background: rgba(88,145,205,0.15); color: var(--accent-light); border-color: rgba(88,145,205,0.25); }
.section-title1 {
    padding-top:250px;
    font-size: clamp(30px, 4vw, 48px); 
    font-weight: 900; 
    color: #fff; 
    line-height: 1.1; 
    letter-spacing: -0.5px; 
    
}
.section-dark .section-title { color: white; }
.section-title .highlight { color: var(--primary); }
.section-dark .section-title .highlight { color: var(--accent-light); }
.section-subtitle { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ─── MARQUEE / CLIENTS ─── */
.marquee-section { padding: 40px 0;
/*background: var(--primary-deeper); */
/*overflow: hidden; */
/*border-top: 1px solid rgba(88,145,205,0.2); */
/*border-bottom: 1px solid rgba(88,145,205,0.2);*/
}
.marquee-track { display: flex; gap: 80px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item {
    background:#fff;
    padding:5px;
    display: flex; align-items: center; gap: 12px; flex-shrink: 0; 
    
}
.marquee-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.marquee-item-text { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-image-frame {
  /*aspect-ratio: 4/3; */
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-image-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 12px; padding: 24px; width: 100%; height: 100%; }
.about-image-cell {
  border-radius: 10px; background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: all 0.3s;
}
.about-image-cell:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.about-image-cell.large { grid-column: span 2; grid-row: span 2; font-size: 52px; }
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: white; border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.about-accent-num { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.about-accent-label { font-size: 12px; font-weight: 600; color: var(--text-light); }
.about-content { }
.about-text { font-size: 16px; color: var(--text-med); line-height: 1.8; margin-bottom: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.about-feature:hover { border-color: var(--accent-lighter); background: white; box-shadow: var(--shadow-sm); }
.about-feature-icon { font-size: 24px; }
.about-feature-title { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.about-feature-text { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ─── PRODUCTS ─── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: 32px 24px; text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; position: relative; overflow: hidden;
  group: true;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-primary); opacity: 0;
  transition: opacity 0.4s;
}
/*.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { opacity: 1; }
.product-card:hover .product-icon,
.product-card:hover .product-title,
.product-card:hover .product-desc,
.product-card:hover .product-count { color: white; }
.product-card:hover .product-arrow { background: rgba(255,255,255,0.2); color: white; }*/
.product-icon {
  font-size: 48px; margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.3s;
  display: block;
}
.product-title_main { margin-top: 10px; font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; position: relative; z-index: 1; transition: color 0.3s; }
.product-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; transition: color 0.3s; }
.product-footer { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.product-count { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 0.5px; transition: color 0.3s; }
.product-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.3s;
}

/* ─── BRANDS ─── */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.brand-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius);
  /*padding: 24px 16px; */
  display: flex; 
  align-items: center; 
  justify-content: center;
  /* aspect-ratio: 3/2;  */
  transition: all 0.3s;
}
.brand-card:hover { border-color: var(--accent-lighter); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.brand-name { font-size: 14px; font-weight: 800; color: var(--mid-gray); letter-spacing: 1px; transition: color 0.3s;padding: 15px;     text-align: center;
    margin: auto;}
.brand-card:hover .brand-name { color: var(--primary); }
.strategic .brand-card{
width: fit-content;
    align-items: center;
    margin: auto;
}

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card {
  /*text-align: center;*/
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(88,145,205,0.12);
  transition: all 0.3s;
}
.why-card:hover { background: rgba(88,145,205,0.08); border-color: rgba(88,145,205,0.25); transform: translateY(-4px); }
.why-num { font-size: 35px; font-weight: 900; color: rgba(88,145,205,0.2); line-height: 1; margin-bottom: 0px; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-title { font-size: 14px; font-weight: 800; color: white; margin-bottom: 10px; }
.why-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.why-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4c82e81a;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 18px;
    color: #4c82e8;
}
.why-icon-main{
        display: flex;
    justify-content: center;
}
/* ─── INDUSTRIES ─── */
.industries-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.industry-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; position: relative; cursor: pointer;
  transition: all 0.4s;
}
.industry-card:hover { transform: scale(1.02); }
.industry-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.industry-card:nth-child(1) .industry-bg { background: linear-gradient(135deg, #1a1a2e, #3a449c); }
.industry-card:nth-child(2) .industry-bg { background: linear-gradient(135deg, #0f3460, #5891cd); }
.industry-card:nth-child(3) .industry-bg { background: linear-gradient(135deg, #162447, #1f4068); }
.industry-card:nth-child(4) .industry-bg { background: linear-gradient(135deg, #1b1b2f, #4a4e8a); }
.industry-card:nth-child(5) .industry-bg { background: linear-gradient(135deg, #0d1b2a, #1b4f72); }
.industry-card:nth-child(6) .industry-bg { background: linear-gradient(135deg, #16213e, #3a449c); }
.industry-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.industry-name { font-size: 13px; font-weight: 800; color: white; letter-spacing: 0.5px; }
.industry-desc { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── FEATURED PRODUCTS ─── */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.3s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-lighter); }
.feat-card-img {
  /*aspect-ratio: 4/3; */
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.feat-card:hover .feat-card-img { background: linear-gradient(135deg, rgba(58,68,156,0.05), rgba(88,145,205,0.1)); }
.feat-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
}
.feat-badge.new { background: var(--primary); color: white; }
.feat-badge.hot { background: #e74c3c; color: white; }
.feat-badge.top { background: var(--gold); color: white; }
.feat-card-body { padding: 20px; }
.feat-card-cat { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.feat-card-name { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.feat-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.feat-card-foot { display: flex; align-items: center; justify-content: space-between; }
.feat-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--gradient-primary); color: white;
  font-size: 12px; font-weight: 700; text-decoration: none;
  transition: all 0.2s;
}
.feat-card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(58,68,156,0.3); }
.feat-card-inquiry { font-size: 11px; font-weight: 600; color: var(--text-light); text-decoration: none; }
.feat-card-inquiry:hover { color: var(--primary); }

/* ─── CERTIFICATIONS ─── */
.cert-strip {
  background: var(--off-white); border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray);
  padding: 60px 0;
}
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cert-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
  /*padding: 32px 24px;*/ text-align: center; transition: all 0.3s;
}
.cert-card:hover { border-color: var(--accent-lighter); box-shadow: var(--shadow-sm); }
.cert-icon { font-size: 40px; margin-bottom: 16px; }
.cert-title { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.cert-text { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 32px; font-weight: 900; color: white; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 48px; 
  height: 48px; 
  border-radius: 12px;
  background-color: #fff;
   border: 1px solid rgba(88,145,205,0.25);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 20px;
   flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.contact-detail-value { font-size: 14px; font-weight: 600; color: white; margin-top: 2px; }
.contact-wa {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 10px;
  background: #25d366; color: white;
  font-size: 14px; font-weight: 700; text-decoration: none;
  margin-top: 24px; transition: all 0.3s;
}
.contact-wa img{
    width: 10%;
}
.contact-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(88,145,205,0.15);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(88,145,205,0.2);
  color: white; font-size: 14px; font-family: 'Montserrat', sans-serif;
  transition: all 0.3s; outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-textarea { height: 120px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-2); color: white; }
.form-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--gradient-primary); color: white; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,68,156,0.4); }
.map-placeholder {
  height: 200px; border-radius: var(--radius-lg); margin-top: 24px;
  background: rgba(88,145,205,0.1); border: 1px solid rgba(88,145,205,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(88,145,205,0.4);
}

/* ─── FOOTER ─── */

footer {
  background: var(--dark); border-top: 1px solid rgba(88,145,205,0.1);
 padding: 80px 0 ;
}

.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-text { font-size: 14px; color:#fff; line-height: 1.7; margin: 20px 0 28px; }
.footer-socials { display: flex; gap: 10px; }

.footer-social {
  color:#fff;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 16px; transition: all 0.3s;
}

.footer-social:hover { background: rgba(88,145,205,0.15); border-color: rgba(88,145,205,0.3); }
.footer-col-title { font-size: 13px; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.footer-link { display: block; font-size: 13px; color:#fff; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--accent-light); }
.footer-flag { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[class*="delay-1"] { transition-delay: 0.1s; }
[class*="delay-2"] { transition-delay: 0.2s; }
[class*="delay-3"] { transition-delay: 0.3s; }
[class*="delay-4"] { transition-delay: 0.4s; }
[class*="delay-5"] { transition-delay: 0.5s; }
[class*="delay-6"] { transition-delay: 0.6s; }
[class*="delay-7"] { transition-delay: 0.7s; }
[class*="delay-8"] { transition-delay: 0.8s; }

/* ─── DIVIDER ─── */
.divider-line { height: 1px; background: linear-gradient(to right, transparent, rgba(88,145,205,0.3), transparent); }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--gradient-primary); padding: 48px 0; }
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.strip-stat { text-align: center; }
.strip-stat-num { font-size: 48px; font-weight: 900; color: white; line-height: 1; }
.strip-stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .navbar { padding: 0; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 120px 24px 60px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-top-bar { display: none; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waFloat 3s ease-in-out infinite;
  transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.ee-video-banner{
    position:relative;
    width:100%;
    /*height:100vh;*/
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

/* VIDEO */

.ee-banner-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.ee-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background:rgba(0,0,0,0.55); */
}

/* CONTENT */

.ee-banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding:20px;
    color:#fff;
}

.ee-banner-content h1{
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.ee-banner-content p{
font-size: 18px;
color: #fff;
line-height: 1.7;
margin-bottom: 35px;
font-weight: 600;
}

/* BUTTONS */

.ee-banner-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.ee-banner-buttons a{
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

/* PRIMARY BUTTON */

.ee-btn-primary{
    background:#4f7cff;
    color:#fff;
}

.ee-btn-primary:hover{
    background:#6993ff;
}

/* SECONDARY BUTTON */

.ee-btn-secondary{
    border:1px solid rgba(255,255,255,0.5);
    color:#fff;
}

.ee-btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* partner priyanka*/
.brand-name p{
    text-align: center;
    padding-top: 5px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}
.brand-name h5{
    text-align: center;
    padding-top: 5px;
    color: #6b7a9e;
    font-size: 12px;
    font-weight: 700;
}
.trust_brand_subtitle{
 color:#3a449c;
 padding-top:18px;
 font-size:20px;
}
/* ===================================
   TRUST GLOBAL CONTACT SECTION
=================================== */

.trustglobal-contact-wrapper{
    margin-top:40px;
    background:#f5f7fb;
    border:1px solid #e7ebf3;
    border-radius:18px;
    padding:28px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.trustglobal-contact-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.trustglobal-contact-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.trustglobal-contact-text h3{
    margin:0 0 6px;
    font-size:24px;
    font-weight:700;
    color:#1f2937;
}

.trustglobal-contact-text p{
    margin:0;
    font-size:15px;
    color:#6b7280;
    line-height:1.6;
}

.trustglobal-contact-btn{
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
    transition:all .3s ease;
}

.trustglobal-contact-btn:hover{
    background:#1d4ed8;
    color:#fff;
    transform:translateY(-2px);
}

.trustglobal-contact-btn span{
    font-size:18px;
    transition:.3s;
}

.trustglobal-contact-btn:hover span{
    transform:translateX(4px);
}

/* ==========================================
   WHY CHOOSE EE ELECTRONICS
========================================== */

.eewc-section{
    padding:90px 0;
    background:linear-gradient(180deg,#f5f7fb 0%,#ffffff 100%);
}

.eewc-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
}

.eewc-small-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:13px;
    font-weight:700;
    color:#4c82e8;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.eewc-small-title span{
    width:55px;
    height:2px;
    background:#4c82e8;
}

.eewc-main-title{
    font-size:52px;
    font-weight:800;
    color:#203b8f;
    margin-bottom:10px;
    line-height:1.1;
}

.eewc-sub-title{
    font-size:22px;
    font-weight:600;
      background: linear-gradient(
        90deg,
        rgba(32, 59, 143, 1) 0%,
        rgba(76, 130, 232, 1) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    display: inline-block;
    margin-bottom:20px;
}

.eewc-intro{
    max-width:760px;
    margin:auto;
    color:#667085;
    font-size:15px;
    line-height:1.8;
}

.eewc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.eewc-card{
    background:#fff;
    border:1px solid #e5eaf3;
    border-radius:12px;
    padding:30px;
    transition:all .3s ease;
}

.eewc-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.eewc-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f2f6fd;
    border: 1px solid #e6edf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 18px;
    color: #4C82E8;
}

.eewc-card h3{
    font-size:20px;
    font-weight:700;
    color:#1f3173;
    line-height:1.4;
    margin-bottom:18px;
    position:relative;
    padding-bottom:12px;
}

.eewc-card h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    background:#4c82e8;
    border-radius:20px;
}

.eewc-card p{
    font-size:14px;
    color:#667085;
    line-height:1.8;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .eewc-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .eewc-main-title{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:768px){

    .eewc-grid{
        grid-template-columns:1fr;
    }

    .eewc-main-title{
        font-size:34px;
    }

    .eewc-sub-title{
        font-size:18px;
    }

    .eewc-card{
        padding:24px;
    }

    .eewc-small-title span{
        width:35px;
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .eewc-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .eewc-title{
        font-size:42px;
    }
}

@media(max-width:768px){

    .eewc-grid{
        grid-template-columns:1fr;
    }

    .eewc-title{
        font-size:34px;
    }

    .eewc-subtitle{
        font-size:18px;
    }

    .eewc-card{
        padding:24px;
    }
}

/* ======================
   Responsive
====================== */

@media(max-width:768px){

    .trustglobal-contact-wrapper{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
    }

    .trustglobal-contact-left{
        flex-direction:column;
        gap:15px;
    }

    .trustglobal-contact-text h3{
        font-size:20px;
    }

    .trustglobal-contact-btn{
        width:100%;
        justify-content:center;
    }
}
.cert-wrapper{
    display:flex;
    align-items:center;
    gap:15px;
}

.cert-viewport{
    overflow:hidden;
    width:100%;
}

.cert-track{
    display:flex;
    transition:transform 0.6s ease;
}

.cert-card{
    min-width:240px;
    height:170px;
    margin:0 12px;
    border-radius:18px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.cert-card:hover{
    transform:scale(1.05);
}

.cert-card img{
    /*width:85%;*/
    /*height:85%;*/
    object-fit:contain;
    aspect-ratio: 2 / 1;
}

/* buttons NEW STYLE */
.cert-prev, .cert-next{
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#3A449C;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

/* Mobile Menu Button */
.menu-toggle{
display:none;
font-size:28px;
color:#3e4ea2;
cursor:pointer;
}



/* RESPONSIVE */

@media(max-width:768px){

.ee-banner-content h1{
font-size:42px;
}

.ee-banner-content p{
font-size:16px;
}

.ee-banner-buttons{
flex-direction:column;
align-items:center;
}

.menu-toggle{
display:block;
}

.nav-links {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
flex-direction: column;
align-items: flex-start;
padding: 20px;
display: none;
}

.nav-links.active {
 display:flex; 
}

.nav-products-wrapper:hover .mega-menu {
display: none;
}

.nav-products-wrapper.active .mega-menu {
display: block;
height: 350px;
overflow: auto;
border-radius: 5px;
}

.about-accent-card {
display: none;  
}
.reveal-left.visible {
width: 90%;    
}

.about-feature {
padding: 12px;    
}

.about-features {
    gap: 5px;    
}
.mega-menu{
    width:363px !important;
    left:0px;
}

}


/*priyanka Code 08-06-2026 */

    /* GLOBAL PRODUCT PAGE STYLE */
   
    .section {
        padding: 80px 0;
    }
    /* PRODUCT TOP SECTION */
    .product-top {
        background: #fff;
        padding: 30px 0;
    }
    .product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        /*align-items: center;*/
    }
    .product-image {
        background: #fff;
        border-radius: 18px;
        padding: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .product-image img {
        width: 100%;
        border-radius: 12px;
    }
    /*  PRODUCT INFO  */
   .product_info{
      padding:10px 0px; 
   }
    .product-title {
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    .product-desc {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .product-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    .meta-box {
        background: #f1f3f9;
        padding: 6px 16px;
        border-radius: 10px;
        font-size: 13px;
    }
    /* CTA BUTTONS (NO CART) */
    .btn-inquiry {
        margin-top:10px;
        display: inline-block;
        padding: 10px 20px;
        background: #3a449c;
        color: #fff;
        font-size: 14px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        margin-right: 10px;
    }
    .btn-whatsapp {
        display: inline-block;
        padding: 10px 20px;
        background: #25d366;
        color: #fff;
        font-size: 14px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
    }
    /* PRODUCT DETAILS SECTION */
    .product-details {
        background: #fff;
        margin-top: 30px;
        padding: 60px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }
    .section-title {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #111;
    }
    .spec-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .spec-item {
        background: #f7f9fc;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 14px;
        color: #333;
    }
    /*  RESPONSIVE */
    @media (max-width: 992px) {
        .product-grid {
            grid-template-columns: 1fr;
        }
        .spec-list {
            grid-template-columns: 1fr;
        }
        .related-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    @media (max-width: 600px) {
        .related-grid {
            grid-template-columns: 1fr;
        }
        .product-details {
            padding: 25px;
        }
        .product-grid{
          gap:10px  
        }
    }

.pp{
    width:260px;
}
.section_down_slider{
    background: var(--primary-deeper);
    padding:20px;
}

.product-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin:40px 0;
}

.tab-btn{
  padding:12px 24px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  background:#f3f4f6;
  color:#333;
  font-weight:600;
  transition:.3s;
}

.tab-btn.active{
  background:#598fd0;
  color:#fff;
}

.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}


/* ===========================
   PRODUCT SLIDER
=========================== */

.featured-grid{
    display:flex !important;
    gap:25px;
    overflow-x:hidden;
    scroll-behavior:smooth;
    padding:10px 5px 25px;
}


.feat-card{
    min-width:330px;
    flex:0 0 330px;
}


/* arrows */

.slider-controls{
    width:100%;
    display:flex;
    justify-content:center;   /* center me aa jayega */
    align-items:center;
    gap:15px;
    margin:25px 0;
}


.slider-controls button{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#38449b;
    color:#fff;
    font-size:22px;
    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
}


.slider-controls button:hover{
    background:#111;
    transform:scale(1.1);
}

/* hide scrollbar */

.featured-grid::-webkit-scrollbar{
    display:none;
}



/* Mobile */

@media(max-width:768px){

.featured-grid{
    overflow-x:hidden;
}


.feat-card{

    min-width:280px;
    flex:0 0 280px;

}

}

/* Tabs Fix */

.product-tabs{
    position:relative;
    z-index:5;
}


.tab-content{
    display:none;
}


.tab-content.active{
    display:block;
}


.featured-grid{
    display:flex !important;
}
.feat-card-img img{
    width:100%;
}


/* =====================================================
   SIRF YE 3 @media BLOCKS APNI <style> MEIN REPLACE KARO
   (jo already @media (max-width:1200px), 900px, 600px hain)
===================================================== */

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid   { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .navbar        { padding: 0px; }
  .nav-links     { display: none; }
  .hero-content  { grid-template-columns: 1fr; gap: 48px; padding: 120px 24px 60px; }
  .hero-visual   { display: none; }
  .hero-stats    { gap: 24px; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .container     { padding: 0 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* BRANDS FIX — 3 columns on tablet, NO overflow */
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .brand-card {
    overflow: hidden;
    min-width: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  .brand-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .brand-card p  { font-size: 12px; }
  .brand-card h5 { font-size: 11px; }

  .cert-grid     { grid-template-columns: repeat(2, 1fr); }
  .nav-top-bar   { display: none; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .hero-stats    { flex-direction: column; gap: 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions  { flex-direction: column; align-items: flex-start; }

  /* BRANDS FIX — 2 columns on mobile, NO overflow */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .brand-card {
    overflow: hidden;
    min-width: 0;
    padding: 8px;
    box-sizing: border-box;
    aspect-ratio: auto;
    min-height: 90px;
  }
  .brand-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .brand-card p  { font-size: 11px; }
  .brand-card h5 { font-size: 10px; }
}

/* EXTRA SMALL — 400px se chhota */
@media (max-width: 400px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .brand-card {
    padding: 6px;
    min-height: 80px;
  }
}

  .email-link {
    color: inherit;
    text-decoration: none;
}
.email-link a{
    color: inherit;
    text-decoration: none;
}
.email-link:hover {
    text-decoration: underline;
}