* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* ===== Navbar ===== */
.am-navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.am-container {
  max-width: 1400px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
.am-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.am-logo-box {
  background: #0b57d0;
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.am-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

/* ===== Links ===== */
.am-nav-links {
  display: flex;
  gap: 25px;
}

.am-nav-links a {
  text-decoration: none;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.am-nav-links a:hover,
.am-nav-links a.active {
  color: #0b57d0;
}

/* ===== Buttons ===== */
.am-nav-actions {
  display: flex;
  gap: 12px;
}

.am-mobile-actions .am-call-btn {
  padding: 9px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.am-call-btn {
  padding: 9px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.am-call-btn:hover {
  background: #f3f4f6;
}

.am-mobile-actions .am-whatsapp-btn {
  background: #16a34a;
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}



.am-whatsapp-btn {
  background: #16a34a;
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.am-whatsapp-btn:hover {
  background: #12803a;
}

/* ===== Mobile Toggle ===== */
.am-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.am-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 1000;
}


.am-mobile-menu.active {
  display: block;
}

.am-mobile-inner {
  background: #fff;
  width: 85%;
  max-width: 360px;
  height: 100%;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;

  position: absolute;
  right: -100%;           /* START hidden on right */
  top: 0;

  transition: right 0.35s ease-in-out;
}
.am-mobile-menu.active .am-mobile-inner {
  right: 0;               /* SLIDE IN from right */
}


.am-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.am-mobile-inner a {
  display: block;
  text-decoration: none;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
}

.am-mobile-inner a.active {
  color: #0b57d0;
}

.am-mobile-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.am-call-btn.full,
.am-whatsapp-btn.full {
  justify-content: center;
  width: 100%;
}



/* Default navbar */
.am-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.35s ease;
}

/* On scroll effect */
.am-navbar.scrolled {
  background: rgba(255, 255, 255, 0.545);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}



.circle-icon-wrap {
  width: 58px;                 /* exact visual size */
  height: 58px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
  
}

.circle-icon-wrap i {
  font-size: 24px;
  color: #ffffff;
  margin-top: 8px;
}


.circle-icon-wrap {
  border: 1px solid rgba(255, 255, 255, 0.22);
}




/* ===== Responsive ===== */
@media (max-width: 992px) {
  .am-nav-links,
  .am-nav-actions {
    display: none;
  }

  .am-menu-toggle {
    display: block;
  }
}











.hero-wrap {
  position: relative;
  min-height: 100vh;
  background: url("background.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.hero-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(13, 78, 150, 0.8) 100%
  );
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
}

/* badge */
.hero-badge-pill {
  display: inline-block;
  background: #ffffff;
  color: #111827;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* heading */
.hero-heading {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-highlight {

  background: linear-gradient(
    90deg,
    #6fa8ff,
    #b8d9ff,
    #e6f1ff
  );

   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* paragraph */
.hero-description {
  margin-top: 18px;
  font-size: 26px;
  max-width: 820px;
  margin-inline: auto;
  color: #e5e7eb;
}

/* buttons */
.hero-cta-group {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.hero-btn-primary {
  background: #0b57d0;
  color: #ffffff;
}

.hero-btn-success {
  background: #16a34a;
  color: #ffffff;
}

/* features */
.hero-feature-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hero-feature-card {
  text-align: center;
}

.hero-feature-card i {
  font-size: 26px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-feature-card span {
  font-size: 14px;
  color: #d1d5db;
}

/* responsive */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 40px;
  }
  .hero-wrap{
    min-height: 160vh;
  }

  .hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }
}










.ix-info-wrap {
  padding: 80px 20px;
  background-color: #ffffff;
}

.ix-grid-holder {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

/* LEFT SIDE */
.ix-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #dbe6f3;
  border-radius: 20px;
  font-size: 13px;
  color: #0a4fa3;
  margin-bottom: 18px;
}

.ix-heading {
  font-size: 35px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 20px;
}

.ix-para {
  font-size: 19px;
  color: #5f6f82;
  line-height: 1.8;
  margin-bottom: 18px;
}

.ix-action-row {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.ix-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.ix-btn-main {
  background-color: #004c97;
  color: #ffffff;
}

.ix-btn-outline {
  border: 1px solid #cfd9e6;
  color: #1f2d3d;
}

/* RIGHT SIDE */
.ix-card-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.ix-feature-box {
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid #e1e9f2;
  border-radius: 14px;
  background-color: #ffffff;
}

.ix-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: #004c97;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

.ix-feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2d3d;
}

.ix-feature-text span {
  font-size: 14px;
  color: #0a4fa3;
  display: block;
  margin-bottom: 8px;
}

.ix-feature-text p {
  font-size: 15px;
  color: #5f6f82;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ix-grid-holder {
    grid-template-columns: 1fr;
  }
  .ix-info-wrap{
    padding: 40px 20px;
  }

  .ix-heading {
    font-size: 32px;
  }

  .ix-action-row {
    flex-direction: column;
    align-items: flex-start;
  }
}











.pm-section {
  background: #f3f6f9;
  padding: 80px 20px;
}

.pm-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.pm-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #d7e3f0;
  border-radius: 20px;
  font-size: 13px;
  color: #0a4fa3;
  background: #fff;
  margin-bottom: 16px;
}

.pm-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 12px;
}

.pm-subtext {
  font-size: 16px;
  color: #6b7c93;
  max-width: 680px;
  margin: 0 auto 50px;
}

.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.pm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  border: 1px solid #e3ebf3;
  transition: all 0.3s ease;
}

.pm-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pm-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #364049;
}
.pm-card:hover h3 {
  color: #006c9c;
}

.pm-stock {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 14px;
  background: #eef2f6;
  color: #1f2d3d;
}

.pm-card p {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* BUTTON */
.pm-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pm-btn:hover {
  background: #006c9c;
  color: #ffffff;
  border-color: #006c9c;
}

.pm-btn.active {
  background: #006c9c;
  color: #ffffff;
  border-color: #006c9c;
}

/* VIEW ALL */
.pm-view-all {
  display: inline-block;
  margin-top: 50px;
  background: #004c97;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.pm-view-all:hover {
  background: #003b75;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pm-section{
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .pm-heading {
    font-size: 28px;
  }

  .pm-grid {
    grid-template-columns: 1fr;
  }
}










.facility-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 16px;
  text-align: center;
}

.facility-title {
  font-size: 38px;
  color: #0f172a;
}

.facility-subtitle {
  margin-top: 10px;
  margin-bottom: 40px;
  color: #64748b;
}

.facility-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.facility-track {
  display: flex;
  transition: transform 0.6s ease;
}

.facility-slide {
  min-width: 100%;
  position: relative;
}

.facility-slide img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.facility-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.facility-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 18px;
}

