/* ===== FONTS & VARIABLES ===== */
@font-face {
  font-family: "Open Sans";
  src: url("fonts/Open Sans/OpenSans-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Bitter";
  src: url("fonts/Bitter/Bitter-Regular.ttf") format("truetype");
}

/* @font-face {
  font-family: "Rufbrush";
  src: url("fonts/rufbrush_font.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
} */

:root {
  --dark-blue: #050b2c;
  --mid-blue: #0b1957;
  --accent-blue: #39c3ff;
  --light-blue: #e5f4ff;
  --white: #ffffff;
  --muted: #9ca3af;

  --heading: "Rufbrush", system-ui, -apple-system, sans-serif;
  --para: "Rufbrush", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--para);
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 80px;
  /* Space for fixed navbar */
}

/* ===== GLOBAL ELEMENTS ===== */
section {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-family: var(--heading);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-blue), #60a5fa);
  color: #020617;
  box-shadow: 0 0 30px rgba(57, 195, 255, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.btn.small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 38px rgba(57, 195, 255, 0.55);
}

.btn.ghost:hover {
  background: rgba(148, 163, 184, 0.12);
}

/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  height: 38px;
  background: rgba(15, 23, 42, 0.95);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.top-left span {
  margin-right: 1rem;
}

.top-left i {
  color: var(--accent-blue);
  margin-right: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  height: 80px;
  background: linear-gradient(to right,
      rgba(5, 10, 55, 0.98),
      rgba(8, 47, 73, 0.98));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  /* Removed sticky from here, moving to .site-header */
  z-index: 100;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.logo img {
  max-height: 150px;
  /* fits nicely inside 80px navbar */
  width: auto;
  /* keep aspect ratio */
  object-fit: contain;
  /* no squishing */
  display: block;

  background: transparent;
  padding: 4px 8px;
  border-radius: 10px;
  /* optional – gives soft corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* optional subtle lift */
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--heading);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0.9rem;
  color: #e5e7eb;
  position: relative;
}

.nav-links a span {
  color: var(--accent-blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue) !important;
}

.nav-cta:hover {
  background: var(--accent-blue);
  color: #020617 !important;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-family: var(--heading);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  position: relative;
  z-index: 51;
  /* stays on top */
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 100%;
  /* align right below button */
  left: 0;
  /* align directly under Products */
  background: #020617;
  border-radius: 12px;
  padding: 0.4rem 0;
  min-width: 230px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.75);
  display: none;
  z-index: 50;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: rgba(55, 65, 81, 0.65);
}

