/* =====================================================
   PTScargo - Main Stylesheet
   Color Scheme: #0d3968 (Deep Blue), #dae4ee (Light Blue), #e3e2dd (Off-White)
   ===================================================== */

:root {
  --primary-color: #0d3968;
  --primary-dark: #082542;
  --primary-light: #dae4ee;
  --accent-color: #d1d5db; /* Neutral accent closer to logo/trucks */
  --accent-dark: #9ca3af;
  --highlight: #f59e0b; /* Amber for CTAs/Highlight from reference image buttons */
  --dark-color: #1e293b;
  --light-bg: #f3f4f6;
  --white: #ffffff;
  --border-color: #e2e8f0;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f8fafc;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-primary {
  color: var(--primary-color);
}
.text-highlight {
  color: var(--highlight);
}
.text-white {
  color: var(--white);
}
.bg-primary {
  background-color: var(--primary-color);
}
.bg-light {
  background-color: var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--highlight);
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  color: #fff;
}

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

.btn-dark:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background-color: #fca5a5; /* Fallback for orange/red top bar in ref image */
  background: linear-gradient(90deg, #ff9800 0%, #ff5722 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-bar a {
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  opacity: 0.9;
}

/* =====================================================
   HEADER
   ===================================================== */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  gap: 40px;
}

.logo img {
  width: 170px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 15px;
  padding: 10px 0;
  border: 1px solid #e2e8f0;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--dark-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-item i {
  color: var(--highlight);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
  color: var(--primary-color);
  padding-left: 25px;
}

.dropdown-item:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  background: none;
  border: none;
  cursor: pointer;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  min-height: 700px;
  height: 85vh; /* Viewport height dependent */
  background: linear-gradient(rgba(13, 57, 104, 0.8), rgba(13, 57, 104, 0.8)), url("../images/Isuzu-Elf.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  overflow: visible; /* Important for overlap */
  padding-top: 160px;
  padding-bottom: 120px; /* Space for box */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(13, 57, 104, 0.9) 0%,
    rgba(13, 57, 104, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allows paragraph to break to new line */
  align-items: center;
}

.hero-buttons p {
  width: 100%; /* Force paragraph to take full width */
}

.btn-wa {
  background-color: #25d366;
  color: white;
}

.btn-wa:hover {
  background-color: #128c7e;
  color: white;
}

/* =====================================================
   TRACKING BOX
   ===================================================== */
.tracking-box-wrapper {
  margin-top: -100px; /* Strong overlap */
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.tracking-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.track-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-input-group {
  display: flex;
  gap: 10px;
}

.track-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.track-input:focus {
  border-color: var(--primary-color);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-new {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  transition: 0.3s;
  height: 100%;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(13, 57, 104, 0.1);
  border-color: var(--primary-light);
}

.service-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.service-card-new:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-content-new {
  padding: 25px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-content-new h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-content-new p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  gap: 10px;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
  padding: 80px 0;
  background-color: var(--primary-light);
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card-new {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.feature-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(13, 57, 104, 0.3);
}

.feature-card-new h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-full {
  background:
    linear-gradient(rgba(13, 57, 104, 0.9), rgba(13, 57, 104, 0.95)),
    url("../images/Medium-Bus.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-full h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =====================================================
   FOOTER (ENHANCED)
   ===================================================== */
footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #e2e8f0;
  padding-top: 70px;
  border-top: 5px solid var(--highlight);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
  border-left: 3px solid var(--highlight);
  padding-left: 15px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--highlight);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  color: var(--highlight);
  margin-top: 5px;
}

.copyright {
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
  background-color: #082542;
}

/* =====================================================
   PROMO PICKUP SECTION
   ===================================================== */
.promo-pickup-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a3d5c 100%);
  position: relative;
  overflow: hidden;
}

.promo-pickup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.promo-pickup-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-pickup-content {
  color: white;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--highlight) 0%, #d97706 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  }
}

.promo-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.promo-title .highlight-text {
  color: var(--highlight);
  font-size: 3rem;
  display: block;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.promo-title .main-text {
  color: white;
  font-size: 4rem;
  display: block;
}

.promo-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 500;
}

.promo-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--highlight);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--highlight);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 1rem;
}