.facility-btn:hover {
  background: #fff;
}

.facility-btn.prev {
  left: 14px;
}

.facility-btn.next {
  right: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .facility-title {
    font-size: 26px;
  }
  .facility-section{
    margin: 20px auto;
  }

  .facility-slide img {
    height: 260px;
  }
  .facility-btn{
    height: 30px;
    width: 30px;
  }
  .facility-caption{
    font-size: 18px;
  }

}







.ind-sec {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 16px;
  text-align: center;
}

.ind-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}

.ind-title {
  font-size: 42px;
  margin-bottom: 12px;
  color: #364049;
}

.ind-sub {
  color: #64748b;
  margin-bottom: 50px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 42px 20px;
  transition: all 0.35s ease;
  cursor: pointer;
  color: #364049;
}

.ind-card:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 40px rgba(0, 60, 160, 0.15);
}

.ind-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #0b4da2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-icon i {
  color: #ffffff;
  font-size: 26px;
}

.ind-card h4 {
  font-size: 18px;
}

.ind-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 12px 22px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ind-btn:hover {
  background: #0b4da2;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-sec{
    margin: 40px auto;
  }
}

@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-title {
    font-size: 28px;
  }
}










.why-section {
  width: 100%;
  padding: 100px 16px;
  background: linear-gradient(
    135deg,
    #1f2933 0%,
    #2f3e4c 45%,
    #0b4da2 100%
  );
  color: #ffffff;
}

.why-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-size: 40px;
  margin-bottom: 14px;
}

.why-sub {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 70px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 70px;
}

.why-item h4 {
  font-size: 20px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ICON */
.why-icon {
  width: 72px;
  height: 72px;
  margin: auto;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* BUTTONS */
.why-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: #ffffff;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}



/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-title {
    font-size: 30px;
  }

  .why-sub {
    font-size: 16px;
  }
}







.cta-section {
  padding: 100px 16px;
  background: #f6f7f9;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 50px;
}

/* GRID */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

/* CARD */
.cta-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

}
.cta-card:hover {
    transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(0,0,0,0.05);

}

.cta-card h4 {
  font-size: 20px;
  margin-top: 20px;
}