/* Hover behavior — fixes “disappearing” issue */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: all 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== HERO – FULL WIDTH BANNER ===== */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.hero.hero-banner {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  /* minus navbar */
  padding: 7rem 6% 5rem;
  display: flex;
  align-items: center;
  color: #ffffff;
  /* your banner image */
  background-image: url("img/NewBanner6.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(1.25) contrast(1.05);
}

/* dark blue overlay like the screenshot */
.hero-banner .hero-overlay {
  /* position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 11, 38, 0.85),
    rgba(6, 11, 38, 0.95)
  );
  mix-blend-mode: multiply;
  pointer-events: none; */
  display: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  z-index: 1;
  padding: 1.5rem 0;
}

/* small label above heading (reuse your existing style) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfdbfe;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.5);
  background: rgba(15, 23, 42, 0.85);
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
  margin-right: 8px;
}

/* main title */
.hero-title {
  font-family: var(--heading);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.hero-title-main {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
}

#experience {
  color: #3eddff;
  font-weight: 600;
  font-size: 1.35rem;
}

@media (max-width: 768px) {
  .hero-title-main {
    font-size: 2.4rem;
  }
}

/* cyan second line like the example */
.hero-highlight {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.6rem;
}

/* body copy */
.hero-description {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

/* buttons row – you already have .btn styles */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* RESPONSIVE HERO TWEAKS */
@media (max-width: 1024px) {
  .hero.hero-banner {
    padding: 6rem 6% 4rem;
    min-height: calc(100vh - 70px);
  }
}

@media (max-width: 768px) {
  .hero.hero-banner {
    padding: 5.5rem 1.6rem 3.5rem;
    align-items: flex-start;
    filter: brightness(1.25) contrast(1.05);
  }

  .hero-description {
    font-size: 0.95rem;
  }
}

/* ===== PRODUCT SLIDER ===== */
.slider {
  background: #020617;
  padding: 1.5rem 0 2.5rem;
}

.carousel-container {
  width: 94%;
  margin: 0 auto;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: radial-gradient(circle at top left, #1e293b, #020617 55%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.carousel-track {
  display: flex;
  align-items: center;
  animation: scroll 18s linear infinite;
}

.carousel-track img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 12px;
  flex-shrink: 0;
  filter: saturate(1.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.carousel-track img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.85);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== TIMELINE / WHY CHOOSE US ===== */
.choose {
  background: radial-gradient(circle at top,
      #0f172a,
      #020617 60%,
      #020617 100%);
  padding: 4rem 6% 4.5rem;
}

.timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline h3 {
  font-family: var(--heading);
  font-size: 1.7rem;
  text-align: center;
  color: #e5e7eb;
  margin-bottom: 3.5rem;
}

.time {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      var(--accent-blue),
      transparent);
  opacity: 0.55;
}

.timeline-item {
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.rectangle {
  width: 70px;
  height: 48px;
  background: radial-gradient(circle at top, var(--accent-blue), #2563eb);
  border-radius: 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  color: #020617;
  font-size: 1.3rem;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.5);
}

.desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* ===== PRODUCT CATEGORY GRID ===== */
/* ===== PRODUCT CATEGORY GRID ===== */
.products {
  position: relative;
  padding: 5rem 6% 4.5rem;
  text-align: center;
  color: #ffffff;

  /* Brighter background image + subtle dark tint */
  background-image:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.65), rgba(2, 6, 23, 0.8)),
    url("img/imagebanner.png");
  /* change path to your actual image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* keeps image fixed during scroll */
  background-attachment: fixed;

  /* make the image visibly lighter */
  filter: brightness(1.35) contrast(1.05);
  overflow: hidden;
}

.section-title {
  font-family: var(--heading);
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  font-size: 0.97rem;
  color: var(--muted);
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-card {
  background: radial-gradient(circle at top,
      rgba(39, 94, 201, 0.15),
      rgba(15, 23, 42, 0.95));
  border-radius: 20px;
  padding: 0.85rem 0.85rem 1.1rem;
  width: 230px;
  height: 260px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  transition: all 0.25s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: saturate(1.08);
  transition: transform 0.25s ease;
}

.product-name {
  font-family: var(--heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.6);
  border-color: rgba(57, 195, 255, 0.75);
}

.product-card:hover img {
  transform: scale(1.04);
}

/* ===== PRODUCT CATEGORY GRID ===== */
.products {
  position: relative;
  padding: 5rem 6% 4.5rem;
  text-align: center;
  color: #ffffff;

  /* Softer gradient + brighter exhaust image */
  background-image:
    radial-gradient(circle at top,
      rgba(15, 23, 42, 0.55),
      rgba(2, 6, 23, 0.75)),
    url("img/Background_Img.png");
  /* 👈 your image */

  background-repeat: no-repeat, no-repeat;
  background-position:
    center top,
    center 45%;
  background-size:
    cover,
    1100px auto;
  background-attachment: scroll, fixed;

  /* make the background more visible */
  filter: brightness(1.25) contrast(1.05);
  overflow: hidden;
}

/* ===== EVENTS ===== */

/* ===== FULL-WIDTH & TALLER UPCOMING EVENTS ===== */
.events {
  background: linear-gradient(135deg, #0b1957 0%, #1e3a8a 100%);
  padding: 6rem 0 7rem;
  /* 👈 increases top & bottom padding */
}

.events-inner {
  max-width: 100%;
  width: 100%;
  margin: 0;
  text-align: center;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.9),
      rgba(30, 64, 175, 0.85));
  padding: 3rem 6%;
  box-shadow: inset 0 0 60px rgba(15, 23, 42, 0.6);
}

.events_title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.events-inner p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

/* === Upcoming Events – Centered and Scaled Image === */
.events-image {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Optional: keeps vertical balance if more elements added */
}

.events-image img {
  width: 90%;
  /* Scales down image size */
  max-width: 600px;
  /* 👈 Decrease max size to make it smaller */
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
  object-fit: cover;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Optional hover effect for extra polish */
.events-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.85);
}

/* ===== ABOUT ===== */
.about {
  background: #f9fafb;
  color: #020617;
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  overflow-x: hidden;
}

.ab_img img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}

.ab_text h1 {
  font-family: var(--heading);
  font-size: 2rem;
  color: #0b1957;
  margin-bottom: 1rem;
}

