/* ==========================================
   COLOR PALETTE & GLOBAL STYLES
   ========================================== */
:root {
  --primary-red: #9E0013;
  --secondary-orange: #033942;
  --gradient-accent: linear-gradient(135deg, #9E0013 0%, #FF5B00 100%);
  --white: #FFFFFF;
  --text-light: #F4F4F4;
  --dark-overlay: rgba(15, 10, 10, 0.55);
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #333;
  overflow-x: hidden;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Background Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.4), 
    var(--dark-overlay)
  );
  z-index: 1;
}

/* Hero Content Box */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--white);
  transform: translateY(30px);
  transition: transform 0.8s ease-out;
}

.slide.active .hero-content {
  transform: translateY(0);
}

/* Typography & Badges */
.badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 91, 0, 0.3);
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(158, 0, 19, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 91, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-red);
  transform: translateY(-3px);
}

/* Controls & Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.prev-btn { left: 25px; }
.next-btn { right: 25px; }

/* Indicators / Dots */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-orange);
  width: 32px;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .slider-btn {
    display: none; /* Hide arrows on small screens for cleaner mobile view */
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 90px 20px;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  
}

.sub-title {
  display: inline-block;
  color: var(--secondary-orange);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Design & Hover Animation */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(158, 0, 19, 0.12);
  border-color: rgba(255, 91, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Colorful Animated Icon Boxes */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.icon-box svg {
  width: 35px;
  height: 35px;
  transition: stroke 0.3s ease;
}

/* Vibrant Color Variations matching Logo */
.icon-red {
  background: rgba(158, 0, 19, 0.08);
  color: var(--primary-red);
}

.icon-orange {
  background: rgba(255, 91, 0, 0.1);
  color: var(--secondary-orange);
}

.icon-gradient {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 91, 0, 0.25);
}

/* Icon Pulse & Float Animation on Hover */
.service-card:hover .icon-box {
  transform: scale(1.1) rotate(4deg);
}

.service-card:hover .icon-red {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(158, 0, 19, 0.3);
}

.service-card:hover .icon-orange {
  background: var(--secondary-orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 91, 0, 0.3);
}

/* Card Typography */
.service-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.service-card:hover .service-link {
  color: var(--secondary-orange);
  transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 2rem;
  }
}

/* ==========================================
   DESTINATIONS SECTION
   ========================================== */
.destinations-section {
  padding: 90px 20px;
  background-color: #FFFFFF;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Destination Card Container */
.dest-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(158, 0, 19, 0.15);
}

/* Image Container & Hover Zoom */
.dest-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  image-rendering: high-quality;
  image-rendering: crisp-edges;
}

.dest-card:hover .dest-img-box img {
  transform: scale(1.02);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Badges */
.dest-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-romantic {
  background: linear-gradient(135deg, #E91E63 0%, #FF5B00 100%);
}

.badge-culture {
  background: linear-gradient(135deg, #8E24AA 0%, #9E0013 100%);
}

/* Card Content Body */
.dest-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-rating {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 8px;
}

.dest-rating span {
  color: #FFB400;
  font-weight: 700;
}

.dest-content h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 8px;
}

.dest-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Card Footer Bar */
.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EEEEEF;
  padding-top: 15px;
}

.dest-duration {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--secondary-orange);
}

.dest-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-red);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--primary-red);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.dest-btn:hover {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
}


/* Star Rating Icon Color */
.dest-rating span i {
  color: #ffc107;
  margin-right: 4px;
}

/* Card Footer Alignment */
.dest-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 15px;
}

/* Attractive Gradient View Package Button */
.dest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
  transition: all 0.3s ease;
}

.dest-btn i {
  transition: transform 0.3s ease;
}

.dest-btn:hover {
  background: linear-gradient(135deg, #ff5252 0%, #ff763b 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.dest-btn:hover i {
  transform: translateX(5px);
}


/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}




/* ==========================================
   OVERLAPPING COUNTER BANNER SECTION
   ========================================== */
.counter-banner-section {
  position: relative;
  z-index: 20;
  margin-top: -70px; /* Pulls section up to overlap the hero background */
  margin-bottom: 50px;
}

.counter-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* Background image of attractive tour spot */
  background: url('https://images.unsplash.com/photo-1593693397690-362cb9666fc2?q=80&w=1600') center/cover no-repeat;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 5px 15px rgba(158, 0, 19, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Dark gradient overlay over the background image */
.counter-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(158, 0, 19, 0.85) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

/* Grid layout for counter cards */
.counter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 35px 20px;
  gap: 20px;
}

