/* =========================
   VARIABLES
========================= */
:root {
  --primary: #2563eb;
  --secondary: #38bdf8;

  --bg-main: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-card: #ffffff;

  --text-dark: #0f172a;
  --text-light: #64748b;

  --border: #e2e8f0;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* =========================
   Reusable
========================= */

.services-hero,
.projects-hero,
.contact-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 120px 0;
  color: #fff;
}

.services-hero h1,
.projects-hero h1,
.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.services-hero h2,
.contact-hero h2 {
  font-size: 48px;
  font-weight: 800;
}

.services-hero p,
.projects-hero p,
.contact-hero p {
  margin-top: 15px;
  opacity: 0.9;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

p {
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--bg-soft);
}


/* =========================
   PREMIUM NAVBAR (FINAL FIX)
========================= */
.premium-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;

  background: rgba(255, 255, 255, 0.9);
  /* MORE SOLID */
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.premium-navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ADD PROPER HEIGHT + SPACING */
.premium-navbar .container {
  padding: 12px 0;
}

/* BRAND */
.navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a !important;
}

/* NAV LINKS */
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #334155 !important;
  /* DARKER TEXT */
  margin-left: 25px;
  position: relative;
}

.nav-link.active {
  color: #2563eb !important;
  font-weight: 600;
}

/* HOVER */
.nav-link:hover {
  color: #000 !important;
}

/* UNDERLINE */
.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: #2563eb;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* LOGO */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CONTACT BUTTON (MAKE IT POP) */
.contact-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 30px;
  margin-left: 25px;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
  transition: 0.2s;
}

.dropdown-item:hover {
  background: var(--bg-soft);
}


/* =========================
   HERO
========================= */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 40px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

.overlay-dark {
  position: absolute;
  inset: 0;

  /* LEFT DARK → RIGHT CLEAR */
  background: linear-gradient(100deg,
      rgba(15, 23, 42, 0.85) 35%,
      rgba(15, 23, 42, 0.55) 55%,
      rgba(15, 23, 42, 0.2) 75%,
      rgba(15, 23, 42, 0) 100%);
}

.hero-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-subtitle {
  color: #e2e8f0;
  font-size: 18px;
  margin-top: 20px;
  max-width: 600px;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

/* =========================
   BUTTONS
========================= */
.btn-custom {
  padding: 12px 28px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}


/* =========================
   CARDS (GLOBAL PREMIUM)
========================= */
.card-premium {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.05));
  opacity: 0;
  transition: 0.3s;
}

.card-premium:hover::before {
  opacity: 1;
}


.card-premium i {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--primary);
  text-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

/* =========================
   ABOUT
========================= */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

/* =========================
   STATS LUXURY SECTION
========================= */
.stats-luxury {
  background: #f8fafc;
}

/* HEADER */
.stats-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.stats-header h5 {
  margin-top: 10px;
  color: #2563eb;
  font-weight: 600;
}

.stats-header p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #64748b;
  line-height: 1.7;
}

/* BOX */
.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
  height: 100%;
}

/* ICON */
.stat-box span {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

/* NUMBER */
.stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

/* TEXT */
.stat-box p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CENTER HIGHLIGHT */
.stat-box.highlight {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
}

.stat-box.highlight h3,
.stat-box.highlight p {
  color: #fff;
}

/* =========================
   ULTRA PREMIUM SERVICES
========================= */
.expertise-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* HEADER */
.expertise-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.expertise-subtitle {
  color: #2563eb;
  margin-top: 10px;
  font-weight: 600;
}

.expertise-desc {
  max-width: 700px;
  color: #64748b;
  margin-top: 15px;
  line-height: 1.8;
}

/* CARD */
.expertise-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* ICON */
.expertise-card i {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 12px;
  font-size: 20px;
}

/* TITLE */
.expertise-card h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.expertise-card p {
  font-size: 14px;
  color: #64748b;
}

/* GRADIENT BORDER EFFECT */
.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #2563eb, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER EFFECT */
.expertise-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover::before {
  opacity: 1;
}

/* ICON GLOW */
.expertise-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* =========================
   WHY CHOOSE US PREMIUM
========================= */
.why-premium {
  background: #ffffff;
}

/* IMAGE */
.why-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.why-image:hover img {
  transform: scale(1.05);
}

/* TITLE */
.why-title {
  font-size: 42px;
  font-weight: 800;
}

/* SUBTITLE */
.why-subtitle {
  color: #2563eb;
  margin-top: 10px;
  font-weight: 600;
}

/* DESCRIPTION */
.why-desc {
  margin-top: 15px;
  color: #64748b;
  line-height: 1.8;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #0f172a;
}

/* ICON */
.why-list i {
  color: #2563eb;
  margin-right: 10px;
  font-size: 14px;
}

/* HOVER EFFECT */
.why-list li:hover {
  transform: translateX(5px);
  transition: 0.3s;
}

/* =========================
   TRUSTED SECTION
========================= */
/* HEADER */
.trusted-title {
  font-size: 42px;
  font-weight: 800;
}

.trusted-subtitle {
  margin-top: 10px;
  color: #2563eb;
  font-weight: 600;
}

.trusted-desc {
  max-width: 700px;
  margin: 15px auto 0;
  color: #64748b;
}

/* BRAND CARD */
.brand-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;

  height: 120px;
  /* FIX HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  transition: all 0.3s ease;

  overflow: hidden;
}

/* HOVER EFFECT */
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  color: #2563eb;
}

