/* ============================================================
   WORLDSTAR SHIPPING SERVICES - Main Stylesheet
   Author: Raga Designers
   Version: 1.0
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  --primary: #002B5B;
  --primary-dark: #001A3A;
  --primary-light: #003d7a;
  --accent: #E63946;
  --accent-dark: #c0292e;
  --accent-light: #ff5a62;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --light-gray: #EEF1F6;
  --mid-gray: #A0AABB;
  --dark-gray: #4A5568;
  --text-dark: #0D1B2A;
  --text-body: #3A4555;
  --success: #28a745;
  --warning: #ffc107;

  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 43, 91, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 43, 91, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 43, 91, 0.18);
  --shadow-xl: 0 20px 60px rgba(0, 43, 91, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;

  --header-height: 85px;
  --topbar-height: 42px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

section { position: relative; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(230, 57, 70, 0.25);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}

.section-title span { color: var(--accent); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--dark-gray);
  max-width: 620px;
  line-height: 1.8;
}

.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

.text-accent { color: var(--accent) !important; }
.text-primary-brand { color: var(--primary) !important; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35);
  border: 2px solid var(--accent);
}

.btn-primary-brand:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.btn-white-solid:hover {
  background: var(--off-white);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ============================================================
   5. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }

.top-bar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.top-bar-contact i { color: var(--accent); font-size: 0.85rem; }

.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-left: 6px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   6. HEADER / NAVBAR
   ============================================================ */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

#mainHeader.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 0;
  min-height: var(--header-height);
}

.navbar-brand img {
  height: 105px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand .logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .logo-text .logo-main {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.navbar-brand .logo-text .logo-main span { color: var(--accent); }

.navbar-brand .logo-text .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-item { position: relative; }

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 14px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }

.navbar-nav .nav-link:hover { color: var(--accent) !important; }

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 240px;
  top: calc(100% + 8px);
  border-top: 3px solid var(--accent);
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-nav .dropdown-item {
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.navbar-nav .dropdown-item i {
  color: var(--accent);
  width: 18px;
  font-size: 0.875rem;
}

.navbar-nav .dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 20px;
}

/* Mega Menu */
.mega-menu {
  min-width: 700px !important;
  padding: 24px !important;
}

.mega-menu-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

.navbar-phone i { color: var(--accent); }

.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002B5B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 27, 58, 0.88) 0%,
    rgba(0, 43, 91, 0.75) 50%,
    rgba(0, 27, 58, 0.6) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-content { position: relative; z-index: 3; padding: 120px 0 80px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  color: #FF8C94;
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag i { color: var(--accent); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

/* Tracking Widget */
.tracking-widget {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 560px;
}

.tracking-widget h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tracking-widget h5 i { color: var(--accent); }

.tracking-form {
  display: flex;
  gap: 10px;
}

.tracking-form select,
.tracking-form input {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
}

.tracking-form select option { background: var(--primary); color: white; }

.tracking-form input::placeholder { color: rgba(255,255,255,0.5); }

.tracking-form select:focus,
.tracking-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.18);
}

.tracking-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tracking-form button:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hero Stats Strip */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.hero-stat-item {
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1;
}

.hero-stat-item .stat-number span { color: var(--accent); }

.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   8. STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
}

.stat-card {
  text-align: center;
  color: white;
  padding: 30px 20px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-card .stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.stat-card .counter {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1;
}

.stat-card .counter-suffix { color: var(--accent); }

.stat-card .stat-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   9. SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(230, 57, 70, 0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  font-size: 1.8rem;
  color: var(--primary);
}

.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.about-image-grid {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--accent);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .exp-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-heading);
}

.about-experience-badge .exp-text {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
}

.about-feature-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin: 0;
}

/* ============================================================
   11. WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-card:hover::after { transform: scaleX(1); }

.why-card-num {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.why-card .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .icon-wrap { background: var(--accent); color: white; }

.why-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================================
   12. RELOCATIONS SECTION
   ============================================================ */
.relocations-section {
  padding: 100px 0;
  background: var(--off-white);
}

