/* =====================================================
   Realtech Scientronix System — style.css
   Font: DM Sans (Google Fonts)
   ===================================================== */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  color: #111827;
}

/* ── Color tokens ── */
:root {
  --navy:   #1B2A6B;
  --red:    #C0392B;
  --gray-bg:#EDEDED;
  --white:  #ffffff;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-wrapper {
  background: #F0F0F0;
  padding: 20px 16px 8px;
	position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-pill {
  background: var(--navy);
  border-radius: 60px;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  background: #fff;
  border-radius: 60px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-box {
  width: 34px;
  height: 34px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1;
}

.logo-text-realtech {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text-sub {
  font-size: 7.5px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 60px;
  font-size:16px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 0.2s;
}

.nav-links li a:hover { 
	background: rgba(255,255,255,0.9); 
		color:	#2E3092;		  
}

.nav-links li a.active {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border-radius: 60px;
  padding: 8px 18px;
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-phone:hover { background: #a93226; color: #fff; }

.btn-phone .phone-icon-circle {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:#fff;
  color:#2E3092;
  font-size: 20px;
}

/* Mobile menu */
.mobile-menu {
  max-width: 1200px;
  margin: 8px auto 0;
  background: var(--navy);
  border-radius: 20px;
  padding: 16px;
  display: none;
}

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

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu ul li a:hover { background: rgba(255,255,255,0.12); }
.mobile-menu ul li a.active { background: #fff; color: var(--navy); font-weight: 700; }

/* =====================================================
   HERO
   ===================================================== */
#home {
  background:#F0F0F0;
  /* min-height: calc(100vh - 96px); */
  display: flex;
  align-items: center;
  padding: 60px 24px;
  /* background-image:url(images/hero-banner-1.webp); */
	background-repeat:no-repeat;
	background-size:cover;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 20px;
  color: #55585B;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

/* .btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border-radius: 60px;
  padding: 10px 10px 10px 24px;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width:187px;
} */

.btn-red:hover { background: #a93226; color: #fff; transform: translateY(-1px); }

.btn-red .arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color:#2E3092;
  background-color:#fff;
}

.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-wrap img, .hero-image-wrap svg {
  width: 560px;
  /* height: 380px; */
  object-fit: contain;
  /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18)); */
  /* animation: floatUp 3.5s ease-in-out infinite; */
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* =====================================================
   STRENGTHS
   ===================================================== */
#strengths {
  background: #ffffff;
  padding: 72px 16px;
}

.strengths-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strength-card {
  background: #F0F0F0;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.strength-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.strength-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
.strength-card:hover::after { transform: scaleX(1); }

.strength-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0e6f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
font-size: 24px;
color:#2E3092;
}

.strength-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.strength-card p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   PRODUCT RANGE
   ===================================================== */
#products {
  background: #EFEFEF;
  padding: 72px 16px;
}

.section-heading { text-align: center; margin-bottom: 40px; }

.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.section-heading p {
  font-size: 22px;
  color: #55585B;
  margin: 0;
  font-weight:100;
}

.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}

.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }
.product-card.active { border-color: #2563EB; }

.product-img-area {
  background: #F0F0F0;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.product-img-area svg { width: 80%; height: 80%; }

.product-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #111827;
  margin: 0;
  line-height: 1.35;

}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  border-radius: 60px;
  padding: 6px 14px 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: fit-content;
  text-decoration: none;
}

.btn-view-more:hover { background: #a93226; color: #fff; }
.btn-view-more .vm-arrow {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color:#2E3092;
}

/* =====================================================
   ABOUT US
   ===================================================== */
#about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 1;
}

.about-left {
  flex: 1;
  padding: 64px 32px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left h2 {
  font-size:42px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.about-body {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  /* max-width: 500px; */
  margin-bottom: 28px;
  text-align: justify;
}

.about-body strong { color: #fff; font-weight: 700; }

.about-right {
  width: 42%;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-right::before {
  content: '';
  position: absolute;
  inset-y: 0; left: 0;
  width: 80px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
}

.about-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,42,107,0.28);
  z-index: 1;
}

.about-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #2d4ed8, #4f7ef7, #2d4ed8);
}

/* =====================================================
  scroolbar
   ===================================================== */
#scroll-bar{
	background-color:#fff;
	padding: 72px 16px;
}
.scroll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: #fff;
}