/* Individual Counter Column */
.counter-item {
  text-align: center;
  color: #ffffff;
  padding: 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.counter-item:last-child {
  border-right: none;
}

.counter-item:hover {
  transform: translateY(-4px);
}

/* Icons */
.counter-icon {
  color: #FF5B00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Number formatting */
.counter-number-box {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.counter-number-box .plus {
  color: #FF5B00;
  margin-left: 2px;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #E2E8F0;
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive adjustment for Mobile & Tablet */
@media (max-width: 992px) {
  .counter-banner-section {
    margin-top: -50px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 15px;
  }

  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 20px;
  }

  .counter-item:nth-child(3),
  .counter-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .counter-item:last-child {
    border-bottom: none !important;
  }
}

/* ==========================================
   ATTRACTIVE MAP SECTION
   ========================================== */
.location-section {
  padding: 60px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .sub-title {
  color: #9e0013;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0f172a;
  margin: 5px 0 10px;
}

.section-title p {
  color: #64748b;
  font-size: 1rem;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* Info Card */
.location-card {
  padding: 32px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(158, 0, 19, 0.1);
  color: #9e0013;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header h3 {
  font-size: 1.3rem;
  color: #0f172a;
}

.address-details {
  margin-bottom: 24px;
}

.address-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.address-text strong {
  color: #0f172a;
}

/* Buttons inside Card */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.map-btn-call {
  background-color: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.map-btn-call:hover {
  background-color: #0f172a;
  color: #ffffff;
}

.map-btn-wa {
  background-color: #25d366;
  color: #ffffff;
}

.map-btn-wa:hover {
  background-color: #1ebd56;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.map-btn-dir {
  background-color: #9e0013;
  color: #ffffff;
}

.map-btn-dir:hover {
  background-color: #7a000e;
  box-shadow: 0 4px 12px rgba(158, 0, 19, 0.3);
}

/* Map Iframe Container */
.map-iframe-container {
  width: 100%;
  min-height: 380px;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .map-iframe-container {
    height: 320px;
  }
}

/* ==========================================
   CTA BANNER SECTION STYLES
   ========================================== */
.cta-banner {
  position: relative;
  width: 100%;
  padding: 6rem 1.5rem;
  /* High-quality tropical beach background */
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Dark Gradient Overlay for optimal text readability */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.65) 50%,
    rgba(16, 185, 129, 0.4) 100%
  );
  z-index: 1;
}

/* Content Container */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #34d399;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

/* Title */
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
}

/* Description */
.cta-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2.2rem;
  font-weight: 400;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Action Buttons Container */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Button Base Styling */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Primary Accent Button */
.cta-btn.primary-btn {
  background-color: #10b981;
  color: #ffffff;
  border: 2px solid #10b981;
}

.cta-btn.primary-btn:hover {
  background-color: #059669;
  border-color: #059669;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Secondary Outline Button */
.cta-btn.secondary-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cta-btn.secondary-btn:hover {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary-btn i {
  color: #25d366; /* WhatsApp Green */
  transition: color 0.3s ease;
}

.cta-btn.secondary-btn:hover i {
  color: #128c7e;
}

/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */
@media (max-width: 768px) {
  .cta-banner {
    padding: 4.5rem 1.2rem;
    background-attachment: scroll; /* Mobile smooth scrolling support */
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================
   ABOUT US SECTION STYLES
   ========================================== */
.about-section {
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column Styling */
.sub-heading {
  color: var(--secondary-orange);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.main-heading {
  font-size: 2.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  position: relative;
  
}

.main-heading span {
 color: var(--secondary-orange);

}

/* Accent underlines similar to screenshot */
.main-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #06b6d4;
  margin-top: 10px;
  border-radius: 2px;
}

.about-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: black;
  margin-bottom: 1.8rem;
}

/* 2-Column Checkmark Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--secondary-orange);
  font-size: 1.1rem;
}

/* Call Info & Button Container */
.about-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.call-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-icon {
  width: 50px;
  height: 50px;
  background-color:#0A2540;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 4px;
}

.call-text span {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-orange);
}

.call-text a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-text a:hover {
  color: #0369a1;
}

.about-btn {
  background-color:var(--secondary-orange);
  color: #ffffff;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.about-btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

/* Right Column Image & Experience Badge */
.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #0A2540;
  color: #ffffff;
  padding: 1.2rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.exp-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img {
    height: 380px;
  }

  .exp-badge {
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}