/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist', sans-serif;
  line-height: 1.5;
}

/* ===== Header ===== */
/* ===== Base Reset & Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* ===== Logo ===== */
.header-logo img {
  height: 40px;
  width: auto;
}

/* ===== Navigation (Desktop) ===== */
.header-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
}

.header-menu a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
  position: relative;
}

.header-menu a:hover,
.header-menu a.active {
  color: #f5af11;
}

/* ===== Mobile Menu Toggles ===== */

.close-menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
}

/* ===== Header Actions ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.book-btn {
  background: #f5af11;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.book-btn:hover {
  background: #003d5c;
  color: #fff;
}

/* ===== Mobile Menu (Hidden by default) ===== */
.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
}

.header-menu ul {
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
}

.header-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ===== Responsive: Desktop (>=1024px) ===== */
@media (min-width: 1024px) {
  .menu-toggle,
  .close-menu-toggle {
    display: none !important;
  }

  .header-menu {
    position: relative;
    height: auto;
    background: transparent;
    flex-direction: row;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    margin: 0 2rem;
  }

  .header-menu ul {
    flex-direction: row;
    gap: 2rem;
    font-size: 1rem;
  }

  .header-actions {
    display: block;
  }
}

/* Header End */

/* ===== Footer General ===== */
.site-footer {
  background: #1a1a1a; /* darker-grey */
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  padding-top: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Top Section ===== */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-about {
  flex: 1 1 15%;
  min-width: 250px;
}

.footer-logo {
  width: auto;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}

.footer-tagline {
  color: #aaa;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #ccc;
}


/* ===== Footer Links ===== */
.footer-links {
  flex: 1 1 20%;
  min-width: 150px;
}
.footer-links h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer-links a:hover {
  color: #2aa198; /* green-zomp */
}

/* ===== Social Media ===== */
/* .footer-social {
  flex: 1 1 150px;
} */
.footer-social h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer-social ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.footer-social li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social li span {
  color: #fff;
}
.footer-social .facebook { background: #1877F2; }
.footer-social .instagram { background: #CF3881; }
.footer-social .youtube { background: #FF0000; }
.footer-social .twitter { background: #1DA1F2; }

/* ===== Divider ===== */
.footer-divider {
  width: 100%;
  height: 1px;
  background: #333;
}

/* ===== Bottom Section ===== */
.footer-bottom {
  justify-content: space-between;
  display: flex;
  padding: 1.5rem 0;
  color: #aaa;
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Footer End */


/* INDEX.PHP */
/* === Hero Section === */
    .hero-banner {
  position: relative;
  border-radius: 32px;
  padding: 80px 16px;
  margin: 0 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-video,
.hero-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Makes sure it fills the container */
  z-index: 0;
}

    @media (min-width: 768px) {
      .hero-banner {
        padding: 130px 24px;
        margin: 0 24px 96px;
      }
    }

    .hero-content {
      max-width: 800px;
      text-align: center;
      z-index: 2;
    }

    .hero-title {
      font-size: 35px;
      font-weight: bold;
      line-height: 1.3;
      margin-bottom: 16px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    @media (min-width: 640px) {
      .hero-title { font-size: 45px; }
    }
    @media (min-width: 768px) {
      .hero-title { font-size: 56px; }
    }

    .hero-subtitle {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 40px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    @media (min-width: 768px) {
      .hero-subtitle { font-size: 18px; }
    }

    .explore-btn {
      background-color: var(--color-green-zomp);
      color: var(--color-white);
      font-size: 18px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius:10px;
      border: 1px solid #f5af11;
      display: inline-block;
      transition: transform 0.2s ease, background-color 0.2s ease;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      background-color: #f5af11;
    }

    .explore-btn:hover {
      transform: translateY(-5px);
      background-color: #003d5c;
      border: 1px solid #003d5c;
    }

    /* Optional: subtle overlay for better text contrast */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
      z-index: 1;
    }

    /* === Features Section === */
    .feature-icon1 {
    flex-shrink: 0;
    background: #fff; /* white circle */
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}
.feature-title1 {
    width: 80%;
    font-size: 1.25rem;
    font-weight: 600;
    color: black; /* text in white for dark background */
    margin: 0;
    justify-self: center;
}

    .features {
      margin-bottom: 60px;
    }

    @media (min-width: 768px) {
      .features { margin-bottom: 96px; }
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }

    @media (min-width: 640px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .features-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    }

    .feature-card {
      text-align: center;
    }

    .feature-icon {
      width: 72px;
      height: auto;
      margin: 0 auto 24px;
    }

    .feature-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-black);
    }

    .feature-desc {
      color: var(--color-dark-grey);
    }

    /* === Top Destinations === */
    .destinations {
    margin-bottom: 60px;
  }

  @media (min-width: 768px) {
    .destinations { margin-bottom: 96px; }
  }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #003D5C;
    margin-bottom: 40px;
  }

  .destinations-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  @media (min-width: 1024px) {
    .destinations-slider {
      gap: 24px;
      justify-content: center;
    }
  }

  .destination-slide {
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex: 0 0 calc(100% - 32px);
    transition: transform 0.2s ease;
  }

  @media (min-width: 640px) {
    .destination-slide {
      flex: 0 0 calc(50% - 16px);
    }
  }
  @media (min-width: 1024px) {
    .destination-slide {
      flex: 0 0 calc(25% - 24px);
    }
  }

  .destination-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }

  .destination-slide:hover .destination-img {
    transform: scale(1.05);
  }

  .destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .destination-slide:hover .destination-overlay {
    opacity: 1;
  }

  .destination-name {
    position: absolute;
    bottom: 44px;
    left: 24px;
    z-index: 2;
    font-size: 32px;
    font-weight: bold;
    color: white !important;
    transition: transform 0.2s ease, color 0.2s ease;
    transform: translateY(28px); /* Start hidden below */
    opacity: 1;
  }

  .destination-slide:hover .destination-name {
    transform: translateY(0);
    opacity: 1;
    bottom: 130px;
    color: #01AA90; /* green-zomp on hover */
  }

  .destination-details {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: translateY(6px);
    opacity: 0;
  }

  .destination-slide:hover .destination-details {
    transform: translateY(0);
    opacity: 1;
  }

  .destination-desc {
    color: white;
    margin-bottom: 16px;
  }

  .destination-link {
    display: inline-block;
    border: 1px solid white;
    color: white !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 200px;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
  }

  .destination-link:hover {
    background-color: #01AA90;
    border-color: #01AA90;
  }

  .view-all-container {
    text-align: center;
    margin-top: 40px;
  }

  .view-all-link {
    display: inline-block;
    color: #f5af11;
    padding: 12px 24px;
    border: 1px solid #f5af11;
    font-weight: 600;
    border-radius: 200px;
    text-transform: capitalize;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .view-all-link:hover {
    background-color: #f5af11;
    color: #003d5c;
  }
    /* === Why Choose Us=== */
   /* === WHY CHOOSE US SECTION WITH SCROLLING BG === */
.why-choose-us-beach {
  position: relative;
  padding: 80px 20px;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* 👈 This makes it scroll with the page */
  color: #003d5c;
  overflow: hidden;
}

.why-choose-us-beach .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.why-choose-us-beach h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003d5c;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  position: relative;
}

.why-choose-us-beach h2::before,
.why-choose-us-beach h2::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 3px;
  background-color: #f5af11;
}

.why-choose-us-beach h2::before {
  left: -80px;
}

.why-choose-us-beach h2::after {
  right: -80px;
}

.features-list-beach {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.1); /* optional transparent effect */
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #fff; /* white circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-icon i {
    font-size: 20px;
    color: #f5af11; /* tick color (primary) */
}

.feature-title {
    width: 80%;
    font-size: 20px;
    font-weight: 600;
    color: white; /* text in white for dark background */
    margin: 0;
    text-align: left;
}

.feature-description {
    margin-top: 20px;
    font-size: 20px;
    color: white;
    line-height: 1.6;
}


.image-frame {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame img {
  width: 100%;
  max-width: 400px;
  border: 12px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  z-index: 2;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.7) 60%);
  z-index: 1;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% 100%, 
    0% 100%
  );
}