.scroll-head h2 {
  margin: 0;
  flex: 0 0 auto;
}

.scroll-head p {
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}
.scroll-container {
	background-color:#fff;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  /* scroll-behavior: smooth; */
  
  /* Visible scrollbar */
  scrollbar-width: none;
  
}

/* Chrome, Edge, Safari */
.scroll-container::-webkit-scrollbar {
	display:none;
}

.card {
  flex: 0 0 180px;
  /* height: 65px; */
  /* background: #EFEFEF; */
  color: #222;
  border: 2px solid #e5e5e5;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
	font-style: italic;
	padding:10px;
}

/* =====================================================
   CERTIFICATES
   ===================================================== */

#certificates {
  background: var(--gray-bg);
  padding: 72px 16px;
}

.certs-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cert-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  min-height: 180px;
  width: 280px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card.featured {
  width: 340px!important;
  padding: 20px;
  /* margin-top: -16px; */
  z-index: 2;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.cert-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cert-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.13); }
.cert-card:hover::after { transform: scaleX(1); }

.red-bar {
  width: 64px;
  height: 5px;
  background: var(--red);
  border-radius: 60px;
  margin: 36px auto 0;
}

/* =====================================================
   ENQUIRY
   ===================================================== */
#enquiry {
  background: #fff;
  padding: 55px 16px;
}

.enquiry-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.enquiry-inner h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.enquiry-inner .sub {
  font-size: 24px;
  color: #55585B;
  margin-bottom: 28px;
}

.enquiry-layout {
  display: flex;
  gap: 24px;
}

/* Contact info cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 307px;
  flex-shrink: 0;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s!important;
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #E8EAF6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.contact-card:hover .contact-icon { background: var(--navy); }
.contact-card:hover .contact-icon svg { stroke: #fff; }

.contact-card .c-label {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}

.contact-card .c-value {
  font-size: 15px;
  color: #595C5F;
  line-height: 1.55;
  margin: 0;
}
/* Form */
.form-panel {
  flex: 1;
  background: var(--navy);
  border-radius: 20px;
  padding: 32px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #111827;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  box-shadow: 0 0 0 2px var(--red);
}

.form-panel input::placeholder,
.form-panel textarea::placeholder { color: #9CA3AF; }

.form-panel select { color: #9CA3AF; -webkit-appearance: none; appearance: none; cursor: pointer; }

.form-panel textarea { resize: none; }

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

.form-single { margin-bottom: 14px; position: relative; }

.phone-required {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  pointer-events: none;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-single.with-icon { position: relative; }

/* =====================================================
   TRUSTED CLIENTS
   ===================================================== */
#clients {
  background: var(--gray-bg);
  padding: 72px 16px;
}

.clients-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-card {
  background: #fff;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 80px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  height:65px;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  border-color: rgba(27,42,107,0.2);
}
/* =====================================================
   FOOTER
   ===================================================== */
.footer-body {
  background: var(--navy);
  padding: 56px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px;
}

.footer-logo-pill {
  background: #fff;
  border-radius: 60px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo-pill .logo-box {
  width: 36px;
  height: 36px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: var(--navy);
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col-1{
	 font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
	padding-left:24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  width: fit-content;
}

.footer-links li a:hover { color: #fff; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #2A3A80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.contact-list .c-text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin-top: 4px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #2A3A80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover { background: #3A4A90; transform: translateY(-2px); }

.social-underline {
  height: 2px;
  width: 145px;
  background: rgba(255,255,255,0.55);
  border-radius: 60px;
}

.footer-bar {
  background: #C62828;
  padding: 12px 24px;
}

.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bar p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .nav-links, .btn-phone { display: none !important; }
  .hamburger-btn {
    display: flex !important;
  padding-left: 80px !important;
 }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

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

  .about-inner    { flex-direction: column; }
  .about-left     { padding: 48px 24px; }
  .about-right    { width: 100%; min-height: 260px; }

  .certs-row      { flex-direction: column; align-items: center; }
  .cert-card, .cert-card.featured { width: 90%; max-width: 340px; margin-top: 0; }

  .enquiry-layout { flex-direction: column; }
  .contact-cards  { width: 100%; }

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

@media (max-width: 640px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .clients-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 556px) {
.section-heading p{
  font-size: 16px;
}
.section-heading h2{
  font-size:32px;
}
.about-subtitle{
  font-size:16px;
}
.about-left h2{
  font-size:32px;
}
.enquiry-inner h2{
  font-size:32px;
}
.enquiry-inner .sub{
font-size: 16px;
}
.hero-heading{
  font-size:28px;
}
.hero-sub{
  font-size:16px;
}
	.footer-col-1{
		padding-left:0px;
	}
	#home{
		    padding: 50px 24px;
	}
	#strengths{
		padding: 50px 16px;
	}
	#products{
		    padding: 50px 16px;
	}
	#certificates{
		    padding: 50px 16px;
	}
	#enquiry{
		    padding: 50px 16px;
	}
	#clients{
		padding: 50px 16px;
	}
}
@media (max-width: 400px) {
#products .products-grid {
   grid-template-columns: 1fr; /* avoid squeeze/overflow */
 }
}
/* Hamburger hidden on desktop */
.hamburger-btn {
    display: none !important;
}