.cta-card p {
  color: #64748b;
  margin: 10px 0 24px;
}

/* ICON */
.cta-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cta-icon.call {
  color: #003f88;
}

.cta-icon.whatsapp {
  color: #1da851;
}

/* BUTTONS */
.cta-btn {
  display: block;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.call-btn {
  background: #003f88;
}

.wa-btn {
  background: #1da851;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-section{
    padding: 40px 16px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}









.footer {
  background: #3b454e;
  color: #ffffff;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* BRAND */
.brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-badge {
  background: #0b4da2;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.brand h3 {
  font-size: 22px;
}

.brand p {
  line-height: 1.7;
  opacity: 0.9;
}

.brand-icons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.brand-icons a {
  width: 40px;
  height: 40px;
  background: #2f3942;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.95;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}

/* ICON LIST */
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-list i {
  color: #0b4da2;
  margin-top: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
    gap: 10px;
  }
}










.about-hero {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    135deg,
    #1f2933 0%,
    #2f3e4c 45%,
    #0b4da2 100%
  );
}

.about-hero-inner {
  max-width: 900px;
  padding: 0 20px;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero {
    min-height: 260px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 26px;
  }
}









.legacy-wrap {
  padding: 80px 20px;
}

.legacy-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.legacy-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.legacy-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #4b5563;
}

/* RIGHT CARD */
.legacy-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  background: #ffffff;
}

.legacy-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
}

/* FACT LIST */
.facts-list {
  list-style: none;
}

.facts-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #4b5563;
}

.facts-list i {
  font-size: 18px;
  color: #2563eb; /* same blue tone as screenshot */
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .legacy-inner {
    grid-template-columns: 1fr;
  }
  .legacy-wrap{
    padding: 40px 20px;
  }

  .legacy-card {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .legacy-text h2 {
    font-size: 28px;
  }

  .legacy-card h3 {
    font-size: 22px;
  }

  .facts-list li {
    font-size: 15px;
  }
}










.ldr-section {
  background: #f3f6f9;
  padding: 90px 20px;
  text-align: center;
}

.ldr-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.ldr-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.ldr-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 50px;
}

/* CARD */
.ldr-card {
  background: #ffffff;
  max-width: 520px;
  margin: auto;
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* ICON */
.ldr-icon {
  width: 90px;
  height: 90px;
  background: #0b4ea2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.ldr-icon i {
  font-size: 36px;
  color: #ffffff;
}

/* TEXT */
.ldr-name {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.ldr-role {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* BADGE */
.ldr-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  background: #eef2f6;
  color: #111827;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .ldr-title {
    font-size: 28px;
  }
  .ldr-section{
    padding: 40px 20px;
  }

  .ldr-subtitle {
    font-size: 16px;
  }

  .ldr-card {
    padding: 40px 20px;
  }
}










.bizinfo-section {
  padding: 80px 20px;
  background: #ffffff;
}

.bizinfo-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.bizinfo-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

/* GRID */
.bizinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.bizinfo-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  background: #ffffff;
}

.bizinfo-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 18px;
}

/* TAGS */
.bizinfo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bizinfo-tags span {
  padding: 6px 14px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-size: 14px;
  color: #374151;
  background: #ffffff;
}

/* GST TEXT */
.bizinfo-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 10px;
}

/* BANK */
.bizinfo-bank {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.bizinfo-bank i {
  font-size: 20px;
  color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .bizinfo-grid {
    grid-template-columns: 1fr;
  }
  .bizinfo-section{
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .bizinfo-title {
    font-size: 28px;
  }

  .bizinfo-card {
    padding: 24px;
  }
}










.qs-section {
  background: #f3f6f9;
  padding: 90px 20px;
}

.qs-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.qs-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.qs-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 55px;
}

/* GRID */
.qs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.qs-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 50px 30px;
}

/* ICON */
.qs-icon {
  margin-bottom: 22px;
}

.qs-icon i {
  font-size: 48px;
  color: #0b4ea2; /* exact blue tone */
}

/* TEXT */
.qs-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.qs-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .qs-grid {
    grid-template-columns: 1fr;
  }
  .qs-section{
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .qs-title {
    font-size: 28px;
  }

  .qs-subtitle {
    font-size: 16px;
  }

  .qs-card {
    padding: 40px 20px;
  }
}













.contact-hero {
  min-height: 260px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* GRADIENT MATCHING SCREENSHOT */
  background: linear-gradient(
    90deg,
    #2b333a 0%,
    #3a4a58 40%,
    #0b4ea2 100%
  );
}