.relocation-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.relocation-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.relocation-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.relocation-feature:hover {
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.relocation-feature i {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.relocation-feature h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.relocation-feature p {
  font-size: 0.82rem;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   13. INDUSTRIES SECTION
   ============================================================ */
.industries-section {
  padding: 100px 0;
  background: var(--white);
}

.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.industry-card:hover img { transform: scale(1.08); }

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,27,58,0.9) 0%, rgba(0,27,58,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(230,57,70,0.85) 0%, rgba(0,27,58,0.5) 100%);
}

.industry-card-overlay h5 {
  color: white;
  font-size: 1rem;
  margin: 0;
}

.industry-card-overlay i {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  transition: var(--transition);
}

.industry-card:hover .industry-card-overlay i {
  color: white;
  transform: scale(1.2);
}

/* ============================================================
   14. PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.process-step-num {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.process-step:hover .process-step-num {
  background: var(--accent);
  transform: scale(1.1);
}

.process-step h5 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.process-connector {
  position: absolute;
  top: 75px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 1;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.testimonial-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  font-size: 4rem;
  color: rgba(230, 57, 70, 0.12);
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 0.85rem;
  margin-bottom: 16px;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-author img {
  width: 52px!important;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-author .author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-author .author-info .position {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ============================================================
   16. CTA BANNER SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.2) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.cta-feature i { color: var(--accent); }

.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   17. CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-info-card {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  height: 100%;
}

.contact-info-card h3 {
  color: white;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.contact-info-items { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item .info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-item .info-value {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-item .info-value a { color: white; }
.contact-info-item .info-value a:hover { color: var(--accent); }

.contact-social-links { display: flex; gap: 12px; margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); }

.contact-social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: 6px;
}

.contact-form-card .form-subtitle {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-body);
  background: var(--off-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 43, 91, 0.08);
}

.form-control::placeholder { color: var(--mid-gray); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.35);
}

.form-success-msg {
  display: none;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--success);
  font-size: 0.9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

/* Map Section */
.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: rgba(255,255,255,0.75);
  color: var(--primary-dark);
  padding: 10px 0 0;
}

.footer-brand .logo-text .logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.footer-brand .logo-text .logo-main span { color: var(--accent); }

.footer-brand .logo-text .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  /* margin: 16px 0 24px; */
    /* margin: 86px 0 24px; */
  color:var(--primary-dark);
}
 
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color:var(--primary-dark);
  transform: translateY(-2px);
}

.footer h5 {
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--primary-dark);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color:var(--primary-dark);
  line-height: 1.6;
}

.footer-contact-item a {
  color: var(--primary-dark);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid var(--primary-dark);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--primary-dark);
  margin: 0;
}

.footer-bottom a { color:var(--primary-dark);}
.footer-bottom a:hover { color: var(--accent); }

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: white;
  font-size: 0.875rem;
  font-family: inherit;
  margin-bottom: 10px;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-newsletter button {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover { background: var(--accent-dark); }

/* ============================================================
   19. BACK TO TOP / WHATSAPP FLOAT
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsappRing 2s ease-in-out infinite;
}

@keyframes whatsappRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   20. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,27,58,0.95), rgba(0,43,91,0.7));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: white; margin-bottom: 12px; }

.breadcrumb-nav { display: flex; align-items: center; gap: 8px; }

.breadcrumb-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}

.breadcrumb-nav a:hover { color: var(--accent); }

.breadcrumb-nav span { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

.breadcrumb-nav .current { color: var(--accent); font-size: 0.875rem; }

/* ============================================================
   21. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  text-align: center;
}

.preloader-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  animation: preloaderPulse 1.5s ease infinite;
}

.preloader-logo .logo-main span { color: var(--accent); }

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: preloaderProgress 2s ease forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes preloaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================================
   22. UTILITY CLASSES
   ============================================================ */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.bg-primary-brand { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }
.bg-off-white { background: var(--off-white) !important; }
.bg-light-gray { background: var(--light-gray) !important; }

.overlay-text {
  background: linear-gradient(135deg, rgba(0,27,58,0.92), rgba(0,61,122,0.85));
  position: relative;
}

.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-line.center { margin: 16px auto 24px; }

/* ============================================================
   23. ANIMATIONS (AOS Custom Additions)
   ============================================================ */
.fade-up { animation: fadeUp 0.7s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   24. RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .mega-menu { min-width: 560px !important; }
}

@media (max-width: 991px) {
  :root { --header-height: 72px; --topbar-height: auto; }

  .top-bar { height: auto; padding: 8px 0; }

  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .navbar-nav .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--light-gray); border-radius: var(--radius-sm); }

  .mega-menu { min-width: 100% !important; }

  .navbar-cta { margin: 16px 0 0; }

  .hero-stats-strip .col-md-3:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .about-img-secondary { display: none; }
  .about-experience-badge { left: 0; }

  .hero-content { padding: 40px 15px 60px; }

  .tracking-form { flex-wrap: wrap; }
  .tracking-form input, .tracking-form select { flex: 1 1 100%; }
}