/* Show hamburger only on mobile */
@media (max-width: 1024px) {

    .hamburger-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 4px !important;
        background: transparent !important;
        border: none !important;
        position: relative;
        z-index: 99999;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hamburger-btn svg {
        display: block;
        width: 22px;
        height: 22px;
    }

    #iconMenu {
        display: block;
    }

    #iconClose {
        display: none;
    }
}
/* =====================================================
   HERO SLIDER
   ===================================================== */

#home {
  position: relative;
  background: #F0F0F0;

  display: flex;
  align-items: center;

  padding: 60px 24px;

  background-image: url("images/new-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */

  overflow: hidden;

  min-height: 620px;
}


/* =====================================================
   SLIDER CONTAINER
   ===================================================== */
.hero-slides {
  position: relative;
  width: 100%;
  min-height: 500px;
	top
}

/* =====================================================
   INDIVIDUAL SLIDE
   ===================================================== */

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transform: translateX(30px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;

  z-index: 1;
}


/* Active slide */

.hero-slide.active {
  opacity: 1;
  visibility: visible;

  transform: translateX(0);

  z-index: 2;
}


/* =====================================================
   HERO INNER
   ===================================================== */

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
/* =====================================================
   HERO CONTENT
   ===================================================== */
.hero-content {
  width: 100%;
  max-width: 650px;
}

/* =====================================================
   SMALL TITLE
   ===================================================== */
.hero-small-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* =====================================================
   HEADING
   ===================================================== */
.hero-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 18px;
}
/* =====================================================
   DESCRIPTION
   ===================================================== */
.hero-sub {
  font-size: 20px;
  color: #55585B;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 650px;
}
/* =====================================================
   BUTTON
   ===================================================== */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border-radius: 60px;
  padding: 10px 10px 10px 24px;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  width: 187px;
}

.btn-red:hover {
  background: #a93226;
  color: #fff;
  transform: translateY(-1px);
}

.btn-red .arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2E3092;
  background-color: #fff;
}
/* =====================================================
   HERO IMAGE
   ===================================================== */