.ab_text .para {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 620px;
}

.info-cards {
  margin: 1.6rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mis,
.goal {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.95rem 1.1rem 1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
  color: #4b5563;
}

.mis h3,
.goal h3 {
  font-family: var(--heading);
  font-size: 1rem;
  color: #0b1957;
  margin-bottom: 0.45rem;
}

.mis i,
.goal i {
  color: var(--accent-blue);
}

/* ===== UNIQUE SECTION ===== */
.unique-section {
  background: radial-gradient(circle at top, #0f172a, #020617 65%);
  padding: 5rem 6% 4.5rem;
}

.unique-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.unique-heading {
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 0.6rem;
}

.unique-subheading {
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.unique-box {
  background: radial-gradient(circle at top,
      rgba(37, 99, 235, 0.22),
      rgba(15, 23, 42, 0.98));
  border-radius: 20px;
  padding: 1.7rem 1.6rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.unique-box img {
  margin-bottom: 0.85rem;
}

.unique-box h3 {
  font-family: var(--heading);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.unique-box p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.unique-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.85);
  border-color: rgba(57, 195, 255, 0.85);
}

/* ===== CERTIFICATIONS ===== */
.cert {
  background: #020617;
  padding: 4.5rem 6%;
  text-align: center;
}

.cert_title {
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 2.2rem;
}

.cert-subtitle {
  margin-bottom: 2rem;
}

/* grid of certificate cards */
.cert_grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,
      minmax(0, 1fr));
  /* 2 in first row, 2 in second */
  gap: 2.2rem;
  justify-content: center;
}

/* individual certificate card */

/* responsive grid tweaks */
@media (max-width: 1024px) {
  .cert_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .cert_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

@media (max-width: 480px) {
  .cert_grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }
}

/* ===== PRODUCTS COPY SECTION ===== */
.products-copy {
  background: #020617;
  padding: 4rem 6% 4.5rem;
}

.products-copy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.products-copy-inner h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.products-copy-inner p {
  font-size: 0.98rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 3.4rem 6% 1.7rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3,
      minmax(0, 1fr));
  /* now only 3 equal columns */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  justify-content: space-between;
  /* evenly distribute columns */
}

/* only apply to the main logo */
.footer-logo {
  width: 280px;
  margin-bottom: 0.8rem;
  background: transparent;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* allow certification image to be larger */
.footer-certification img {
  width: 160px;
  /* ✅ control actual size here */
  height: auto;
  display: block;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.footer-certification img:hover {
  transform: scale(1.05);
}

.footer-col h3 {
  font-family: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--accent-blue);
}

/* Quick Links – vertical list */
.footer-col.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.quick-links ul li {
  margin-bottom: 0.45rem;
}

.footer-col.quick-links ul li a {
  display: block;
  /* override inline-block */
  color: #9ca3af;
  font-size: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-right: 0.5rem;
  color: #e5e7eb;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--accent-blue);
  color: #020617;
  border-color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-bottom a {
  color: var(--accent-blue);
}

.footer-certification {
  margin-top: 1.2rem;
}

.footer-certification img {
  max-width: 240px;
  /* was 180px — increased size */
  height: auto;
  display: block;
  background: #ffffff;
  padding: 8px 12px;
  /* more breathing room inside */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-certification img:hover {
  transform: scale(1.05);
}

.hero-badge {
  margin-bottom: 1rem;
}

/* ===== GLOBAL EXPORTS MAP ===== */
.exports {
  background: radial-gradient(circle at top, #020617, #020617 70%);
  padding: 4.5rem 6% 4.5rem;
  color: #ffffff;
}

.exports-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.exports-title {
  font-family: var(--heading);
  font-size: 2rem;
  text-align: center;
  color: var(--accent-blue);
  margin-bottom: 0.6rem;
}

.exports-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.exports-subtitle span {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Layout: map + text */
.exports-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Map wrapper card */
.map-wrapper {
  background: radial-gradient(circle at top, #0b1120, #020617 80%);
  border-radius: 22px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
}

/* World map container */
.world-map {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #020617;
}

.world-map img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* Pins (interactive) */
.country-pin {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/* Glowing dot */
.country-pin .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-blue);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.8);
  animation: export-pulse 1.8s infinite;
}

/* Tooltip bubble */
.country-pin .tooltip {
  position: absolute;
  left: 50%;
  bottom: 135%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.94);
  color: #e5e7eb;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.9);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.country-pin .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.94) transparent transparent transparent;
}

/* Hover state */
.country-pin:hover .tooltip {
  opacity: 1;
  transform: translate(-50%, -4px);
}

/* Pin positions (approximate) */
/* tweak these if your map proportions are different */
.country-pin.usa {
  top: 48%;
  left: 26%;
}

.country-pin.canada {
  top: 33%;
  left: 25%;
}

.country-pin.uk {
  top: 35%;
  left: 47.5%;
}

.country-pin.sweden {
  top: 28%;
  left: 52%;
}

.country-pin.poland {
  top: 34%;
  left: 54%;
}

.country-pin.algeria {
  top: 46%;
  left: 52%;
}

.country-pin.south-africa {
  top: 67%;
  left: 55%;
}

.country-pin.australia {
  top: 69%;
  left: 78%;
}

/* Exports info column */
.exports-info {
  padding: 1rem 0;
}

.exports-info h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: #e5e7eb;
}

.exports-info p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.exports-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.2rem;
}

.exports-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: #e5e7eb;
}

