:root {
  --primary: #00B4D8;
  /* Vibrant Cyan */
  --primary-dark: #0077B6;
  /* Deep Blue */
  --primary-light: #90E0EF;
  /* Light Cyan */
  --white: #FFFFFF;
  --bg: #F8FAFC;
  /* Light Gray for main body */
  --bg-dark: #0A1128;
  /* Deep Navy for Hero/Footer */
  --text: #0F172A;
  /* Slate 900 */
  --text-muted: #475569;
  /* Slate 600 */
  --glass-bg: rgba(10, 17, 40, 0.85);
  --glass-border: rgba(0, 180, 216, 0.2);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== LOGISTICS PRELOADER ===== */
#site-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: var(--bg-dark); /* Match deep navy theme */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#site-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-minimal {
  width: 48px;
  height: 48px;
  border: 4px solid #FFF;
  border-bottom-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader-text-minimal {
  margin-top: 20px;
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-globe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* ===== ENHANCED FLOATING CONTACT WIDGET ===== */
.floating-contact-wrapper {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Circular Yellow Trigger (Tawk.to Style) */
.floating-trigger-btn {
  width: 65px;
  height: 65px;
  background: var(--primary); /* Vibrant Blue */
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0;
  position: relative;
  overflow: visible;
}

.floating-trigger-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.4);
}

.floating-trigger-btn .chat-icon-inner {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Popup Box Base Styles */
.contact-popup-box {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
}

.contact-popup-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Multi-Pane Logic */
.popup-pane {
  display: none;
  padding: 30px 25px;
}

.popup-pane.active {
  display: block;
}

/* Step 1: Permission Permission Design */
.permission-pane {
  text-align: center;
}

.permission-inner {
  background: var(--primary);
  margin: -30px -25px 25px -25px;
  padding: 30px 25px;
}

.permission-pane h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1e293b;
}

.permission-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-popup-cancel {
  flex: 1;
  background: #f1f5f9;
  color: #475569;
  border: none;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-popup-accept {
  flex: 1;
  background: #FFB703;
  color: white;
  border: none;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

/* Step 2: Form Pane Design */
.form-pane {
  background: var(--white);
}

.form-pane-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.form-pane-header h6 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--bg-dark);
}

.form-pane-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}


/* ===== MAIN HEADER ===== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  background: var(--white);
}

.main-header.scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--bg-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: block;
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Nav Dropdown Styling */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex !important;
  align-items: center;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  padding: 12px 0;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  /* border: 1px solid rgba(0, 0, 0, 0.04); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  /* transform: translateX(-50%) translateY(0); */
}