.image-frame .overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #003d5c;
  opacity: 0.8;
  pointer-events: none;
  z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-title {
    width: 80%;
    font-size: 16px;
    font-weight: 600;
    color: white; /* text in white for dark background */
    margin: 0;
    text-align: left;
}

  .why-choose-us-beach .container {
    flex-direction: column;
  }

  .image-frame {
    order: -1;
    margin-bottom: 30px;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
    /* ===Why Choose Us End=== */
    /* === Activities Section === */
    .activities {
    margin-bottom: 60px;
  }

  @media (min-width: 768px) {
    .activities { margin-bottom: 96px; }
  }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #003D5C;
    margin-bottom: 40px;
  }

  .activities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  @media (min-width: 640px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 768px) {
    .activities-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 1024px) {
    .activities-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .activity-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: transform 0.2s ease;
    overflow: hidden;
  }

  .activity-card:hover {
    transform: scale(1.02);
  }

  .activity-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  .activity-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }

  .activity-card:hover .activity-img {
    transform: scale(1.05);
  }

  .sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #F51D35;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .activity-body {
    padding: 16px;
  }

  .activity-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
  }

  .activity-title {
    color: #003d5c !important;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
  }

  .activity-card:hover .activity-title {
    color: #01AA90;
  }

  .activity-rating {
    display: flex;
    align-items: center;
    color: #fbbf24;
    margin-bottom: 8px;
  }

  .activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
  }

  .tag {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    color: #4b5563;
    background-color: #f9fafb;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .tag:hover {
    background-color: #01AA90;
    color: white;
  }

  /* Tag Colors */
  .tag-featured {
    background-color: #fef3c7;
    color: #d97706;
  }
  .tag-featured:hover {
    background-color: #f59e0b;
    color: white;
  }

  .tag-best-seller {
    background-color: #fee2e2;
    color: #dc2626;
  }
  .tag-best-seller:hover {
    background-color: #ef4444;
    color: white;
  }

  .tag-cultural {
    background-color: #dbeafe;
    color: #2563eb;
  }
  .tag-cultural:hover {
    background-color: #3b82f6;
    color: white;
  }

  .tag-popular {
    background-color: #e0f2fe;
    color: #0ea5e9;
  }
  .tag-popular:hover {
    background-color: #0ea5e9;
    color: white;
  }

  .tag-adventure {
    background-color: #fef9c3;
    color: #ca8a04;
  }
  .tag-adventure:hover {
    background-color: #eab308;
    color: white;
  }

  .tag-luxury {
    background-color: #fdf4ff;
    color: #9333ea;
  }
  .tag-luxury:hover {
    background-color: #a855f7;
    color: white;
  }

  .divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 16px 0;
  }

  .activity-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .enquire-btn {
    background-color: #f5af11;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 200px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .enquire-btn:hover {
    background-color: #003d5c;
    transform: translateY(-2px);
  }

  .enquire-btn1 {
    background-color: #003d5c;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 200px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .enquire-btn1:hover {
    background-color: #f5af11;
    transform: translateY(-2px);
  }
  /* Services Start */
  .services {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #003d5c;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f5af11;
  margin: 12px auto 0;
  border-radius: 2px;
  justify-self: anchor-center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #f5af11;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f5af11;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #003d5c;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

  /* Services End */
    /*Process Start*/
    .process-section {
    padding: 60px 0;
    background-color: #fafafa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f5af11;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0 16px;
  }

  .section-label::before,
  .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #f5af11;
  }

  .section-label::before {
    left: 0;
  }

  .section-label::after {
    right: 0;
  }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #003d5c;
    margin-top: 16px;
  }

  /* Steps Grid */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  @media (min-width: 768px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Step Card */
  .step-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  /* Icon Circle */
  .step-icon {
    width: 80px;
    height: 80px;
    background-color: #f5af11;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 175, 17, 0.3);
    transition: background-color 0.2s ease;
  }

  .step-card:hover .step-icon {
    background-color: #003d5c;
  }

  /* Title */
  .step-title {
    font-size: 20px;
    font-weight: bold;
    color: #003d5c;
    margin-bottom: 12px;
  }

  /* Description */
  .step-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
  }

  /* Divider Line (optional under title) */
  .step-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #f5af11;
    margin: 12px auto 16px;
  }
    /* Process End */

    /* TEstimonial Start */
     .testimonials-section {
    padding: 60px 0;
    background-color: #fafafa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f5af11;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0 16px;
  }

  .section-label::before,
  .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #f5af11;
  }

  .section-label::before { left: 0; }
  .section-label::after { right: 0; }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #003d5c;
    margin-top: 16px;
  }

  /* Auto-scroll container */
  .testimonials-scroller {
    overflow: hidden;
    position: relative;
    padding: 16px 0;
  }

  .testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 30s linear infinite;
  }

  .testimonials-track:hover {
    animation-play-state: paused;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    max-width: 340px;
    transition: transform 0.2s ease;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    position: relative;
  }

  .testimonial-text::before {
    content: """;
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 48px;
    color: #f5af11;
    opacity: 0.3;
    font-family: Georgia, serif;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5af11;
  }

  .author-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #003d5c;
    margin-bottom: 4px;
  }

  .author-role {
    font-size: 14px;
    color: #6b7280;
  }

  .rating {
    display: flex;
    gap: 4px;
    margin-top: 12px;
    color: #f5af11;
  }
  .rating i {
  color: #f5af11;  /* gold/yellow star */
  font-size: 20px;
  margin-right: 4px;
}


  @media (max-width: 639px) {
    .testimonial-card {
      min-width: 280px;
    }
  }
    /* Testimonal End */

    /* === Subscribe Section === */
    .subscribe {
      margin-bottom: 60px;
    }

    @media (min-width: 768px) {
      .subscribe { margin-bottom: 96px; }
    }

    .subscribe-bg {
      background-image: url('../images/subscribe-bg.png');
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      padding: 48px 24px;
    }

    @media (min-width: 1024px) {
      .subscribe-bg {
        padding-left: 108px;
        padding-right: 40px;
        padding-top: 120px;
        padding-bottom: 90px;
      }
    }

    .subscribe-card {
      background-color: rgba(45, 55, 72, 0.9);
      border-radius: 12px;
      padding: 24px;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .subscribe-card { padding: 40px; }
    }

    .subscribe-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 16px;
      color: white;
    }

    @media (min-width: 768px) {
      .subscribe-title { font-size: 40px; }
    }

    .subscribe-desc {
      color: #d1d5db;
      margin-bottom: 32px;
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .subscribe-desc { font-size: 16px; }
    }

    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 640px) {
      .subscribe-form {
        flex-direction: row;
        align-items: center;
      }
    }

    .subscribe-input {
      flex: 1;
      padding: 12px 24px;
      border-radius: var(--border-radius-full);
      border: none;
      outline: none;
      border-radius: 30px;
      font-size: 16px;
    }

    .subscribe-btn {
      background-color:#f5af11;
      color: #003d5c;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: var(--border-radius-full);
      border: none;
      cursor: pointer;
      border-radius: 30px;

      white-space: nowrap;
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .subscribe-btn:hover {
      transform: translateY(-5px);
      background-color: #003d5c;
      color: #f5af11;
    }
/* INDEX.PHP END */


/* ===why choose us */
.we-provied {
	padding-top: 30px;
	padding-bottom: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	background-attachment: fixed;
	z-index: 1;
}
.we-provied::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.we-provied-contetn h2 {
	font-size: 36px;
	font-weight: 700;
	margin-top: 40px;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 20px;
}
.we-provied-contetn p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 30px;
}

/* ===why choose us End === */

/* ===About.php=== */
.about-us {
    padding: 70px 0;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1 1 50%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003d5c; /* secondary color */
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #f5af11; /* primary color */
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 3px;
}

.sub-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003d5c;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text .highlight {
    color: #f5af11; /* primary color */
    font-weight: 600;
}

.services {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.services li i {
    color: #f5af11; /* Your primary theme color */
    margin-right: 10px;
    font-size: 1.1rem;
}


/* ===About.php End=== */

/* ===Contact.php=== */
.contact-section {
        padding: 60px 20px;
    }
    .contact-container {
        max-width: 700px;
        margin: auto;
        background: #fff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .contact-container h2 {
        color: #003d5c;
        text-align: center;
        margin-bottom: 10px;
    }
    .contact-container p {
        text-align: center;
        color: #555;
        margin-bottom: 30px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    label {
        font-weight: bold;
        color: #003d5c;
        display: block;
        margin-bottom: 6px;
    }
    input, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.3s;
    }
    input:focus, textarea:focus {
        border-color: #f5af11;
        outline: none;
    }
    
    .alert {
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: bold;
    }
    .alert-success {
        background: #d4edda;
        color: #155724;
    }
    .alert-error {
        background: #f8d7da;
        color: #721c24;
    }
    /* .contact h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #003d5c;
} */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #003d5c; /* secondary */
  color: #f5af11;      /* primary */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #003d5c;
}

.contact-text p {
  margin: 3px 0 0;
  font-size: 0.95rem;
  color: #444;
}

.new {
        color: #003d5c;
        text-align: center;
        margin-bottom: 10px;
    }
/* ===Contact.php End=== */