.exports-list .bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 0.4rem;
  background: radial-gradient(circle at center, var(--accent-blue), #60a5fa);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.exports-tagline {
  font-size: 0.88rem;
  color: #a5b4fc;
}

/* ===== ENHANCED TYPOGRAPHY FOR EXPORTS SECTION ===== */
.exports-info h3 {
  font-size: 1.6rem;
  /* increased from 1.2rem */
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.exports-info p {
  font-size: 1.05rem;
  /* was 0.9rem */
  line-height: 1.7;
  color: #d1d5db;
}

.exports-list li {
  font-size: 1rem;
  /* was 0.9rem */
  line-height: 1.8;
}

.exports-tagline {
  font-size: 1.05rem;
  /* was 0.88rem */
  color: #a5b4fc;
  font-weight: 500;
}

/* Pulse animation */
@keyframes export-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(56, 189, 248, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* ===== RESPONSIVE – EXPORTS ===== */
@media (max-width: 1024px) {
  .exports-layout {
    grid-template-columns: 1fr;
  }

  .exports-info {
    text-align: center;
  }

  .exports-list {
    justify-content: center;
  }

  .exports-list li {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .exports {
    padding: 3.2rem 1.6rem 3.4rem;
  }

  .exports-list {
    grid-template-columns: 1fr;
  }

  .world-map {
    border-radius: 16px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .hero-media {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .unique-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
    /* Adjust for smaller mobile navbar */
  }

  .top-bar {
    display: none;
  }

  .navbar {
    height: 70px;
    padding: 0 1.4rem;
  }

  /* .logo img {
    width: 150px;
  } */

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: #020617;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.6rem 1.8rem;
    gap: 0.35rem;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding-left: 0.6rem;
  }

  .dropdown-content a {
    padding-left: 0.2rem;
  }

  .hero {
    padding: 3.2rem 1.4rem 2.6rem;
  }

  .text-rotator {
    height: 90px;
  }

  .carousel-container {
    width: 94%;
  }

  .time {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    max-width: 260px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unique-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 4rem 1.6rem;
  }

  .unique-section,
  .products,
  .choose,
  .events,
  .products-copy,
  .cert {
    padding: 3.2rem 1.6rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* ================= EXTRA HOVER JUICE ================= */

/* 1) NAV LINKS – soft glow + lift */
.nav-links a {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(56, 189, 248, 0.22),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:hover::before {
  opacity: 1;
}

/* 2) HERO BUTTONS – subtle scale + glow ring */
.btn.primary {
  position: relative;
  overflow: visible;
}

body:not(.terms-page) .btn.primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(148, 163, 184, 0);
  box-shadow: 0 0 0 rgba(56, 189, 248, 0);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.btn.primary:hover::after {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.7);
}

/* 3) HERO IMAGE CARD – slight tilt on hover */
.hero-banner-frame {
  transform-origin: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-banner-frame:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
}

/* 4) TIMELINE ITEMS – pop the step + text color */
.timeline-item {
  transition: transform 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-item:hover .rectangle {
  background: radial-gradient(circle at top, #39c3ff, #60a5fa);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.75);
}

.timeline-item:hover .desc {
  color: var(--accent-blue);
}

/* 5) ABOUT CARDS – lift & border highlight */
.mis,
.goal {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mis:hover,
.goal:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35);
}

/* 6) PRODUCT CARDS – inner shine sweep */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 180%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0));
  transform: translateX(0);
  opacity: 0;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
  animation: card-shine 0.7s forwards;
}

@keyframes card-shine {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(260%);
  }
}

/* 7) UNIQUE BOXES – slight scale on hover for more depth */
.unique-box:hover {
  transform: translateY(-8px) scale(1.01);
}

/* 8) FOOTER LINKS – underline slide in */
.footer-col a {
  position: relative;
  display: inline-block;
  line-height: 1.6;
  /* optional for better spacing */
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* 👈 was -2px */
  width: 0;
  height: 1px;
  background: var(--accent-blue);
  transition: width 0.25s ease;
}

.footer-col a:hover::after {
  width: 20%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--accent-blue);
  font-size: 1.1rem;
  /* bigger icon */
  transition: all 0.25s ease;
}

.social-links a i {
  line-height: 1;
  /* no weird vertical misalignment */
}

.social-links a:hover {
  background: var(--accent-blue);
  color: #020617;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.h.hero-title {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero-title::before {
  content: "";
  position: absolute;
  inset: 20% -12px -5px;
  /* top, left/right, bottom */
  background: linear-gradient(to right,
      rgba(15, 23, 42, 0.9),
      rgba(15, 23, 42, 0.4));
  z-index: -1;
  border-radius: 999px;
}

/* Contact column layout */
.footer-col.contact-col p {
  margin-bottom: 0.35rem;
}

.footer-col.contact-col .contact-block {
  margin-top: 0.8rem;
}

.footer-col.contact-col h4 {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.2rem;
}

.footer-col.contact-col h4::before {
  content: "▸ ";
  color: var(--accent-blue);
}

/* 769px – 1150px: make products 3 per row so they don’t get cramped */
@media (max-width: 1150px) and (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
  }

  /* make cards use full column width */
  .product-card {
    width: 100%;
    max-width: 260px;
    /* optional, you can tweak 240–260 */
  }
}