.dropdown-item-custom {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-item-custom:hover {
  background: rgba(0, 180, 216, 0.04);
  color: var(--primary);
  padding-left: 25px;
}

/* Mobile dropdown adjustments */
@media (max-width: 991px) {
  .nav-item-dropdown {
    flex-direction: column;
    width: 100%;
  }

  .nav-item-dropdown .dropdown-trigger {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu-custom {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.4s ease;
    background: rgba(0, 180, 216, 0.02);
    border-radius: 0;
  }

  .nav-item-dropdown.active .dropdown-menu-custom {
    max-height: 200px;
    margin-top: 10px;
    padding: 10px 0;
  }
  .nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}


.btn-theme-small {
  padding: 8px 24px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 40px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-theme-small:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

.header-dash-link {
  color: #E63946 !important;
}

.header-dash-link:hover {
  color: #ff4d5e !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    gap: 20px;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-toggle {
    display: block;
  }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  /* Very dark navy */
  padding-top: 100px;
  padding-bottom: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Fix: hero background image/video always fills area, never crops oddly */
.hero-bg > div[style*="background:"],
.hero-bg > div[style*="background-color:"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-bg video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Hero background image div fix */
.hero-bg div[style*="url("] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.world-map-container {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  /* Higher opacity so it's clearly visible */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Ensure map is above deep background */
}

.world-map-container svg {
  width: 100%;
  height: 100%;
}

.world-map-container.real-map {
  background-color: var(--primary);
  opacity: 0.15;
  -webkit-mask-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
  mask-size: 100% 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
  z-index: 2;
  pointer-events: none;
}

#trade-routes-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.1rem;
  opacity: 1;
}

.hero-tag .line {
  width: 40px;
  height: 2px;
  background: white;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  opacity: 1;
  letter-spacing: -1px;
  color: var(--white);
}

.hero-title .blue-text {
  color: var(--primary-light);
  display: block;
  font-weight: 900;
  margin-bottom: 2.20rem;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(0, 180, 216, 0.4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.90;
  font-weight: 100;
  color: var(--text-light, #E2E8F0);
  margin-bottom: 2.8rem;
  max-width: 900px;
  opacity: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 1;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.35);
  color: var(--white);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.hero-cta:hover svg {
  transform: translateX(6px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  opacity: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ===== SCROLL SHIP ===== */
.scroll-ship {
  position: fixed;
  right: 20px;
  top: 100px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ship-track {
  width: 2px;
  height: calc(100vh - 220px);
  background: rgba(74, 144, 226, 0.08);
  border-radius: 1px;
  position: relative;
}

.ship-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), rgba(74, 144, 226, 0.12));
  border-radius: 1px;
}

.ship-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 6px rgba(74, 144, 226, 0.3));
}

/* ===== SECTION SHARED ===== */
.section-padding {
  padding: 60px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-tag .line {
  width: 26px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
  color: var(--text);
}

.section-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 500px;
}

.blue-divider {
  width: 45px;
  height: 2px;
  background: var(--primary);
  margin: 1.2rem 0;
  border-radius: 1px;
}

/* ===== SERVICE CARDS (LIGHT SECTION) ===== */
.services-navy {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 40%, #f5f0ff 100%);
  color: var(--text);
  overflow: hidden;
  position: relative;
}

/* Subtle animated blobs in background */
.services-navy::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.services-navy::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}

.services-navy .section-title {
  color: var(--text);
}

.services-navy .section-tag {
  color: var(--primary);
}

.services-navy .section-tag .line {
  background: var(--primary);
}

.services-navy .section-desc {
  color: var(--text-muted);
}

/* Alternating Stagger Logic (Consistent across screens) */
.stagger-up {
  transform: translateY(-20px);
}
.stagger-down {
  transform: translateY(20px);
}
@media (max-width: 767px) {
  .stagger-up, .stagger-down {
    transform: translateY(0) !important; /* Flatten on very small mobile for usability */
  }
}

/* Zig-zag flex container */
.services-zigzag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 0;
}

/* Each card column */
.service-card-col {
  flex: 0 0 auto;
  width: 175px;
  transition: transform 0.4s ease;
}

/* Alternating position */
@media (min-width: 992px) {
  .service-card-col.pos-up {
    transform: translateY(-40px);
  }
  .service-card-col.pos-down {
    transform: translateY(40px);
  }
}

/* Card wrapper for 3D flip */
.service-card-wrapper {
  perspective: 800px;
  height: 200px;
  width: 100%;
}

.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card-wrapper:hover .service-card {
  transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(0,180,216,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

.service-card-wrapper:hover .service-card-front {
  box-shadow: 0 8px 32px rgba(0,180,216,0.18);
}

.service-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  border: none;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 12px;
  color: #0284c7;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.service-card-front h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #1e293b;
  line-height: 1.4;
  padding: 0 4px;
  text-align: center;
}

.service-card-back p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0;
  padding: 0 6px;
  text-align: center;
}

/* Responsive: Services Section */

/* Tablet: responsive card height adjustment */
@media (max-width: 991px) {
  .service-card-wrapper {
    height: 180px;
  }
}


/* Mobile: 2 cards per row */
@media (max-width: 575px) {
  .service-card-wrapper {
    height: 160px;
  }
  .service-card-front h4 {
    font-size: 0.75rem;
  }
  .service-card-back p {
    font-size: 0.65rem;
  }
  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.4rem;
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
}



/* =========================================
   NEW SERVICES-LIGHT SECTION
   ========================================= */

.services-light {
  background: linear-gradient(145deg, #f8fbff 0%, #eff6ff 50%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.services-light::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  top: -150px; right: -80px;
  pointer-events: none;
}
.services-light::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

/* ---- 2-column card grid ---- */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ---- Each card: 3D flip ---- */
.svc-card {
  perspective: 900px;
  height: 155px;
}

.svc-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-card-inner {
  transform: rotateY(180deg);
}

.svc-front, .svc-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.8rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  text-align: center;
}

/* Front face */
.svc-front {
  background: #ffffff;
  border: 1px solid rgba(14,165,233,0.13);
  box-shadow: 0 3px 18px rgba(14,165,233,0.08);
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-card:hover .svc-front {
  box-shadow: 0 8px 28px rgba(14,165,233,0.16);
}

/* Back face */
.svc-back {
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  transform: rotateY(180deg);
}

.svc-back p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.93);
  line-height: 1.6;
  margin: 0;
}

/* Icon */
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  flex-shrink: 0;
}

.svc-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

/* Label */
.svc-front span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

/* ---- Pendulum Crane ---- */
.container-crane-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  animation: pendulumSwing 4s ease-in-out infinite;
  max-height: 100%;
  overflow: visible;
  margin-bottom: 140px;
}


.crane-img {
  width: 120%;
  max-width: 500px;
  filter: drop-shadow(0 25px 35px rgba(14,165,233,0.2));
}

@keyframes pendulumSwing {
  0%   { transform: rotate(-6deg); }
  50%  { transform: rotate(6deg); }
  100% { transform: rotate(-6deg); }
}

/* Responsive: hide container on mobile, stack grid to 2-col */
@media (max-width: 767px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-card {
    height: 140px;
  }
}

@media (max-width: 450px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .svc-card {
    height: 130px;
  }
  .svc-icon {
    width: 36px; height: 36px;
  }
  .svc-front span {
    font-size: 0.68rem;
  }
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.35s ease, color 0.3s ease;
}

.service-link:hover {
  gap: 14px;
  color: var(--primary-dark);
}

/* ===== ABOUT ===== */
.about-section {
  background-color: var(--white);
  background-image: 
    linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, rgba(74, 144, 226, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 8% 75%, rgba(74, 144, 226, 0.03) 0%, transparent 35%);
  z-index: 0;
  pointer-events: none;
}