.promo-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 30px 0 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-cta-text i {
  color: var(--highlight);
}

.promo-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn-large {
  padding: 16px 35px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.promo-pickup-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 30px 25px;
}

.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay-badge i {
  color: var(--highlight);
  font-size: 1.2rem;
}

/* =====================================================
   SERVICES SHOWCASE SECTION
   ===================================================== */
.services-showcase-section {
  padding: 100px 0;
  background: #f8fafc;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #e2e8f0;
}

.showcase-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.showcase-reverse {
  direction: rtl;
}

.showcase-reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.02);
}

.showcase-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--highlight) 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.showcase-badge i {
  font-size: 2rem;
  color: white;
}

.showcase-content h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.showcase-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.showcase-content p strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.showcase-features {
  list-style: none;
  margin: 25px 0 30px;
  padding: 0;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #475569;
  font-weight: 500;
}

.showcase-features li i {
  color: #22c55e;
  margin-top: 4px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.showcase-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 1rem;
}

.showcase-content .btn i {
  transition: transform 0.3s ease;
}

.showcase-content .btn:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .tracking-box {
    grid-template-columns: 1fr;
  }

  header .container {
    gap: 20px;
  }

  .logo img {
    width: 150px;
    max-height: 55px;
  }

  .nav-menu {
    gap: 25px;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  header .container {
    gap: 15px;
  }

  .logo img {
    width: 140px;
    max-height: 50px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 10px;
    padding: 0;
    background: transparent;
  }

  .dropdown-item {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .nav-dropdown .nav-link i {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-section {
    height: auto;
    padding: 140px 0 80px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* Showcase Responsive */
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .showcase-reverse {
    direction: ltr;
  }

  .showcase-image img {
    height: 300px;
  }

  .showcase-content h3 {
    font-size: 1.6rem;
  }

  /* Promo Pickup Responsive */
  .promo-pickup-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promo-title {
    font-size: 2.5rem;
  }

  .promo-title .highlight-text {
    font-size: 2rem;
  }

  .promo-title .main-text {
    font-size: 3rem;
  }

  .promo-subtitle {
    font-size: 1.1rem;
  }

  .feature-item {
    padding: 12px;
  }

  .promo-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  header {
    padding: 12px 0;
  }

  .logo img {
    width: 120px;
    max-height: 45px;
  }

  header .container {
    gap: 10px;
  }
}
/* =====================================================
   PROMO SECTION (FREE PICKUP)
   ===================================================== */
.promo-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.promo-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 57, 104, 0.2);
}

.promo-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.promo-content h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.promo-content h2 span {
    color: var(--highlight);
    display: block;
    font-size: 4rem;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.promo-image {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.promo-image img {
    max-height: 350px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transform: scale(1.1);
    transition: 0.5s;
}

.promo-container:hover .promo-image img {
    transform: scale(1.15) rotate(2deg);
}

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    opacity: 0.7;
}

.partner-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    transition: 0.3s;
    opacity: 0.6;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* =====================================================
   CONTACT FORM SECTION
   ===================================================== */
.contact-split-section {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.contact-info-side {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side {
    flex: 1;
    padding: 80px;
    background: #fff;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-side p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.info-list {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--highlight);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    transition: 0.3s;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 57, 104, 0.1);
}

/* =====================================================
   BLOG / NEWS SECTION
   ===================================================== */
.news-section {
    padding: 100px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-img {
    height: 200px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--highlight);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: 0.3s;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .promo-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .promo-content p {
        margin: 0 auto 30px;
    }
    
    .promo-content h2 span {
        font-size: 3rem;
    }
    
    .contact-split-section {
        flex-direction: column;
    }
    
    .contact-info-side, .contact-form-side {
        padding: 50px 30px;
    }
}
/* =====================================================
   CONTACT SECTION REDESIGN
   ===================================================== */
.contact-split-section {
    padding: 100px 0;
    background: #f1f5f9;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 90%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    flex-wrap: wrap; /* Ensure responsiveness */
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #061e38 100%);
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info-side p {
    color: #e2e8f0;
    margin-bottom: 40px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.info-list {
    position: relative;
    z-index: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--highlight);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.contact-form-side {
    flex: 1.2;
    min-width: 300px;
    padding: 60px;
    background: #fff;
}

.contact-form-side h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.form-control {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #fff;
    border-color: var(--highlight);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.btn-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 57, 104, 0.2);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }
    
    .contact-info-side, .contact-form-side {
        padding: 40px 25px;
    }
}
/* =====================================================
   HEADER REDESIGN
   ===================================================== */
/* Top bar refined */
.top-bar {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar a {
    color: #e2e8f0;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--highlight);
}

/* Header main refined */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    gap: 40px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 10px 0;
    position: relative;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header CTA Button refined */
header .btn-primary {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    border: 2px solid transparent;
}

header .btn-primary:hover {
    background: white;
    color: var(--highlight);
    border-color: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}
/* =====================================================
   UNIQUE "SLANTED" HEADER DESIGN
   ===================================================== */

/* Reset Header Base */
header {
    background: transparent; /* We build background with pseudos */
    box-shadow: none;
    border: none;
    height: 100px; /* Taller to accommodate design */
    position: fixed; /* Sticky header */
    width: 100%;
    z-index: 1000;
    top: 0;
    overflow: visible;
    transition: all 0.3s ease;
}

header .container {
    position: relative;
    z-index: 10;
    height: 100%;
}

/* 1. The Slanted Backgrounds */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%; /* Reduced from 45% to prevent overlap with Nav */
    height: 100%;
    background: #ffffff;
    transform: skewX(-20deg);
    transform-origin: top left;
    z-index: 1;
    border-right: 5px solid var(--highlight); /* Orange divider */
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 75%; /* Increased from 65% to cover Home link */
    height: 100%;
    background: var(--primary-color); /* Deep Blue */
    transform: skewX(-20deg);
    transform-origin: top right;
    z-index: 0;
    border-bottom: 5px solid rgba(0,0,0,0.1);
}

/* Fix for full width cleanliness on edges */
/* We need a wrapper to hide the jagged skewed edges if any, 
   but simplistic skew on pseudo works well for visual flair */

/* 2. Logo Styling (Sits on White) */
.logo {
    position: relative;
    z-index: 10;
    padding-left: 20px;
    display: flex;
    align-items: center;
    border-left: 5px solid var(--highlight); /* Additional accent */
    padding-left: 25px;
    height: 100%;
}

.logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(1px 1px 0 white) 
            drop-shadow(-1px -1px 0 white) 
            drop-shadow(1px -1px 0 white) 
            drop-shadow(-1px 1px 0 white);
}

/* 3. Navigation Styling (Sits on Blue) */
.nav-menu {
    margin-left: auto; /* Push to right */
    padding-right: 50px; /* Give space from skewed edge */
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important; /* Force white text */
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff !important;
    opacity: 1;
}

/* Indicator dot instead of underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--highlight);
    border-radius: 50%;
    transition: width 0.3s, border-radius 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    border-radius: 2px; /* Expands to line */
}

/* 4. CTA Button (Special Style) */
header .btn-primary {
    background: #ffffff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

header .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 107, 187, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

header .btn-primary:hover::before {
    left: 100%;
}

header .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
    background: var(--highlight) !important;
    color: white !important;
}

/* 5. Sticky/Scrolled State */
header.scrolled {
    height: 80px;
    background: var(--primary-color); /* Fallback */
}

header.scrolled::before {
    /* Retract white area or change visual */
    transform: skewX(0); /* Flatten */
    width: 100%; /* Full width white */
    border-right: none;
    background: rgba(255,255,255, 0.98);
}

header.scrolled::after {
    display: none; /* Hide blue part on scroll for cleaner sticky look */
}

/* Adjustment for scrolled state contents */
header.scrolled .nav-link {
    color: var(--dark-color) !important;
}

header.scrolled .logo {
    border-left: none;
}

header.scrolled .btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Top bar adjustment */
.top-bar {
    background: #0f172a; /* Darker to contrast with white header part */
    position: relative;
    z-index: 20;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    header::before, header::after {
        display: none; /* Simplify for mobile */
    }
    
    header {
        background: white;
        height: 70px;
    }
    
    .nav-link {
        color: var(--dark-color) !important;
    }
    
    .logo {
        border: none;
        padding-left: 0;
    }
}
/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 100px 0 80px;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.stars {
    color: #fbbf24; /* Amber-400 */
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-details h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-weight: 700;
}

.user-details span {
    font-size: 0.85rem;
    color: #64748b;
}

.quote-icon {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(243, 244, 246, 0.8);
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   PARTNERS SECTION REDESIGN
   ===================================================== */
.partners-section {
    padding: 80px 0;
    background: white;
    position: relative;
    /* Optional: Add a subtle pattern if desired, or keep it clean white */
}

/* Container for the scrolling marquee effect (optional) or simplified grid */
/* For this redesign, let's make it a clean, premium grid with hover cards */

.partners-container-custom {
    text-align: center;
}

.partners-header-custom h2 {
    font-size: 1.5rem;
    color: #94a3b8; /* Muted color for "Trusted by" text */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.partners-header-custom h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--highlight);
    margin: 15px auto 0;
    border-radius: 2px;
}

.partners-grid-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 180px;
    height: 120px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--highlight);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
/* =====================================================
   HERO SLIDER STYLES
   ===================================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background Images for Slides */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease; /* Ken Burns effect */
}

.hero-slide.active .slide-bg {
    transform: scale(1.1); /* Zoom in slowly when active */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 57, 104, 0.95) 0%, rgba(13, 57, 104, 0.6) 100%);
    z-index: 0;
}