/* ===== CERTIFICATE CARD – FULLSCREEN ZOOM ON HOVER ===== */
.cert_card {
  background: radial-gradient(circle at top, #111827, #020617 70%);
  border-radius: 24px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  cursor: zoom-in;
  z-index: 0;
}

/* soft overlay when zooming */
.cert_card::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  /* lighter, not too dark */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: -1;
}

/* normal image state */
.cert_card img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  transform: scale(1);
  filter: brightness(1);
  transition:
    transform 0.45s ease,
    top 0.45s ease,
    left 0.45s ease,
    width 0.45s ease,
    height 0.45s ease,
    box-shadow 0.45s ease;
  z-index: 1;
}

/* hover: bring this card on top */
.cert_card:hover {
  z-index: 1100;
  cursor: zoom-out;
}

/* hover: fade in overlay */
.cert_card:hover::before {
  opacity: 1;
  z-index: 900;
}

.cert_card img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  transform: scale(1);
  transform-origin: center center;
  /* 👈 keeps scale centered */
  filter: brightness(1);
  transition:
    transform 0.45s ease,
    top 0.45s ease,
    left 0.45s ease,
    width 0.45s ease,
    height 0.45s ease,
    box-shadow 0.45s ease;
  z-index: 1;
}

.cert_card:hover img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  /* 👈 ensures it grows from center */
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 80vh;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.95);
  z-index: 1001;
}

/* .cert_card::before {
  background: rgba(2, 6, 23, 0.35);
  transition: opacity 0.3s ease;
}
.cert_card:hover img {
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.55s ease;
} */
/* === FULL-WIDTH UPCOMING EVENTS CARD === */
.events {
  padding-inline: 0;
  /* remove side padding from section */
}

.events-inner {
  max-width: 100%;
  /* no width limit */
  width: 100%;
  margin: 0;
  /* no auto-centering gap */
  border-radius: 0;
  /* optional – makes it touch edges */
  border-left: none;
  /* optional – cleaner on edges */
  border-right: none;
  /* optional */
  padding: 2.8rem 6rem;
  /* adjust padding as you like */
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === TWO SEPARATE EVENT INFO CARDS === */
.event-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.8rem;
}

.event-info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centers text + icon inside */
  gap: 10px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(57, 195, 255, 0.45);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-family: var(--heading);
  font-size: 0.95rem;
  color: #e5e7eb;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  /* 🔹 New: match image width and center it */
  width: 100%;
  max-width: 600px;
}