/* About Animated Background Shapes */
.about-bg-animation {
  position: absolute;
  
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-section {
  background-color: var(--white);
  /* Minimal SaaS dot-grid background */
  background-image: radial-gradient(rgba(0, 180, 216, 0.18) 1px, transparent 1px);
  background-size: 35px 35px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Soft radial fade so the edges blend gracefully into white */
  background: radial-gradient(circle at center, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 90%);
  pointer-events: none;
  z-index: 0;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: floatShape 15s infinite ease-in-out alternate;
}

.about-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 180, 216, 0.15); /* Primary */
  top: -100px;
  left: -100px;
  animation-duration: 18s;
  animation-direction: alternate;
}

.about-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 159, 28, 0.08); /* Accent */
  bottom: -150px;
  right: -50px;
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

.about-shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(0, 119, 182, 0.1); /* Primary Dark */
  top: 40%;
  left: 55%;
  animation-duration: 25s;
  animation-direction: alternate;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(40px, 40px) scale(1.05); }
}

/* Beautiful floating container animation for the About section */
.floating-container-img {
  animation: floatContainerImage 6s ease-in-out infinite;
  transform-origin: center bottom;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

@keyframes floatContainerImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.about-number {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgb(11 46 86 / 5%);
  line-height: 1;
  position: absolute;
  top: 18px;
  left: -22px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.06);
}

.about-list li svg {
  color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lottie-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

/* ===== BOX SECTION ===== */
.box-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.box-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.04) 0%, transparent 65%);
}

.box-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.box-lid {
  transform-origin: center bottom;
}

.box-content-reveal {
  opacity: 0;
  transform: translateY(50px);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.counter-item {
  text-align: center;
  padding: 1.8rem 1.3rem;
  background: var(--bg);
  border: 1px solid rgba(74, 144, 226, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.counter-item:hover {
  border-color: rgba(74, 144, 226, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.06);
}

.counter-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 1;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ===== GLOBAL REACH ===== */
.global-section {
  background: var(--bg);
  position: relative;
}

.global-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.1;
}

.globe-lottie {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.region-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.region-item:hover {
  padding-left: 10px;
  border-color: rgba(74, 144, 226, 0.15);
}

.region-item .name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.region-item .count {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
}

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(180deg, var(--bg), var(--white));
  position: relative;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid rgba(74, 144, 226, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.02);
}

.form-control-custom {
  background: var(--bg);
  border: 1px solid rgba(74, 144, 226, 0.08);
  border-radius: 12px;
  color: var(--text);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  transition: all 0.35s ease;
}

.form-control-custom::placeholder {
  color: rgba(107, 114, 128, 0.6);
}

.form-control-custom:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.08);
  outline: none;
  color: var(--text);
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: none;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  cursor: pointer;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
  color: var(--white);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding: 4rem 0 1.2rem;
  border-top: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--text-light);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary);
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #94A3B8;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: #64748B;
}

/* ===== UTILITIES ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
}

/* ===== ADMIN PANEL ===== */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  border-right: 1px solid rgba(74, 144, 226, 0.08);
  padding: 0;
  z-index: 100;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.015);
}

.admin-sidebar-header {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(74, 144, 226, 0.06);
}

.admin-sidebar-header .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.admin-sidebar-header h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}

.admin-sidebar-header p {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 2px 0 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-nav {
  padding: 15px 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin: 2px 0;
}

.admin-nav-item:hover {
  background: var(--accent);
  color: var(--primary);
  border-left-color: var(--primary);
}

.admin-nav-item.active {
  background: var(--accent);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 600;
}

.admin-nav-item i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.admin-main-content {
  margin-left: 260px;
  padding: 30px 35px;
  min-height: 100vh;
  background: var(--bg);
}

.admin-stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(74, 144, 226, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.015);
  transition: all 0.3s ease;
}

.admin-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.06);
}

.admin-stat-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}

.admin-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(74, 144, 226, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.015);
}

.admin-table {
  font-size: 0.83rem;
}

.admin-table thead th {
  background: var(--accent);
  border: none;
  padding: 12px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.04);
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background 0.2s;
}

.admin-table tbody tr:hover {
  background: rgba(74, 144, 226, 0.02);
}

.badge-role {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.admin-modal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.admin-modal .modal-header {
  border-bottom: 1px solid rgba(74, 144, 226, 0.06);
  padding: 20px 24px;
}

.admin-modal .modal-body {
  padding: 24px;
}

.pagination .page-link {
  border: none;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px !important;
  margin: 0 3px;
  font-size: 0.8rem;
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

/* ===== WAVES ===== */
.hero-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 5;
}

.hero-wave-top svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  display: block;
}

.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 5;
}

/* ===== BUTTONS & WAVES ===== */
.btn-theme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--accent);
  box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
}

.btn-theme:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 12px 35px rgba(255, 159, 28, 0.6);
}

.btn-theme-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-theme-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
}

