/* ===== Ansh Automation - Static Stylesheet ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --industrial: #0f172a;
  --industrial-light: #1e293b;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;
  --highlight: #fbbf24;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --gradient-primary: linear-gradient(135deg, #2563eb, #3b82f6);
  --gradient-industrial: linear-gradient(135deg, #0f172a, #1e293b);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:var(--foreground);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:'Poppins','Inter',sans-serif;font-weight:700;line-height:1.2;color:var(--foreground)}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.75rem,4vw,2.5rem)}
h3{font-size:1.25rem}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}
.section-muted{background:var(--muted)}
.section-dark{background:var(--gradient-industrial);color:var(--white)}
.section-dark h1,.section-dark h2,.section-dark h3{color:var(--white)}
.text-center{text-align:center}
.grid{display:grid;gap:1.5rem}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid-4{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.grid-6{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
.flex{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.justify-center{justify-content:center}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 1.75rem;border-radius:8px;font-weight:600;font-size:1rem;cursor:pointer;border:2px solid transparent;transition:all .25s ease;white-space:nowrap}
.btn-primary{background:var(--gradient-primary);color:var(--white);box-shadow:var(--shadow)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn-outline{background:transparent;color:var(--white);border-color:var(--white)}
.btn-outline:hover{background:var(--white);color:var(--industrial)}
.btn-secondary{background:var(--white);color:var(--primary);border-color:var(--primary)}
.btn-secondary:hover{background:var(--primary);color:var(--white)}

/* Header */
.header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.logo{font-family:'Poppins',sans-serif;font-weight:700;font-size:1.4rem;color:var(--industrial)}
.logo span{color:var(--primary)}
.nav-links{display:flex;gap:1.75rem;list-style:none;align-items:center}
.nav-links a{font-weight:500;font-size:.95rem;color:var(--foreground);transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--primary)}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;font-size:1.6rem;color:var(--industrial)}

/* Hero */
.hero{position:relative;min-height:560px;display:flex;align-items:center;color:var(--white);overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,23,42,.92),rgba(15,23,42,.55))}
.hero-content{position:relative;z-index:1;max-width:780px;padding:5rem 0}
.hero-badge{display:inline-block;padding:.4rem 1rem;background:rgba(59,130,246,.2);color:#93c5fd;border-radius:999px;font-size:.85rem;font-weight:500;margin-bottom:1.25rem}
.hero h1{color:var(--white);margin-bottom:1rem}
.hero h1 .accent{background:linear-gradient(90deg,#60a5fa,#93c5fd);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero p{font-size:1.15rem;opacity:.85;margin-bottom:2rem;max-width:600px}
.page-hero{min-height:340px}
.page-hero .hero-content{text-align:center;margin:0 auto;padding:3.5rem 0}

/* Section heading */
.section-heading{text-align:center;margin-bottom:3rem}
.section-heading h2{margin-bottom:.75rem}
.section-heading p{color:var(--muted-foreground);max-width:640px;margin:0 auto}
.section-heading::after{content:'';display:block;width:60px;height:4px;background:var(--gradient-primary);border-radius:2px;margin:1rem auto 0}
.section-dark .section-heading p{color:rgba(255,255,255,.75)}

/* Cards */
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;transition:all .3s ease;height:100%;display:flex;flex-direction:column}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--primary)}
.card .icon{width:56px;height:56px;border-radius:14px;background:var(--gradient-primary);display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1.5rem;margin-bottom:1rem}
.card h3{margin-bottom:.6rem}
.card p{color:var(--muted-foreground);font-size:.95rem;flex-grow:1}
.card a.card-link{display:inline-block;margin-top:1rem;color:var(--primary);font-weight:600;font-size:.9rem}

/* Image + text */
.split{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2.5rem;align-items:center}
.split img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%;height:100%;max-height:480px;object-fit:cover}

/* Pills (industries, countries) */
.pill{display:inline-flex;align-items:center;gap:.5rem;padding:.6rem 1.1rem;background:var(--card);border:1px solid var(--border);border-radius:999px;font-size:.9rem;font-weight:500}
.pill .dot{color:var(--primary)}

/* Brands */
.brand{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:1.25rem;text-align:center;font-family:'Poppins',sans-serif;font-weight:700;color:var(--muted-foreground);transition:all .3s}
.brand:hover{color:var(--primary);border-color:var(--primary);transform:translateY(-2px)}

/* Testimonials */
.testimonial{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:1.75rem}
.testimonial .stars{color:var(--highlight);margin-bottom:.75rem}
.testimonial p{opacity:.85;margin-bottom:1rem;font-size:.95rem}
.testimonial .name{font-weight:600;font-size:.95rem}
.testimonial .role{font-size:.8rem;opacity:.6}