.event-info-card i {
  color: var(--accent-blue);
  font-size: 1.1rem;
}

.event-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 195, 255, 0.75);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.65);
}

/* ===== ABOUT ===== */
.about {
  background: #f9fafb;
  /* light section background */
  color: #020617;
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

/* simplified image card */
.ab_img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  /* soft but visible shadow */
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* image inside */
.ab_img img {
  display: block;
  width: 100%;
  border-radius: 24px;
  transition: transform 0.35s ease;
}

/* hover: zoom + deeper shadow */
.ab_img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.ab_img:hover img {
  transform: scale(1.03);
}

/* ===== ABOUT TEXT ===== */
.ab_text h1 {
  font-family: var(--heading);
  font-size: 2rem;
  color: #0b1957;
  margin-bottom: 1rem;
}

.ab_text .para {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 620px;
}

/* ===== LIGHTROOM HOVER GALLERY ===== */
.hover-gallery {
  position: fixed;
  inset: 0;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.hover-gallery.open {
  display: flex;
  /* JS adds this class to show it */
}

.hover-gallery-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
  max-width: 1000px;
  width: 100%;
  padding: 1.8rem;
  border-radius: 24px;
  background: radial-gradient(circle at top, #020617, #020617 80%);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 30px 100px rgba(15, 23, 42, 1);
}

/* Main big image */
.hover-gallery-main {
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  display: flex;
  flex-direction: column;
  /* Stack image and button */
  align-items: center;
  justify-content: center;
  position: relative;
  /* For button positioning if needed */
}

.hover-gallery-main img {
  max-width: 100%;
  max-height: 60vh;
  /* Reduced from 70vh to make room for button */
  object-fit: contain;
  margin-bottom: 1rem;
  /* Space for button */
}

#hover-view-more {
  margin-bottom: 1rem;
  min-width: 140px;
  z-index: 10;
}

/* Right side: title + thumbs */
.hover-gallery-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#hover-title {
  font-family: var(--heading);
  font-size: 1.1rem;
  text-align: left;
  color: #e5e7eb;
}

.hover-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hover-thumb {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hover-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

.hover-thumb.active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.85);
}

.hover-hint {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .hover-gallery-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hover-gallery-inner {
    max-width: 95%;
    padding: 1.2rem;
  }

  .hover-gallery-main img {
    max-height: 55vh;
  }
}

/* ===== CLOSE BUTTON FOR HOVER GALLERY ===== */
.hover-gallery-close {
  position: absolute;
  top: 22px;
  right: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  z-index: 10000;
}

.hover-gallery-close:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 1);
}

.product-card .view-products-btn {
  margin-top: 0rem;
  width: 90%;
}

/* Smaller "VIEW PRODUCTS" button inside cards */
.product-card .view-products-btn {
  padding: 0.4rem 0.9rem;
  /* less height & width */
  font-size: 0.78rem;
  /* smaller text */
  width: 70%;
  /* not full width */
  margin: 0.4rem auto 0;
  /* center horizontally */
  border-radius: 999px;
  /* keep pill shape */
}

.social-floating {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: #111827;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp {
  background-color: #25d366;
}

.email {
  background-color: #ea4335;
}

.phone {
  background-color: #007bff;
}

@media (max-width: 768px) {
  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .social-floating {
    right: 15px;
    bottom: 80px;
    gap: 10px;
  }
}

.logo img {
  height: 150px;
  width: auto;
}


@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4rem 6%;
  }

  .ab_text h1 {
    font-size: 1.8rem;
  }

  .ab_text .para {
    max-width: 100%;
  }

  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3.5rem 5%;
    gap: 3rem;
  }

  .ab_text h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .ab_text .para {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto;
  }

  .info-cards {
    gap: 0.9rem;
  }

  .mis,
  .goal {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
  }

  .unique-section {
    padding: 4rem 5% 3.5rem;
  }

  .unique-heading {
    font-size: 1.7rem;
  }

  .unique-subheading {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .unique-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .unique-box {
    padding: 1.5rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 3rem 4%;
  }

  .ab_text h1 {
    font-size: 1.45rem;
  }

  .ab_text .para {
    font-size: 0.9rem;
  }

  .unique-heading {
    font-size: 1.5rem;
  }

  .unique-subheading {
    font-size: 0.9rem;
  }

  .unique-box h3 {
    font-size: 0.95rem;
  }

  .unique-box p {
    font-size: 0.88rem;
  }
}