.brand-card img {
  max-width: 100%;
  max-height: 60px;
  /* CONTROL SIZE */
  object-fit: contain;

  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.trusted-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.trusted-strip {
  color: #64748b;
  font-size: 14px;
}

/* =========================
   CTA FINAL FIX
========================= */
.cta-section {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 100px 0;
}

/* GLASS BOX */
.cta-box {
  max-width: 850px;
  margin: auto;
  padding: 50px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;
}

/* TITLE */
.cta-box h2 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

/* TEXT (FIXED VISIBILITY) */
.cta-box p {
  margin-top: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  /* FIXED */
  line-height: 1.7;
}

/* BUTTON BASE */
.cta-box .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
}

/* PRIMARY BUTTON */
.cta-box .btn-primary-custom {
  background: #ffffff;
  color: #2563eb;
  border: none;
}

.cta-box .btn-primary-custom:hover {
  background: #f1f5f9;
}

/* OUTLINE BUTTON */
.cta-box .btn-outline-custom {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-box .btn-outline-custom:hover {
  background: #ffffff;
  color: #2563eb;
}

/* BUTTON SPACING */
.cta-actions {
  margin-top: 25px;
}


/* =========================
   FOOTER
========================= */
.footer {
  background: var(--bg-soft);
  text-align: center;
  padding: 20px;
  color: var(--text-light);
}

/* =========================
   IMAGE
========================= */
img {
  max-width: 100%;
  display: block;
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 100px 0;
  color: #fff;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
}

.page-header p {
  margin-top: 10px;
  opacity: 0.9;
}

/* SECTION TITLES */
.section-title {
  font-size: 38px;
  font-weight: 800;
}

.section-subtitle {
  color: #2563eb;
  margin-top: 10px;
}

.section-desc {
  margin-top: 15px;
  color: #64748b;
  line-height: 1.8;
}

/* VALUES */
.value-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
}

.value-box i {
  font-size: 22px;
  color: #2563eb;
  margin-bottom: 10px;
}

.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   CEO SECTION
========================= */
.ceo-section {
  background: #ffffff;
}

/* IMAGE */
.ceo-image {
  overflow: hidden;
  border-radius: 20px;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.ceo-image:hover img {
  transform: scale(1.05);
}

/* TITLE */
.ceo-title {
  font-size: 40px;
  font-weight: 800;
}

/* SUBTITLE */
.ceo-subtitle {
  color: #2563eb;
  margin-top: 10px;
  font-weight: 600;
}

/* TEXT */
.ceo-desc {
  margin-top: 15px;
  color: #64748b;
  line-height: 1.8;
}

/* SIGNATURE */
.ceo-sign {
  margin-top: 25px;
}

.ceo-sign h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.ceo-sign span {
  color: #64748b;
  font-size: 14px;
}

/* ================= Services Page ================= */
/* ================= SERVICE CARD ================= */
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s;
  height: 100%;
}

/* ICON */
.service-card i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 15px;
}

/* TITLE */
.service-card h5 {
  font-weight: 700;
}

/* SUBTITLE */
.service-card h6 {
  font-size: 14px;
  color: #2563eb;
  margin: 8px 0;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}


/* TRUST ULTRA */
.trust-ultra {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* TITLE */
.ultra-title {
  font-size: 42px;
  font-weight: 800;
}

.ultra-subtitle {
  color: #2563eb;
  margin-top: 10px;
}

/* CARD */
.trust-ultra-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: 0.4s;
  overflow: hidden;
}

/* ICON BOX */
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 15px;
}

/* TEXT */
.trust-ultra-card h6 {
  font-weight: 700;
}

.trust-ultra-card p {
  font-size: 14px;
  color: #64748b;
}

/* GLOW EFFECT */
.trust-ultra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.1));
  opacity: 0;
  transition: 0.4s;
}

.trust-ultra-card:hover::before {
  opacity: 1;
}

/* HOVER */
.trust-ultra-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}