/* FAQ */
.faq{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-question{width:100%;text-align:left;padding:1.25rem 0;background:none;border:none;cursor:pointer;font-size:1.05rem;font-weight:600;color:var(--foreground);display:flex;justify-content:space-between;align-items:center;font-family:inherit}
.faq-question::after{content:'+';font-size:1.5rem;color:var(--primary);transition:transform .3s}
.faq-item.open .faq-question::after{content:'−'}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease;color:var(--muted-foreground)}
.faq-item.open .faq-answer{max-height:500px;padding-bottom:1.25rem}

/* Forms */
.form-grid{display:grid;gap:1rem;max-width:640px;margin:0 auto}
.form-grid input,.form-grid textarea,.form-grid select{width:100%;padding:.85rem 1rem;border:1px solid var(--border);border-radius:8px;font-family:inherit;font-size:1rem;background:var(--white);transition:border-color .2s}
.form-grid input:focus,.form-grid textarea:focus,.form-grid select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(37,99,235,.15)}
.form-grid textarea{min-height:140px;resize:vertical}
.form-success{display:none;background:#dcfce7;color:#166534;padding:1rem;border-radius:8px;margin-bottom:1rem;text-align:center;font-weight:500}
.form-success.show{display:block}

/* Contact info */
.contact-info{display:grid;gap:1rem}
.contact-info .item{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem;background:var(--card);border:1px solid var(--border);border-radius:var(--radius)}
.contact-info .item .icon{width:44px;height:44px;border-radius:10px;background:var(--gradient-primary);color:var(--white);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info .item h4{margin-bottom:.25rem;font-size:1rem}
.contact-info .item p{color:var(--muted-foreground);font-size:.95rem}

/* Floating buttons */
.floating-btn{position:fixed;bottom:1.5rem;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1.5rem;box-shadow:var(--shadow-lg);z-index:90;transition:transform .25s}
.floating-btn:hover{transform:scale(1.1)}
.float-call{left:1.5rem;background:var(--gradient-primary)}
.float-wa{right:1.5rem;background:#25D366}

/* Footer */
.footer{background:var(--gradient-industrial);color:var(--white);padding:4rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2.5rem;margin-bottom:2.5rem}
.footer h3,.footer h4{color:var(--white);margin-bottom:1rem}
.footer p,.footer li,.footer a{color:rgba(255,255,255,.75);font-size:.95rem}
.footer ul{list-style:none}
.footer ul li{margin-bottom:.5rem}
.footer ul li a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);padding-top:1.5rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:.85rem;color:rgba(255,255,255,.6)}
.footer-social{display:flex;gap:1rem}
.footer-social a:hover{color:var(--white)}

/* Animations */
.fade-up{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* Mobile */
@media (max-width: 860px){
  .nav-links{position:fixed;top:64px;right:0;left:0;background:var(--white);flex-direction:column;align-items:flex-start;padding:1.25rem 1.5rem;gap:1rem;border-bottom:1px solid var(--border);transform:translateY(-120%);transition:transform .3s ease;box-shadow:var(--shadow-lg)}
  .nav-links.open{transform:translateY(0)}
  .menu-toggle{display:block}
  .hero{min-height:480px}
  .hero-content{padding:3rem 0}
  .section{padding:3rem 0}
  .floating-btn{width:50px;height:50px;font-size:1.25rem}
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;              /* 🔥 gap kam */
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  height: 55px;          /* 🔥 icon bada */
  width: auto;
  object-fit: contain;
}

.logo span {
  margin-left: 2px;      /* thoda control spacing */
}

.logo .blue {
  color: #2f6fed;
}
.logo {
  gap: 2px;
}

.logo img {
  height: 70px;
}
/* SECTION */
.section {
  padding: 60px 0;
  background: #f8fafc;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading p {
  color: #6b7280;
  font-size: 15px;
}

/* GRID (3 + 3 layout) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

/* IMAGE */
.card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* TEXT */
.card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* LINK */
.card-link {
  font-size: 14px;
  color: #2f6fed;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* SECTION */
.why-section {
  padding: 70px 0;
  background: #f8fafc;
}

/* HEADING */
.why-heading {
  text-align: center;
  margin-bottom: 50px;
}

.why-heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.why-heading p {
  color: #6b7280;
  margin-top: 8px;
}

.underline {
  width: 50px;
  height: 3px;
  background: #2f6fed;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* MAIN LAYOUT */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.why-image img {
  width: 100%;
  border-radius: 16px;
}

/* BOX GRID */
.why-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* SINGLE BOX */
.why-box {
  text-align: center;
}

/* ICON */
.why-icon {
  width: 60px;
  height: 60px;
  background: #2f6fed;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 10px;
}

/* TEXT */
.why-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.why-box p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .why-boxes {
    grid-template-columns: 1fr;
  }
}
/* SECTION */
.testimonial-section {
  background: #f8fafc;   /* white issue fix */
  padding: 60px 0;
}

/* HEADING */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 30px;
  font-weight: 700;
}

.underline {
  width: 50px;
  height: 3px;
  background: #2f6fed;
  margin: 10px auto;
  border-radius: 10px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* STARS */
.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* NAME */
.testimonial-card h4 {
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* DROPDOWN FIX */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  
  min-width: 220px;              /* 🔥 width increase */
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;   /* 🔥 text break fix */
}

/* HOVER */
.dropdown-menu li:hover {
  background: #f1f5f9;
}
/* SECTION */
.about-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* CONTENT */
.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }
}
/* SECTION */
.service-list-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* ITEM */
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-bottom: 1px solid #e5e7eb;
  transition: 0.3s;
}