/* CONTENT */
.contact-hero-content {
  padding: 20px;
}

.contact-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-hero-content p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 220px;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 200px;
  }

  .contact-hero-content h1 {
    font-size: 28px;
  }
}











.contact-info-section {
  padding: 80px 20px;
}

.contact-info-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 35px;
}

.info-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
}

/* ITEM */
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 4px;
}

.info-item small {
  font-size: 13px;
  color: #6b7280;
}

/* ICON */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon.blue {
  background: #0b4ea2;
  color: #ffffff;
}

.icon.green {
  background: #16a34a;
  color: #ffffff;
}

.icon i {
  font-size: 18px;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #0b4ea2;
  color: #0b4ea2;
  text-decoration: none;
}

.btn-green {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 8px;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-info-container {
    grid-template-columns: 1fr;
  }
  .contact-info-section{
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .info-card {
    padding: 25px;
  }
}









.assist-section {
  background: #f3f6f9;
  padding: 90px 20px;
}

.assist-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.assist-title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.assist-subtitle {
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */
.assist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.assist-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 45px 30px;
}

/* ICON */
.assist-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assist-icon.blue {
  color: #0b4ea2;
}

.assist-icon.green {
  color: #16a34a;
}

.assist-icon i {
  font-size: 34px;
}

/* TEXT */
.assist-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.assist-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 22px;
}

/* BUTTONS */
.btn-blue,
.btn-green-1 {
  display: block;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.btn-blue {
  background: #0b4ea2;
}

.btn-green-1 {
  background: #16a34a;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .assist-grid {
    grid-template-columns: 1fr;
  }
  .assist-section{
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .assist-title {
    font-size: 26px;
  }

  .assist-subtitle {
    font-size: 15px;
  }

  .assist-card {
    padding: 35px 20px;
  }
}











.company-section {
  padding: 80px 20px;
  background: #ffffff;
}

.company-container {
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.company-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 45px;
  background: #ffffff;
}

/* TITLE */
.company-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 35px;
}

/* GRID */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* COLUMN */
.company-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 18px;
}

.company-col p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.6;
}

.company-col strong {
  color: #111827;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .company-card {
    padding: 35px 30px;
  }
  .company-section{
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .company-title {
    font-size: 24px;
  }

  .company-card {
    padding: 30px 20px;
  }
}









.products-hero {
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Same gradient style as screenshot */
  background: linear-gradient(
    90deg,
    #2b333a 0%,
    #3a4a58 45%,
    #0b4ea2 100%
  );
}

/* CONTENT */
.products-hero-inner {
  padding: 20px;
}

.products-hero-inner h1 {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.products-hero-inner p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-hero {
    min-height: 220px;
  }

  .products-hero-inner h1 {
    font-size: 34px;
  }

  .products-hero-inner p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .products-hero {
    min-height: 200px;
  }

  .products-hero-inner h1 {
    font-size: 28px;
  }
}








/* DROPDOWN ANIMATION */
.quote-dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
}

.product-card.active .quote-dropdown {
  max-height: 240px;
  opacity: 1;
}


.quote-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
}

.quote-dropdown a:last-child {
  border-bottom: none;
}

.quote-dropdown a i {
  color: #0b4ea2;
}

.quote-dropdown a:hover {
  background: #e5e7eb;
}






.product-section {
  padding: 80px 20px;
}

.product-container {
  max-width: 1200px;
  margin: auto;
}

.product-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.product-subtitle {
  text-align: center;
  font-size: 17px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  background: #fff;
}

.stock {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 20px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #364049;
}

.product-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 15px;
}

.product-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.product-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tags span {
  border: 1px solid #d1d5db;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 12px;
}


 .btn-primary-1 {
  flex: 1;
  background: #0b4ea2;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #d1d5db;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-section{
    padding: 40px 20px;
  }
}







.custom-cta {
  background: #f3f6f9;
  padding: 80px 20px;
  text-align: center;
}

.custom-cta-inner {
  max-width: 900px;
  margin: auto;
}

/* TEXT */
.custom-cta h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.custom-cta p {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.cta-btn.blue {
  background: #0b4ea2;
}

.cta-btn.green {
  background: #16a34a;
}

.cta-btn i {
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .custom-cta h2 {
    font-size: 26px;
  }
  .custom-cta{
    padding: 40px 20px;
  }

  .custom-cta p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}