@media (max-width: 767px) {
  .stat-card:not(:last-child)::after { display: none; }

  .relocation-features-grid { grid-template-columns: 1fr; }

  .contact-form-card { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }

  .hero-title { font-size: 2rem; }

  .process-connector { display: none; }

  .cta-features { flex-direction: column; align-items: center; }
}

@media (max-width: 575px) {
  section { padding: 70px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary-brand,
  .hero-actions .btn-white-outline { width: 100%; justify-content: center; }
}


.client-section {
  background: #f8f9fa;
}

.client-logo {
  max-height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}



/******************* Timeline Demo - 4 *****************/
.main-timeline4{overflow:hidden;position:relative}
.main-timeline4:before{content:"";width:5px;height:70%;background:#333;position:absolute;top:70px;left:50%;transform:translateX(-50%)}
.main-timeline4 .timeline-content:before,.main-timeline4 .timeline:before{top:50%;transform:translateY(-50%);content:""}
.main-timeline4 .timeline{width:50%;padding-left:100px;float:right;position:relative}
.main-timeline4 .timeline:before{width:20px;height:20px;border-radius:50%;background:#fff;border:5px solid #002B5B;position:absolute;left:-10px}
.main-timeline4 .timeline-content{display:block;padding-left:150px;position:relative}
.main-timeline4 .timeline-content:before{width:90px;height:10px;border-top:7px dotted #002B5B;position:absolute;left:-92px}
.main-timeline4 .year{display:inline-block;width:120px;height:120px;line-height:100px;border-radius:50%;border:10px solid #f54957;font-size:30px;color:#f54957;text-align:center;box-shadow:inset 0 0 10px rgba(0,0,0,.4);position:absolute;top:0;left:0}
.main-timeline4 .year:before{content:"";border-left:20px solid #f54957;border-top:10px solid transparent;border-bottom:10px solid transparent;position:absolute;bottom:-13px;right:0;transform:rotate(45deg)}
.main-timeline4 .inner-content{padding:20px 0}
.main-timeline4 .title{font-size:24px;font-weight:600;color:#f54957;text-transform:uppercase;margin:0 0 5px}
.main-timeline4 .description{font-size:14px;color:#6f6f6f;margin:0 0 5px}
.main-timeline4 .timeline:nth-child(2n){padding:0 100px 0 0}
.main-timeline4 .timeline:nth-child(2n) .timeline-content:before,.main-timeline4 .timeline:nth-child(2n) .year,.main-timeline4 .timeline:nth-child(2n):before{left:auto;right:-10px}
.main-timeline4 .timeline:nth-child(2n) .timeline-content{padding:0 150px 0 0}
.main-timeline4 .timeline:nth-child(2n) .timeline-content:before{right:-92px}
.main-timeline4 .timeline:nth-child(2n) .year{right:0}
.main-timeline4 .timeline:nth-child(2n) .year:before{right:auto;left:0;border-left:none;border-right:20px solid #f54957;transform:rotate(-45deg)}
.main-timeline4 .timeline:nth-child(2){margin-top:110px}
.main-timeline4 .timeline:nth-child(odd){margin:-110px 0 0}
.main-timeline4 .timeline:nth-child(even){margin-bottom:80px}
.main-timeline4 .timeline:first-child,.main-timeline4 .timeline:last-child:nth-child(even){margin:0}
.main-timeline4 .timeline:nth-child(2n) .year{border-color:#E63946;color:#E63946}
.main-timeline4 .timeline:nth-child(2) .year:before{border-right-color:#E63946}
.main-timeline4 .timeline:nth-child(2n) .title{color:#E63946}
.main-timeline4 .timeline:nth-child(3n) .year{border-color:#E63946;color:#E63946}
.main-timeline4 .timeline:nth-child(3) .year:before{border-left-color:#E63946}
.main-timeline4 .timeline:nth-child(3n) .title{color:#E63946}
.main-timeline4 .timeline:nth-child(4n) .year{border-color:#E63946;color:#E63946}
.main-timeline4 .timeline:nth-child(4) .year:before{border-right-color:#E63946}
.main-timeline4 .timeline:nth-child(4n) .title{color:#E63946}
@media only screen and (max-width:1200px){.main-timeline4 .year{top:50%;transform:translateY(-50%)}
}
@media only screen and (max-width:990px){.main-timeline4 .timeline{padding-left:75px}
.main-timeline4 .timeline:nth-child(2n){padding:0 75px 0 0}
.main-timeline4 .timeline-content{padding-left:130px}
.main-timeline4 .timeline:nth-child(2n) .timeline-content{padding:0 130px 0 0}
.main-timeline4 .timeline-content:before{width:68px;left:-68px}
.main-timeline4 .timeline:nth-child(2n) .timeline-content:before{right:-68px}
}
@media only screen and (max-width:767px){.main-timeline4{overflow:visible}
.main-timeline4:before{height:100%;top:0;left:0;transform:translateX(0)}
.main-timeline4 .timeline:before,.main-timeline4 .timeline:nth-child(2n):before{top:60px;left:-9px;transform:translateX(0)}
.main-timeline4 .timeline,.main-timeline4 .timeline:nth-child(even),.main-timeline4 .timeline:nth-child(odd){width:100%;float:none;text-align:center;padding:0;margin:0 0 10px}
.main-timeline4 .timeline-content,.main-timeline4 .timeline:nth-child(2n) .timeline-content{padding:0}
.main-timeline4 .timeline-content:before,.main-timeline4 .timeline:nth-child(2n) .timeline-content:before{display:none}
.main-timeline4 .timeline:nth-child(2n) .year,.main-timeline4 .year{position:relative;transform:translateY(0)}
.main-timeline4 .timeline:nth-child(2n) .year:before,.main-timeline4 .year:before{border:none;border-right:20px solid #f54957;border-top:10px solid transparent;border-bottom:10px solid transparent;top:50%;left:-23px;bottom:auto;right:auto;transform:rotate(0)}
.main-timeline4 .timeline:nth-child(2n) .year:before{border-right-color:#1ebad0}
.main-timeline4 .timeline:nth-child(3n) .year:before{border-right-color:#7cba01}
.main-timeline4 .timeline:nth-child(4n) .year:before{border-right-color:#f8781f}
.main-timeline4 .inner-content{padding:10px}
}

/*team*/
.team img{
width: 100%;
}
@media (max-width: 767px) {
.navbar-brand img {
  height: 19px;
  width: auto;
  transition: var(--transition);
}
}

.team p{
text-align:justify;
}

/*organigram*/
 .zoom-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-top: 5px solid #002147;
            border-radius: 12px;
            background: #fff;
        }

        .zoom-card:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
            z-index: 100;
        }

        /* --- கோடு இணைப்புகள் (Connectors) --- */
        .line-v {
            width: 2px;
            height: 40px;
            background-color: #cbd5e0;
            margin: 0 auto;
        }

        .horizontal-connector-wrapper {
            display: flex;
            justify-content: center;
            position: relative;
            height: 2px;
            z-index: 1;
        }

        .horizontal-line {
            position: absolute;
            top: 0;
            width: 66.6%; /* கச்சிதமான அகலம் */
            height: 2px;
            background-color: #cbd5e0;
        }

        .node-line-v {
            width: 2px;
            height: 30px; /* நீளம் கூட்டப்பட்டுள்ளது */
            background-color: #cbd5e0;
            margin: 0 auto;
            display: block;
        }

        /* Row இடைவெளியைச் சரிசெய்ய */
        .fixed-row {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .col-lg-4 {
            padding-top: 0 !important;
        }

        /* Titles & Labels */
        .role-tag { font-size: 0.7rem; font-weight: 800; color: #a0aec0; text-transform: uppercase; letter-spacing: 1px; }
        .name-tag { font-size: 1.1rem; font-weight: 700; color: #002147; }
        .dept-header { border-radius: 50px; font-weight: 700; padding: 5px 20px; margin-bottom: 15px; display: inline-block; }
.mtop{
    margin-top: -25px !important;
}