/* ICON */
.service-item .icon {
  width: 40px;
  height: 40px;
  background: #2f6fed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

/* TEXT */
.service-item h3 {
  font-size: 16px;
  margin-bottom: 3px;
}

.service-item p {
  font-size: 13px;
  color: #6b7280;
}

/* ARROW */
.service-item .arrow {
  font-size: 18px;
  color: #2f6fed;
  text-align: right;
}

/* HOVER */
.service-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}
/* SECTION */
.services-section {
  padding: 50px 0;
  background: #f8fafc;
}

/* ITEM */
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  transition: 0.3s;
}

/* ICON */
.service-icon {
  width: 45px;
  height: 45px;
  background: #2f6fed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}

/* CONTENT */
.service-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.service-content p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* BULLETS */
.service-content ul {
  padding-left: 0;
}

.service-content ul li {
  list-style: none;
  font-size: 13px;
  color: #2f6fed;
  margin-bottom: 4px;
}

/* RIGHT BUTTON */
.service-btn {
  width: 35px;
  height: 35px;
  background: #2f6fed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

/* HOVER */
.service-item:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 50px 1fr;
  }

  .service-btn {
    display: none;
  }
}
/* SECTION */
.services-cards {
  padding: 50px 0;
  background: #f8fafc;
}

/* GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

/* ICON */
.card-icon {
  width: 45px;
  height: 45px;
  background: #2f6fed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 12px;
}

/* TITLE */
.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* SECTION */
.benefits-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* HEADING */
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
}

.underline {
  width: 50px;
  height: 3px;
  background: #2f6fed;
  margin: 10px auto;
  border-radius: 10px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: auto;
}

/* ITEM */
.benefit-item {
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON STYLE */
.benefit-item::before {
  content: "✔";
  color: #2f6fed;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }
.hero-content {
  max-width: 700px;
  margin-left: 8%;
  padding-right: 20px;
}
/* ===== Catalogue Section ===== */
.catalogue-section {
  padding: 50px 0;
  background: #f5f6fa;
  font-family: Arial, sans-serif;
}

.catalogue-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* Tabs */
.catalogue-section .tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.catalogue-section .tab {
  padding: 8px 15px;
  border: 1px solid #3b5bdb;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  color: #3b5bdb;
  font-size: 14px;
  transition: 0.3s;
}

.catalogue-section .tab.active,
.catalogue-section .tab:hover {
  background: #3b5bdb;
  color: #fff;
}

/* List */
.catalogue-section .catalogue-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.catalogue-section .catalogue-item {
  background: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.catalogue-section .catalogue-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Left Content */
.catalogue-section .catalogue-item .left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.catalogue-section .catalogue-item h4 {
  margin: 0;
  font-size: 15px;
}

.catalogue-section .catalogue-item span {
  font-size: 12px;
  color: gray;
}

/* Download Button */
.catalogue-section .download-btn {
  background: #2f49d1;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.catalogue-section .download-btn:hover {
  background: #1c33a3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .catalogue-section .catalogue-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .catalogue-section .download-btn {
    align-self: flex-end;
  }
}
.catalogue-item {
  transition: all 0.3s ease;
}
.spare-section {
  padding: 40px 20px;
  background: #f8f9fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Info Bar */
.info-bar {
  display: flex;
  align-items: center;
  background: #eef2f7;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  gap: 15px;
}

.info-left {
  background: #2d6cdf;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.info-arrow {
  margin-left: auto;
  background: #2d6cdf;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
}

/* Image */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Text */
.card h3 {
  margin: 15px 0 8px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #2d6cdf;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media(max-width: 992px){
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.retrofit-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f6f9ff, #eef3fb);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.retrofit-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 25px;
}

/* Card */
.retro-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.retro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Large Card */
.large {
  grid-row: span 2;
}

/* Image */
.retro-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Content */
.retro-content {
  padding: 20px;
}

.retro-card h3 {
  font-size: 18px;
  margin: 12px 15px 5px;
}

.retro-card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px 15px;
}

/* Hover zoom effect */
.retro-card img {
  transition: 0.4s;
}

.retro-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 900px){
  .retrofit-grid {
    grid-template-columns: 1fr;
  }
}