/* DELIVERY ULTRA */
.delivery-ultra {
  background: #ffffff;
}

/* LINE */
.delivery-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

/* LINE BAR */
.delivery-line::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

/* STEP */
.delivery-step {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 150px;
}

/* NUMBER */
.delivery-step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TITLE */
.delivery-step h6 {
  font-weight: 700;
}

/* TEXT */
.delivery-step p {
  font-size: 13px;
  color: #64748b;
}

/* HOVER */
.delivery-step:hover span {
  transform: scale(1.1);
  transition: 0.3s;
}

/* projects */

/* CARD */
.project-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.1));
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  color: #2563eb;
}

.project-card:hover::before {
  opacity: 1;
}

/* POSITION BOX */
.position-box {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
}

/* Contact us page */
/* CONTACT SECTION */
.contact-section {
  background: #ffffff;
}

/* INFO */
.contact-info p {
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-info i {
  color: #2563eb;
  margin-right: 10px;
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* INPUT */
.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e2e8f0;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: none;
}

/* BUTTON */
.btn-primary-custom {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary-custom:hover {
  opacity: 0.9;
}

.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact a {
  width: 45px;
  height: 45px;
  background: #2563eb;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
}

/* INPUT ERROR BORDER */
.input-error {
  border-color: red !important;
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  margin-top: 20px;
  color: green;
  font-weight: 500;
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;

  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  cursor: pointer;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
}

/* SHOW */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
#backToTop:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

#backToTop {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* =========================
   RESPONSIVE
========================= */
/* MOBILE NAVBAR */
@media (max-width: 991px) {

    .premium-navbar .container {
        padding: 10px 15px;
    }

 /* NAV MENU */
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* LINKS */
    .nav-link {
        margin: 0;
        padding: 10px 0;
        font-size: 15px;
    }

    /* CONTACT BUTTON FIX */
    .contact-btn {
        display: block;
        width: 100%;

        margin-top: 12px;
        padding: 12px;

        text-align: center;
        border-radius: 10px;

        font-size: 15px;
    }
}

/* MOBILE LOGO */
@media (max-width: 768px) {



}

/* MOBILE TYPOGRAPHY */

@media (max-width: 768px) {

   h1 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 18px !important;
    }

  .hero-title {
    font-size: 36px;
  }

      .logo-img {
        height: 36px; /* reduced size */
    }

    .navbar-brand {
        padding: 5px 0;
    }

  .why-list-grid {
    grid-template-columns: 1fr;
  }
    /* CONTAINER */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* SECTION SPACING */
    .section {
        padding: 60px 0;
    }

    /* TEXT ALIGN */
    .text-center-mobile {
        text-align: center;
    }

    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 15px auto;
    }

    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
        .about-image {
        margin-bottom: 25px;
    }

        .stat-box {
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 28px;
    }
        .service-card {
        padding: 20px;
    }
        .trust-ultra-card {
        padding: 20px;
    }
/* =========================
   DELIVERY MOBILE FIX
========================= */

    .delivery-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        position: relative;
    }

    /* REMOVE HORIZONTAL LINE */
    .delivery-line::before {
        display: none;
    }

    /* ADD VERTICAL LINE */
    .delivery-line::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: #e2e8f0;
        transform: translateX(-50%);
    }

    /* STEP CARD */
    .delivery-step {
        width: 100%;
        max-width: 260px;
        text-align: center;
        position: relative;
    }

    /* NUMBER CIRCLE */
    .delivery-step span {
        margin: 0 auto 10px;
        position: relative;
        z-index: 2;
    }

    /* TEXT */
    .delivery-step h6 {
        font-size: 16px;
    }

    .delivery-step p {
        font-size: 13px;
    }

        .project-card {
        padding: 20px;
    }
        .contact-form-box {
        padding: 25px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero h2 {
        font-size: 34px;
    }
        .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
        #backToTop {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* =========================
   CONTACT INFO MOBILE FIX
========================= */

    .contact-info {
        margin-top: 20px;
    }

    /* EACH ITEM */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 12px;

        background: #f8fafc;
        padding: 14px 16px;
        border-radius: 10px;

        font-size: 14px;
        margin-bottom: 12px;
    }

    /* ICON */
    .contact-info i {
        width: 38px;
        height: 38px;

        background: #2563eb;
        color: #fff;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        font-size: 14px;

        flex-shrink: 0;
    }


}

@media (max-width: 480px) {

    .logo-img {
        height: 32px;
    }

}

/* ========================= */
/* MOBILE (PERFECT FOR 390px) */
/* ========================= */
@media (max-width: 420px) {

  .cta-box {
    padding: 25px 20px;
  }

  .cta-box h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .cta-box p {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 100%;
    padding: 14px;
    margin-bottom: 5px;
  }
}