/* Slide Content Animation */
.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s; /* Delay to wait for slide fade */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--highlight);
    border-color: var(--highlight);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slider-nav {
        right: 20px;
        bottom: 30px;
    }
}

/* =====================================================
   HERO SLIDER STYLES
   ===================================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background Images for Slides */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease; /* Ken Burns effect */
}

.hero-slide.active .slide-bg {
    transform: scale(1.1); /* Zoom in slowly when active */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 57, 104, 0.95) 0%, rgba(13, 57, 104, 0.6) 100%);
    z-index: 0;
}

/* Slide Content Animation */
.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s; /* Delay to wait for slide fade */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Arrows (Simple Chevrons) */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 20px; /* Minimal padding */
    pointer-events: none; /* Pass clicks */
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    font-size: 1.5rem; /* Adjust Chevron size */
}

/* Specific styling for the icons if needed */
.slider-btn i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.slider-btn:hover {
    background: transparent;
    color: white;
    transform: scale(1.2);
    border-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .slider-nav {
        display: flex; /* Keep showing on mobile? Or hide? Let's keep based on req */
        padding: 0 10px;
   }
   .slider-btn {
       font-size: 1.2rem;
       width: 40px;
       height: 40px;
   }
}
/* =====================================================
   HERO SLIDER STYLES
   ===================================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background Images for Slides */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease; /* Ken Burns effect */
}

.hero-slide.active .slide-bg {
    transform: scale(1.1); /* Zoom in slowly when active */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 57, 104, 0.95) 0%, rgba(13, 57, 104, 0.6) 100%);
    z-index: 0;
}

/* Slide Content Animation */
.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s; /* Delay to wait for slide fade */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Arrows (Simple Chevrons) */
.slider-nav {
    position: absolute;
    top: 58%; /* Adjusted downwards for optical centering */
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: none; /* Full screen width */
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 40px; /* Padding from screen edges */
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    font-size: 1.5rem; /* Adjust Chevron size */
}

/* Specific styling for the icons if needed */
.slider-btn i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.slider-btn:hover {
    background: transparent;
    color: white;
    transform: scale(1.2);
    border-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .slider-nav {
        display: flex; /* Keep showing on mobile? Or hide? Let's keep based on req */
        padding: 0 10px;
   }
   .slider-btn {
       font-size: 1.2rem;
       width: 40px;
       height: 40px;
   }
}