/* ===== BENEFITS CARD ===== */
.benefit-card {
  display: flex;
  background: var(--white);
  padding: 2.2rem 1.5rem;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(2, 132, 199, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.2);
  box-shadow: 0 15px 40px rgba(2, 132, 199, 0.1);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

/* ===== MARQUEE (CUSTOMER REVIEWS) ===== */
.marquee-container {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 35s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.review-card {
  width: 380px;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 18px;
  border: 1px solid rgba(2, 132, 199, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SHIP THEME ADJUSTMENTS ===== */
.ship-container {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  overflow: hidden;
}


/* =========================================
   REFINED COMPONENTS & UI UTILITIES
   ========================================= */

/* Floating Animations */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(2deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

.floating-q-mark {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: float-slow 8s infinite ease-in-out;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light), transparent);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: float-y 10s infinite ease-in-out;
}

/* Premium Form Styles (Unified) */
.premium-form-card {
  padding: 10px;
  position: relative;
  z-index: 1;
}

.premium-form-card.dark-theme {
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(20px);
  border-color: rgba(0, 180, 216, 0.3);
  color: var(--white);
}

.premium-input {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--text) !important;
  padding: 14px 20px !important;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.premium-input:focus {
  background: var(--white) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.15) !important;
  transform: scale(1.01);
}

.premium-input.dark-theme {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

.premium-input::placeholder {
  color: #94a3b8 !important;
}



/* Updated Buttons */
.btn-theme-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 31px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-theme-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.25);
  transform: translateY(-3px);
}

.btn-theme-outline svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.btn-theme-outline:hover svg {
  transform: translateX(6px);
}

/* Copied from Section-Specific Styles */

/* Why Choose Us Redesign */
.why-choose-redesign { position: relative; z-index: 1; }
.why-ship-bg { position: absolute; top: 50%; right: -5%; transform: translateY(-50%); width: 400px; height: 400px; z-index: -1; pointer-events: none; }
.why-image-single-wrap { border-radius: 40px; overflow: hidden; transition: transform 0.4s ease; }
.why-image-single-wrap:hover { transform: translateY(-10px); }
.feature-check-icon { width: 30px; height: 30px; background: #38bdf8; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-primary-redesign { background: #001f6d; color: white; padding: 16px 32px; border-radius: 10px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s ease; }
.btn-primary-redesign:hover { background: #00154d; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 31, 109, 0.2); }
.experience-box-redesign { background: #38bdf8; color: white; padding: 20px 25px; border-radius: 12px; display: flex; align-items: center; gap: 15px; }
.exp-number { font-size: 3rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }
.avatar-stack { display: flex; }
.avatar-stack img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid white; margin-left: -10px; }
.avatar-stack img:first-child { margin-left: 0; }

/* Premium Globe Benefits (Hero Background) */
.benefits-globe-proper-section { 
  background: var(--bg-dark); 
  padding: 50px 0; 
  position: relative; 
  overflow: hidden; 
}

.globe-layout-wrapper { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 30px; 
}

.globe-cards-left, .globe-cards-right { 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  gap: 30px; 
}

.proper-globe-card { 
  display: flex; 
  align-items: center; 
  gap: 18px; 
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(0, 180, 216, 0.2); 
  border-radius: 20px; 
  padding: 24px; 
  position: relative; 
  backdrop-filter: blur(10px); 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  cursor: default; 
}

.proper-globe-card:hover { 
  background: rgba(0, 180, 216, 0.1); 
  border-color: rgba(0, 180, 216, 0.5); 
  transform: translateX(-10px) scale(1.02); 
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15); 
}

.proper-globe-card-right:hover { 
  transform: translateX(10px) scale(1.02); 
}

.pgc-icon {
  width: 50px;
  padding: 10px;
  height: 50px;
  background: rgba(0, 180, 216, 0.1);
  /* border: 1px solid rgba(0, 180, 216, 0.2); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pgc-text h5 { color: var(--white); font-weight: 700; margin-bottom: 6px; font-size: 1.1rem; }
.pgc-text p { color: rgba(255, 255, 255, 0.6); margin-bottom: 0; font-size: 0.88rem; line-height: 1.5; }

.globe-center-wrap { 
  flex: 0 0 420px; 
  width: 420px; 
  height: 420px; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.globe-img-rotate { 
  width: 85%; 
  height: 85%; 
  object-fit: contain; 
  z-index: 2; 
  animation: globeSpin 25s linear infinite; 
  filter: drop-shadow(0 0 50px rgba(0, 180, 216, 0.4)); 
}

@keyframes globeSpin { 
  from { transform: rotate(0deg); } 
  to { transform: rotate(360deg); } 
}

.orbit-ring { 
  position: absolute; 
  border-radius: 50%; 
  border: 2px solid rgba(0, 31, 109, 0.7); 
  box-shadow: 0 0 20px rgba(0, 31, 109, 0.1);  pointer-events: none; 
}

.orbit-ring-1 { width: 100%; height: 100%; animation: orbitSpin 20s linear infinite; }
.orbit-ring-2 { width: 75%; height: 75%; animation: orbitSpin 15s linear reverse infinite; }

@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.globe-glow-pulse { 
  position: absolute; 
  width: 80%; 
  height: 80%; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%); 
  animation: glowPulse 4s ease-in-out infinite; 
  z-index: 1;
}

@keyframes glowPulse { 0%, 100% { transform: scale(0.95); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }

@media (max-width: 991px) {
  .globe-layout-wrapper { flex-direction: column; }
  .globe-center-wrap { flex: 0 0 320px; width: 320px; height: 320px; margin: 40px 0; }
  .globe-cards-left, .globe-cards-right { width: 100%; gap: 20px; }
  .proper-globe-card:hover, .proper-globe-card-right:hover { transform: translateY(-5px); }
}



/* FAQ Styles */
.faq-hero { padding: 100px 0 50px; background: var(--bg-dark); position: relative; }
.premium-accordion .accordion-item { background: white; border-radius: 15px !important; overflow: hidden; transition: all 0.3s ease; margin-bottom: 25px; }
.premium-accordion .accordion-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important; }
.premium-accordion .accordion-button { background: white; color: #1e3a8a; padding: 18px 20px; font-size: 1rem; border: none !important; }
.premium-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(0, 180, 216, 0.05); }

/* Start Global Styles */
.start-global-hero { padding: 100px 0 40px; background: var(--bg-dark); position: relative; }

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .scroll-ship {
    display: none;
  }

  .contact-form-wrapper {
    padding: 1.8rem;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin: 0 0.7rem;
  }
}
/* Floating Quick Contact Redesign */
.floating-contact-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-contact-btn {
  width: auto !important;
  height: 58px !important;
  padding: 0 32px !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  border-radius: 60px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 180, 216, 0.45);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: breathing 4s infinite ease-in-out;
  border: none;
}

