/* Rajdeep Group of Industries — Premium industrial packaging website */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Lato:wght@400;700&family=Outfit:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --navy: #0b1f3a;
  --navy-mid: #123056;
  --navy-deep: #071526;
  --navy-soft: #1a3a5c;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --cream: #f6f3ee;
  --off-white: #faf8f5;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #5c6778;
  --line: #e4ddd2;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --shadow-sm: 0 8px 24px rgba(11, 31, 58, 0.08);
  --radius: 18px;
  --header-h: 88px;
  --num-font: "Roboto", "Lato", "Courier New", monospace;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  cursor: zoom-in;
}

.brand img,
.footer-brand img,
.lightbox img,
.float-btn svg {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
}

.num {
  font-family: var(--num-font);
  letter-spacing: 0.02em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
  font-size: 17px;
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-inline: auto;
}

.center .section-kicker {
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(200, 16, 46, 0.38);
}

.btn-gold {
  background: linear-gradient(135deg, #d4b36a, var(--gold));
  color: var(--navy-deep);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(196, 163, 90, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-3px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.35s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  z-index: 1001;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.3s;
}

.brand-name span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.3s;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a,
.nav-drop > span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.25s;
}

.nav a:hover,
.nav a.active,
.nav-drop:hover > span {
  color: var(--gold-light);
}

.nav-drop {
  position: relative;
}

.nav-drop > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-drop > span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s;
  border: 1px solid var(--line);
}

.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-menu a {
  display: block;
  color: var(--navy) !important;
  padding: 10px 12px;
  border-radius: 8px;
}

.drop-menu a:hover {
  background: var(--cream);
  color: var(--red) !important;
}

.header-cta {
  display: flex;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.site-header.scrolled .menu-toggle span,
.site-header.light .menu-toggle span {
  background: var(--navy);
}

.site-header.menu-open .brand-name strong,
.site-header.menu-open .nav a,
.site-header.menu-open .nav-drop > span {
  color: #fff !important;
}

.site-header.menu-open .brand-name span {
  color: var(--gold-light) !important;
}

.site-header.menu-open .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header.menu-open .menu-toggle span {
  background: #fff;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header.scrolled,
.site-header.light {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.08);
}

.site-header.scrolled .brand-name strong,
.site-header.light .brand-name strong {
  color: var(--navy);
}

.site-header.scrolled .brand-name span,
.site-header.light .brand-name span {
  color: var(--red);
}

.site-header.scrolled .nav a,
.site-header.scrolled .nav-drop > span,
.site-header.light .nav a,
.site-header.light .nav-drop > span {
  color: var(--navy);
}

.site-header.scrolled .nav a:hover,
.site-header.scrolled .nav a.active,
.site-header.light .nav a:hover,
.site-header.light .nav a.active {
  color: var(--red);
}

.site-header.scrolled .menu-toggle,
.site-header.light .menu-toggle {
  border-color: var(--line);
}

/* Hero slider */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img,
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 38, 0.55) 0%, rgba(7, 21, 38, 0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.18), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px 80px;
}

.hero-eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  max-width: 920px;
  margin-bottom: 18px;
}

.hero h1 span {
  display: block;
  font-size: 0.46em;
  letter-spacing: 0.18em;
  margin-top: 10px;
  color: var(--gold-light);
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 42px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 140px 20px 80px;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  z-index: 1;
}

.page-hero .hero-content {
  min-height: 0;
  padding: 0;
  z-index: 2;
}

.spark-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: spark 4.8s linear infinite;
  box-shadow: 0 0 10px #fff3c4;
}

@keyframes spark {
  0% {
    transform: translateY(20px) scale(0.4);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh) scale(1);
    opacity: 0;
  }
}

.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -24px);
  }
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item b {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.05);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-media {
  height: 230px;
  background: linear-gradient(180deg, #eef2f7, #f7f4ef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  cursor: zoom-in;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.link-more {
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
}

.icon-card {
  padding: 28px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.timeline-item {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.timeline-item .year {
  font-family: var(--num-font);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--num-font);
  font-size: 32px;
  color: var(--gold);
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.client-card {
  background: #fff;
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.client-card img {
  max-height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: 0.3s;
}

.client-card:hover img {
  filter: none;
  transform: scale(1.04);
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.88), rgba(200, 16, 46, 0.55)),
    url("../assets/warehouse.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 12px;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.unit-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}

.unit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 38, 0.15), rgba(7, 21, 38, 0.86));
}

.unit-card .unit-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.avatar {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
}

.team-card h3 {
  font-size: 16px;
  color: var(--navy);
}

.team-card p {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-list a,
.contact-list p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: var(--text);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery img,
.zoomable {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #eef2f7;
  border-radius: 14px;
  padding: 12px;
  cursor: zoom-in;
}

.specs {
  margin-top: 20px;
}

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.specs li span {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold);
}

/* Floating actions */
.float-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  position: relative;
  transition: 0.25s;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 66px;
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: 0.2s;
}

.float-btn:hover::after {
  opacity: 1;
  transform: none;
}

.float-wa {
  background: #25d366;
}

.float-call {
  background: var(--navy);
}

.float-call.uae {
  background: var(--red);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 38, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1080px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.8s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

.bg-cream {
  background: var(--cream);
}

.bg-navy {
  background: var(--navy);
  color: #fff;
}

.bg-navy .section-title {
  color: #fff;
}

.bg-navy .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
}

@media (max-width: 1024px) {
  .grid-3,
  .timeline,
  .stats,
  .footer-grid,
  .product-hero-grid,
  .contact-grid,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .header-cta {
    display: none;
  }
}

@media print {
  .float-stack,
  .lightbox,
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 90px 28px 40px;
    gap: 6px;
    transform: translateX(110%);
    transition: 0.35s ease;
  }

  .site-header.menu-open .nav {
    transform: none;
  }

  .nav a,
  .nav-drop > span {
    color: #fff !important;
    font-size: 20px;
    padding: 12px 8px;
  }

  .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: 0;
    display: none;
    padding: 0 0 8px 12px;
  }

  .nav-drop.open .drop-menu {
    display: block;
  }

  .drop-menu a {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 16px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .grid-3,
  .grid-2,
  .timeline,
  .stats,
  .units-grid,
  .team-grid,
  .clients-row,
  .grid-4,
  .footer-grid,
  .product-hero-grid,
  .contact-grid,
  .gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .float-btn::after {
    display: none;
  }

  .section {
    padding: 72px 0;
  }
}