.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.hero-image-wrap img,
.hero-image-wrap svg {

  width: 560px;
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

/* =====================================================
   IMAGE SLIDE ANIMATION
   ===================================================== */
.hero-slide.active .hero-image-wrap img {

  animation: heroImageIn 0.8s ease forwards;
}

@keyframes heroImageIn {

  0% {
    opacity: 0;

    transform:
      translateX(50px)
      scale(0.95);
  }

  100% {
    opacity: 1;

    transform:
      translateX(0)
      scale(1);
  }

}
/* =====================================================
   TEXT ANIMATION
   ===================================================== */

.hero-slide.active .hero-small-title {

  animation:
    heroTextIn 0.6s ease both;
}

.hero-slide.active .hero-heading {

  animation:
    heroTextIn 0.7s ease 0.1s both;
}

.hero-slide.active .hero-sub {

  animation:
    heroTextIn 0.7s ease 0.2s both;
}


.hero-slide.active .btn-red {

  animation:
    heroTextIn 0.7s ease 0.3s both;
}

@keyframes heroTextIn {

  from {
    opacity: 0;

    transform:
      translateY(25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

/* =====================================================
   SLIDER ARROWS
   ===================================================== */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  color: #2E3092;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition:
    all 0.25s ease;
}
.hero-arrow:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.hero-prev {
  left: 15px;
}

.hero-next {
  right: 15px;
}

/* =====================================================
   SLIDER INDICATORS
   ===================================================== */
.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 20;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #B8B8B8;
  cursor: pointer;
  transition: width 0.3s ease,
  background 0.3s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--red);
}

/* =====================================================
   TABLET
   ===================================================== */
@media (max-width: 991px) {
  #home {
    min-height: 600px;
    padding:50px 25px;
  }

  .hero-slides {
    min-height: 500px;
  }

  .hero-inner {

    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-image-wrap img {
    width: 450px;
    max-height: 400px;
  }

}
/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {
  #home {
    min-height: 700px;
    padding:40px 20px 70px;
  }

  .hero-slides {
    min-height: 590px;
  }

  .hero-slide {

    align-items: flex-start;
  }

  .hero-inner {

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
    min-height: 590px;
  }
	
  .hero-content {
    max-width: 100%;
    order: 1;
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        /* align-items: flex-start; */
  }
	
  .hero-small-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  } 
  .hero-heading {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 15px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 auto 22px;
    max-width: 560px;
  }

  .btn-red {
    /* margin: 0 auto; */
    justify-content: space-between;
  }

  .hero-image-wrap {
    order: 2;
    justify-content: center;
    height: 250px;
    width: 100%;
  }

  .hero-image-wrap img {
    width: 90%;
    max-width: 400px;
    max-height: 250px;
  }

  /* Arrows */
  .hero-arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 20px;
    transform: none;
    font-size: 13px;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }

  /* Indicators */
  .hero-indicators {
    bottom: 34px;
  }

}
/* =====================================================
   SMALL MOBILE
   ===================================================== */
@media (max-width: 480px) {
  #home {
    min-height: 680px;
	  /* background-image: none; */
    padding:30px 15px 65px;
  }

  .hero-slides {
    min-height: 580px;
  }

  .hero-inner {
    min-height: 520px;
    gap: 10px;
	  	  display:flex;
	  flex-direction:column-reverse;  }

  .hero-heading {
    font-size: 29px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-image-wrap {
    height: 220px;
  }

  .hero-image-wrap img {
    max-height: 220px;
	  padding-bottom:24px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .hero-prev {
    left: 12px;
  }
	
  .hero-next {
    right: 12px;
  }

}
/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {

  .hero-slide,
  .hero-slide.active .hero-image-wrap img,
  .hero-slide.active .hero-heading,
  .hero-slide.active .hero-sub,
  .hero-slide.active .btn-red {
  animation: none !important;
    transition: none !important;
  }
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    padding: 6px;
    margin: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 6px 8px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
@media (max-width: 1024px) {
.hero-heading{
		text-align:left;
		
	}
	.hero-sub{
		text-align:left;
	}
	  #iconMenu {
        display: block;
		  width: 22px;
    height: 22px;
    }

@media (max-width: 768px) {
    .mobile-menu .dropdown-menu {
        position: static !important;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        margin: 0;
        padding-left: 15px;
    }
}

/* product sub dropdown */
.product-dropdown {
    position: relative;
}

.product-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-arrow {
    transition: transform 0.3s ease;
}

.product-dropdown.open .product-arrow {
    transform: rotate(180deg);
}

/* Sub dropdown */
.product-dropdown .dropdown-menu {
    display: none;
    width: 280px;
}

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

@media (max-width: 768px) {
    .product-dropdown .dropdown-menu {
        position: static !important;
        width: 280px !important;
        max-width: 100%;
        margin-top: 5px;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
}