.btn-content-wrapper {
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
}

.btn-text-content {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes breathing {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.shimmer-effect-btn {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: shimmer-btn 6s infinite;
  z-index: 1;
}

@keyframes shimmer-btn {
  0% { left: -150%; top: -150%; }
  25% { left: 250%; top: 250%; }
  100% { left: 250%; top: 250%; }
}

.floating-contact-btn:hover {
  transform: scale(1.08) translateY(-5px);
  background: linear-gradient(135deg, var(--primary-dark), #005f73) !important;
  box-shadow: 0 15px 45px rgba(0, 180, 216, 0.65);
}

.floating-contact-btn:active {
  transform: scale(0.96);
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.floating-contact-btn:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.notification-dot {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: #ff4d4d;
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  z-index: 3;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.floating-contact-card {
  width: 350px;
  background: white;
  border-radius: 24px;
  margin-bottom: 25px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 25px 70px rgba(0, 0, 18, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.floating-contact-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.card-header-custom {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 20px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-close-custom {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  line-height: 0.5;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-close-custom:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.card-body-custom {
  padding: 35px;
}

.card-body-custom .form-control {
  background: #fcfdfe;
  border: 1.5px solid rgba(0, 180, 216, 0.1);
  padding: 16px 20px;
  font-size: 0.9rem;
  border-radius: 14px;
  transition: all 0.35s;
  color: var(--text);
  font-family: var(--font-body);
}

.card-body-custom .form-control:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.12);
  outline: none;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .btn-text-content {
    display: none;
  }
  .floating-contact-btn {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  .floating-contact-btn svg {
    margin-right: 0 !important;
  }
  .notification-dot {
    top: 5px;
    right: 5px;
  }
}

/* ===== POLICY PAGE STYLES ===== */
.policy-hero {
    padding: 160px 0 100px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.policy-hero .hero-bg {
    position: absolute;
    inset: 0;
}

.policy-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 80%);
}

.policy-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.policy-container {
    border-radius: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.policy-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.policy-tab-btn {
    flex: 1;
    padding: 25px;
    border: none;
    background: transparent;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.policy-tab-btn:hover {
    color: var(--primary);
    background: rgba(0, 180, 216, 0.05);
}

.policy-tab-btn.active {
    color: var(--primary);
    background: var(--white);
    border-bottom-color: var(--primary);
}

.policy-body {
    padding: 60px;
}

@media (max-width: 768px) {
    .policy-body {
        padding: 30px 20px;
    }
    .policy-tabs {
        flex-direction: column;
    }
    .policy-tab-btn {
        padding: 15px;
    }
}

.policy-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.policy-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--bg-dark);
    font-size: 2rem;
    margin-bottom: 0;
}

.badge-date {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.policy-grid {
    display: grid;
    gap: 40px;
}

.policy-item {
    position: relative;
    padding-left: 60px;
}

.policy-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.policy-item-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* =============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================= */

/* --- Section Spacing Fix (gap between sections) --- */
.services-light {
  padding-bottom: 60px;
}

.why-choose-redesign {
  padding-top: 60px;
}

/* =========================================
   DESKTOP LARGE (max-width: 1200px)
   ========================================= */
@media (max-width: 1200px) {
  .globe-center-wrap {
    flex: 0 0 340px;
    width: 340px;
    height: 340px;
  }
  #globe-canvas-container {
    width: 500px !important;
    height: 500px !important;
  }
  .proper-globe-card {
    padding: 18px;
  }
  .pgc-text h5 {
    font-size: 1rem;
  }
  .pgc-text p {
    font-size: 0.82rem;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }
}

/* =========================================
   TABLET (max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
  /* --- Header & Mobile Nav --- */
  .main-header {
    padding: 12px 0;
  }
  .nav-logo {
    font-size: 1.5rem;
  }
  .nav-links {
    display: none !important;
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    gap: 15px;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
  }
  .nav-toggle {
    display: block;
  }

  /* --- Hero --- */
  .hero-section {
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
  }
  .hero-stats {
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.8rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.6rem;
  }

  /* --- Services Section --- */
  .services-light {
    padding-bottom: 40px;
  }
  .services-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .container-crane-wrap {
    margin-bottom: 0;
  }

  /* --- Why Choose Us --- */
  .why-choose-redesign {
    padding-top: 40px;
  }

  /* --- Benefits Globe --- */
  .globe-layout-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .globe-center-wrap {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
    margin: 20px auto;
    order: -1;
  }
  #globe-canvas-container {
    width: 260px !important;
    height: 260px !important;
  }
  .globe-cards-left,
  .globe-cards-right {
    width: 100%;
    gap: 16px;
  }
  .proper-globe-card {
    padding: 20px;
  }
  .proper-globe-card:hover,
  .proper-globe-card-right:hover {
    transform: translateY(-5px) scale(1.01);
  }
  .benefits-globe-proper-section {
    padding: 40px 0;
  }

  /* --- Testimonials --- */
  .review-card {
    width: 320px;
    padding: 2rem;
  }

  /* --- Contact Form --- */
  .contact-form-wrapper {
    padding: 1.8rem;
  }
  .premium-form-card {
    padding: 8px;
  }

  /* --- Admin Panel --- */
  .admin-sidebar {
    position: fixed;
    left: -280px;
    width: 260px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: none;
  }
  .admin-sidebar.mobile-open {
    left: 0;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
  }
  .admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1049;
    backdrop-filter: blur(2px);
  }
  .admin-sidebar-overlay.active {
    display: block;
  }
  .admin-main-content {
    margin-left: 0;
    padding: 20px 15px;
  }
  .admin-mobile-topbar {
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--white);
    border-bottom: 1px solid rgba(74, 144, 226, 0.08);
    margin: -20px -15px 20px -15px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .admin-mobile-toggle {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .admin-mobile-toggle:hover {
    background: rgba(0, 180, 216, 0.05);
    border-color: var(--primary);
    color: var(--primary);
  }
  body.dark-theme .admin-mobile-topbar {
    background: #0f172a;
    border-bottom-color: #1e293b;
  }
  body.dark-theme .admin-mobile-toggle {
    border-color: #334155;
    color: #cbd5e1;
  }

  /* Admin Tables Horizontal Scroll */
  .admin-card .table-responsive,
  .admin-card table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* --- Floating Widget --- */
  .floating-contact-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .floating-trigger-btn {
    width: 55px;
    height: 55px;
  }
  .contact-popup-box {
    width: 300px;
    bottom: 75px;
  }

  /* --- Policy Pages --- */
  .policy-hero {
    padding: 130px 0 80px;
  }
  .policy-body {
    padding: 40px 30px;
  }
  .policy-container {
    margin-top: -60px;
  }
  .policy-title {
    font-size: 1.6rem;
  }

  /* --- Scroll Ship hidden --- */
  .scroll-ship {
    display: none;
  }

  /* --- Section general --- */
  .section-padding {
    padding: 50px 0;
  }
}

/* =========================================
   SMALL TABLET / LARGE MOBILE (max-width: 767px)
   ========================================= */
@media (max-width: 767px) {
  /* --- Header --- */
  .nav-logo {
    font-size: 1.35rem;
  }
  .main-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* --- Hero --- */
  .hero-section {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 2rem;
  }
  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
  }
  .hero-tag .line {
    width: 25px;
  }
  .hero-stats {
    gap: 1.2rem;
    justify-content: center;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .hero-cta {
    padding: 11px 26px;
    font-size: 0.76rem;
  }
  .hero-wave-top,
  .hero-wave-bottom {
    height: 60px;
  }
  .hero-wave-bottom svg {
    height: 100%;
    display: block;
  }

  /* --- About Section --- */
  .about-number {
    font-size: 5rem;
  }
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  /* --- Services --- */
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .svc-card {
    height: 140px;
  }
  .services-light {
    padding-bottom: 30px;
  }

  /* --- Why Choose Us --- */
  .why-choose-redesign {
    padding-top: 30px;
  }
  .why-choose-redesign .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  .feature-check-icon {
    width: 26px;
    height: 26px;
  }
  .feature-check-icon svg {
    width: 12px;
    height: 12px;
  }

  /* --- Benefits Globe --- */
  .benefits-globe-proper-section {
    padding: 35px 0;
  }
  .globe-center-wrap {
    flex: 0 0 260px;
    width: 260px;
    height: 260px;
    margin: 15px auto;
  }
  #globe-canvas-container {
    width: 240px !important;
    height: 240px !important;
  }
  .pgc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
  }
  .pgc-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-light) !important;
  }
  .pgc-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .pgc-text h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .pgc-text p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .proper-globe-card {
    padding: 16px;
    gap: 14px;
    border-radius: 16px;
  }

  /* --- Testimonials --- */
  .review-card {
    width: 280px;
    padding: 1.5rem;
  }
  .review-text {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  /* --- Counter Grid --- */
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .counter-value {
    font-size: 2rem;
  }

  /* --- Contact Section --- */
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .premium-input {
    padding: 12px 16px !important;
    font-size: 0.88rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 3rem 0 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .footer-links a {
    margin: 0 0.5rem;
    font-size: 0.82rem;
  }
  .footer-logo {
    font-size: 1.5rem;
  }
  .footer-desc {
    font-size: 0.82rem;
  }
  .footer-heading {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .social-links a {
    width: 36px;
    height: 36px;
  }

  /* --- Section Shared --- */
  .section-padding {
    padding: 40px 0;
  }
  .section-tag {
    font-size: 13px;
    letter-spacing: 2.5px;
  }
  .section-desc {
    font-size: 0.82rem;
  }

  /* --- Policy Pages --- */
  .policy-hero {
    padding: 120px 0 70px;
  }
  .policy-body {
    padding: 25px 18px;
  }
  .policy-container {
    margin-top: -50px;
    border-radius: 20px;
  }
  .policy-title {
    font-size: 1.4rem;
  }
  .policy-intro {
    font-size: 0.95rem;
  }
  .policy-item {
    padding-left: 50px;
  }
  .policy-num {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
    border-radius: 10px;
  }
  .policy-item-title {
    font-size: 1.05rem;
  }
  .badge-date {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  /* FAQ accordion - single column */
  #mainFaqAccordion .col-lg-6 {
    width: 100%;
  }
  .premium-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 15px 16px;
  }

  /* --- Floating Widget --- */
  .floating-contact-wrapper {
    bottom: 15px;
    right: 15px;
  }
  .floating-trigger-btn {
    width: 50px;
    height: 50px;
  }
  .floating-trigger-btn .chat-icon-inner {
    width: 22px;
    height: 22px;
  }
  .contact-popup-box {
    width: 280px;
    bottom: 68px;
    right: -5px;
  }
  .popup-pane {
    padding: 24px 20px;
  }
  .permission-inner {
    margin: -24px -20px 20px -20px;
    padding: 24px 20px;
  }

  /* --- Certificate Cards --- */
  .certificate-img-wrapper {
    padding: 20px;
    min-height: 220px;
  }
  .certificate-img {
    max-height: 180px;
  }

  /* --- Admin --- */
  .admin-main-content {
    padding: 15px 12px;
  }
  .admin-mobile-topbar {
    margin: -15px -12px 15px -12px;
    padding: 10px 12px;
  }
  .admin-stat-card {
    padding: 1.2rem;
  }
}

/* =========================================
   MOBILE (max-width: 576px)
   ========================================= */
/* Phone number stacking for all screens */
.phone-stack-universal {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.phone-stack-universal span {
  display: block !important;
}

@media (max-width: 576px) {
  /* --- Hero --- */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: auto;
    height: auto;
  }
  /* Hero image/video: always cover, never cut on mobile */
  .hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 0;
  }
  .hero-bg > div {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center bottom !important; /* Change to bottom or center for better mobile face/content visibility */
  }
  .hero-bg video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    letter-spacing: -0.5px;
  }
  .hero-title .blue-text {
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  .hero-cta {
    padding: 10px 22px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    justify-content: space-around;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  /* --- About --- */
  .about-number {
    font-size: 3.5rem;
    top: -5px;
    left: -5px;
  }
  .lottie-container {
    max-width: 280px;
  }

  /* --- Services --- */
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .svc-card {
    height: 125px;
  }
  .svc-icon {
    width: 34px;
    height: 34px;
  }
  .svc-icon svg {
    width: 16px;
    height: 16px;
  }
  .svc-front span {
    font-size: 0.65rem;
  }
  .svc-back p {
    font-size: 0.62rem;
  }
  .services-light {
    padding-bottom: 20px;
  }

  /* --- Why Choose Us --- */
  .why-choose-redesign {
    padding-top: 20px;
  }
  .why-choose-redesign .section-title {
    font-size: 1.35rem !important;
  }
  .why-image-single-wrap {
    border-radius: 20px;
  }

  /* --- Benefits Globe --- */
  .globe-center-wrap {
    flex: 0 0 380px;
    width: 380px;
    height: 380px;
    margin: 10px auto;
    order: -1; /* Place globe at the top on mobile */
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
  }
  #globe-canvas-container {
    width: 100% !important;
    height: 100% !important;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
  }
  .pgc-icon {
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: 10px;
  }
  .pgc-text h5 {
    font-size: 0.88rem;
  }
  .pgc-text p {
    font-size: 0.74rem;
  }
  .proper-globe-card {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }
  .section-title.text-white {
    font-size: 1.4rem;
  }
  .benefits-globe-proper-section {
    padding: 30px 0;
  }
  .benefits-globe-proper-section .section-tag {
    font-size: 11px;
  }

  /* --- Testimonials --- */
  .review-card {
    width: 260px;
    padding: 1.2rem;
    border-radius: 14px;
  }
  .review-text {
    font-size: 0.78rem;
  }
  .marquee-track {
    gap: 15px;
  }

  /* --- Contact --- */
  .premium-form-card {
    padding: 5px;
  }
  .premium-input {
    padding: 11px 14px !important;
    font-size: 0.85rem;
    border-radius: 10px !important;
  }
  /* --- Contact Info Items (Contact Page) --- */
  .contact-info-item-new {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .contact-icon-circle {
    flex-shrink: 0 !important;
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .contact-icon-circle svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* --- Footer --- */
  .footer {
    padding: 2.5rem 0 1rem;
    text-align: center;
  }
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
  /* Footer contact info: fix icon + text layout on mobile */
  .footer-links li.d-flex {
    justify-content: flex-start !important; /* Left start for better alignment inside centered col */
    align-items: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
    max-width: 320px;
    margin: 0 auto 12px auto;
  }
  .footer-links li.d-flex svg {
    flex-shrink: 0 !important;
    margin-top: 4px !important;
    width: 16px !important;
    height: 16px !important;
  }
  .footer-links li.d-flex span, .footer-links li.d-flex .phone-stack {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    word-break: break-all;
  }
  .footer-links li.d-flex a {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    display: inline-block;
  }
  /* Contact page phone stacking - now universal via class name */
  .phone-stack-universal .sep {
    display: none !important;
  }

  /* --- Section shared --- */
  .section-padding {
    padding: 35px 0;
  }
  .section-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .section-tag .line {
    width: 18px;
  }
  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }
  .section-desc {
    font-size: 0.78rem;
    line-height: 1.7;
  }
  .blue-divider {
    margin: 0.8rem 0;
  }

  /* --- Policy pages --- */
  .policy-hero {
    padding: 100px 0 60px;
  }
  .policy-hero .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .policy-hero .hero-subtitle {
    font-size: 0.78rem;
  }
  .policy-body {
    padding: 20px 15px;
  }
  .policy-container {
    margin-top: -40px;
    border-radius: 16px;
  }
  .policy-title {
    font-size: 1.2rem;
  }
  .policy-intro {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .policy-item {
    padding-left: 45px;
  }
  .policy-num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    border-radius: 8px;
  }
  .policy-item-title {
    font-size: 0.95rem;
  }
  .policy-grid {
    gap: 25px;
  }
  .policy-list li {
    font-size: 0.85rem;
    padding-left: 20px;
    margin-bottom: 8px;
  }
  .policy-footer-contact {
    padding: 20px 15px !important;
  }
  .policy-footer-contact h3,
  .policy-footer-contact h4 {
    font-size: 1.1rem;
  }

  /* --- Floating Contact Widget --- */
  .contact-popup-box {
    width: calc(100vw - 40px);
    max-width: 300px;
    right: -10px;
  }
  .floating-contact-wrapper {
    bottom: 12px;
    right: 12px;
  }
  .floating-trigger-btn {
    width: 48px;
    height: 48px;
  }

  /* --- Certificate Cards --- */
  .certificate-img-wrapper {
    padding: 15px;
    min-height: 180px;
  }
  .certificate-img {
    max-height: 150px;
  }
  .certificate-info h5 {
    font-size: 0.85rem !important;
  }

  /* --- Counter items --- */
  .counter-item {
    padding: 1.2rem 1rem;
  }
  .counter-value {
    font-size: 1.8rem;
  }
  .counter-label {
    font-size: 0.6rem;
  }

  /* --- Benefit Card Mobile --- */
  .benefit-card {
    padding: 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  /* --- Admin Desktop Hide (Already handled) --- */
  .admin-mobile-topbar {
    margin: -15px -12px 12px -12px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE (max-width: 400px)
   ========================================= */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-subtitle {
    font-size: 0.74rem;
  }
  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
  }
  .hero-cta {
    font-size: 0.68rem;
    padding: 10px 18px;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-tag {
    font-size: 10px;
  }
  .svc-card {
    height: 115px;
  }
  .svc-front span {
    font-size: 0.6rem;
  }
  .svc-icon {
    width: 30px;
    height: 30px;
  }
  .svc-icon svg {
    width: 14px;
    height: 14px;
  }
  .review-card {
    width: 240px;
    padding: 1rem;
  }
  .review-text {
    font-size: 0.74rem;
  }
  .contact-popup-box {
    width: calc(100vw - 30px);
  }
  .globe-center-wrap {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    margin: 20px auto;
  }
  #globe-canvas-container {
    width: 300px !important;
    height: 300px !important;
    margin-bottom: 35px !important;
  }
  .policy-title {
    font-size: 1.05rem;
  }
  .policy-hero {
    padding: 90px 0 50px;
  }
  .footer-logo {
    font-size: 1.3rem;
  }
  .certificate-img-wrapper {
    min-height: 150px;
    padding: 12px;
  }
  .certificate-img {
    max-height: 120px;
  }
}

/* =========================================
   ADMIN PANEL - Mobile Top Bar (Hidden on Desktop)
   ========================================= */
.admin-mobile-topbar {
  display: none !important;
}
.admin-sidebar-overlay {
  display: none;
}

/* =========================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================= */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover effects on touch */
  .service-card-wrapper:hover .service-card {
    transform: none;
  }
  .svc-card:hover .svc-card-inner {
    transform: none;
  }
  .proper-globe-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.03);
  }
  .proper-globe-card-right:hover {
    transform: none;
  }
  /* Make flip cards tap-friendly */
  .svc-card.tapped .svc-card-inner {
    transform: rotateY(180deg);
  }
  .service-card-wrapper.tapped .service-card {
    transform: rotateY(180deg);
  }
}

/* =========================================
   PRINT STYLES (basic)
   ========================================= */
@media print {
  .main-header,
  .floating-contact-wrapper,
  .hero-wave-top,
  .hero-wave-bottom,
  .scroll-ship,
  .admin-sidebar {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .section-padding {
    padding: 20px 0;
  }
}

