:root {
  --heading--: #333333;
  --bg-color--: #fff;
  --green-text--: #007c04;
  --bg-bule--: #3a5aff;
  --text--: #0087ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

body {
  background: var(--bg-color--);
}

/* ============
Header Css start
=============== */

/* NAVBAR BASE */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #51555e;
  height: 90px;
}

/* LOGO */
.navbar-brand img {
  max-height: 45px;
}

/* LINKS */
.navbar-nav .nav-link {
  color: var(--heading--) !important;
  font-size: 18px;
  margin-right: 15px;
}

.navbar-nav .nav-link:hover {
  color: #fff;
}

/* TOGGLE BUTTON */
.navbar-toggler {
  border: 1px solid #000 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.call-menu {
  position: relative;
  display: inline-block;
}

/* Hide dropdown by default */
.tooltip-feature {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.call-menu button {
  background-color: var(--text--);
  border: 2px solid var(--text--);
  border-radius: 30px !important;
  font-size: 18px;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
.call-menu button:hover {
  color: #fff;
}
.menu-close {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .tooltip-feature {
    width: 260px;
    right: auto;
    left: 0;
  }
}

@media (max-width: 480px) {
  .tooltip-feature {
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* MOBILE MENU */
@media (max-width: 767px) {
  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .navbar-collapse {
    background: #000;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .d-flex {
    margin-top: 10px;
  }
  .menu-close {
    display: block;
  }
}

/* ===== MOBILE OFFCANVAS STYLE ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #86bff0;
    z-index: 1050;
    padding: 20px;
    transition: right 0.4s ease;
    overflow-y: auto;
    border-radius: 0;
  }

  .navbar-collapse.show {
    right: 0;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }

  /* Close Button */
  .menu-close {
    font-size: 58px;
    color: #fff;
    text-align: right;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
  }
}

/* ============ Header Css End ============== */

/* ======== Serach From Start ========= */

.hero {
  background: url("../images/bg/serach-form-bg.jpg") center/cover no-repeat;
  min-height: 10vh;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  min-height: 10vh;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.overlay h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.booking-box {
  background: #fff;
  color: #000;
  max-width: 1100px;
  margin: 30px auto;
  border-radius: 10px;
  padding: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tab {
  background: #eee;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.tab.active {
  background: var(--bg-bule--);
  color: #fff;
}

.trip-type {
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.form-grid input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-btn {
  background: var(--text--);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-text {
  padding: 40px;
  text-align: center;
  font-size: 18px;
}

/* ================================
   INPUT WITH ICON INSIDE
================================= */

.input-box,
.date-box {
  position: relative;
  width: 100%;
}

/* Icon positioning */
.input-box i,
.date-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
  pointer-events: none;
}

/* Input padding so text doesn't overlap icon */
.input-box input,
.date-box input {
  width: 100%;
  padding: 12px 12px 12px 38px; /* left padding for icon */
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

/* Focus effect (optional professional touch) */
.input-box input:focus,
.date-box input:focus {
  border-color: var(--text--);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* ===============================
   TRAVELER DROPDOWN
================================= */

.traveler-wrapper {
  position: relative;
  width: 100%;
}

.traveler-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: none;
  z-index: 999;
}

.traveler-dropdown.active {
  display: block;
}

.traveler-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter button {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--text--);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.class-select {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
}

.done-btn {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: var(--text--);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .traveler-dropdown {
    top: auto;        /* 👈 IMPORTANT FIX */
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 15px 15px 0 0;
    z-index: 9999;    /* 👈 ensure upar aaye */
  }
}

/* ===============================
   EXTRA LARGE DEVICES (1400px+)
================================= */
@media (min-width: 1400px) {
  .booking-box {
    max-width: 1200px;
  }

  .overlay h1 {
    font-size: 42px;
  }
}

/* ===============================
   LARGE LAPTOPS (1200px - 1399px)
================================= */
@media (max-width: 1399px) {
  .booking-box {
    max-width: 1000px;
  }
}

/* ===============================
   LAPTOPS (992px - 1199px)
================================= */
@media (max-width: 1199px) {
  .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overlay h1 {
    font-size: 32px;
  }
}

/* ===============================
   TABLETS (768px - 991px)
================================= */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .overlay {
    padding: 30px 15px;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tab {
    padding: 10px 15px;
    font-size: 14px;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trip-type {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ===============================
   LARGE MOBILE (576px - 767px)
================================= */
@media (max-width: 767px) {
  .booking-box {
    padding: 15px;
  }

  .overlay h1 {
    font-size: 24px;
  }

  .tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab {
    width: 100%;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid input {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    padding: 12px;
  }
}

/* ===============================
   SMALL MOBILE (400px - 575px)
================================= */
@media (max-width: 575px) {
  .overlay {
    padding: 20px 10px;
  }

  .overlay h1 {
    font-size: 20px;
  }

  .tab-text {
    padding: 20px;
    font-size: 16px;
  }

  .booking-box {
    margin: 20px 10px;
  }
}

/* ======== Serach From End ========= */

/* ======== CTA Setcion Start ======= */
.info-section {
  padding: 20px;
  background: #fff;
}

.info-cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-card.gray {
  background: var(--text--);
  color: #fff;
}

.info-card.red {
  background: var(--text--);
  color: #fff;
  justify-content: space-between;
}

.info-card h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.info-card p {
  font-size: 14px;
}

.info-card .icon {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
}

.info-card.red h2 {
  margin-top: 5px;
  font-size: 26px;
}

.info-card.red img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.small {
  font-size: 13px;
}

.disclaimer {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
}

.disclaimer a {
  color: var(--text--);
  text-decoration: none;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
  }

  .info-card {
    flex-direction: row;
  }

  .info-card.red {
    text-align: center;
  }
  .info-card.red h2 {
    margin-top: 5px;
    font-size: 16px;
  }

  .info-card.red img {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
  }
}
/* ======== CTA Setcion End ======= */

/* ========= Why book with us Css Start =======  */
.why-us {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  border: 1.5px solid #b9d7ff;
  border-radius: 16px;
  padding: 35px 25px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.why-card img {
  width: 70px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-us h2 {
    font-size: 28px;
  }
}
/* ========= Why book with us Css End =======  */

/* ===============================
   HOW BOOKING WORKS SECTION
================================= */

.why-us1 {
  padding: 80px 20px;
  background: linear-gradient(to right, #f8fbff, #eef4ff);
}

.why-us1 h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.why-us1 h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--text--);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* Content Box */
.why-us1 .col-lg-6 {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  line-height: 1.7;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* Icon */
.why-us1 .icon {
  font-size: 22px;
  color: var(--text--);
  min-width: 28px;
}

/* Hover Effect */
.why-us1 .col-lg-6:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Animation Class */
.why-us1 .col-lg-6.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 991px) {
  .why-us1 {
    padding: 60px 15px;
  }

  .why-us1 h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .why-us1 .col-lg-6 {
    font-size: 15px;
    padding: 20px;
  }

  .why-us1 h2 {
    font-size: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-us1 h2 {
    font-size: 20px;
  }

  .why-us1 .col-lg-6 {
    flex-direction: row;
    font-size: 14px;
  }
}

/* ======== How We booking Section End ========= */

/* ========= Our Process Css Start =======  */

.booking-process {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.booking-process h2 {
  font-size: 36px;
}

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-card {
  background: #fff;
  border: 1.5px solid #cfe2ff;
  border-radius: 16px;
  padding: 35px 25px;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.icon {
  margin-bottom: 20px;
}

.icon img {
  width: 64px;
  height: auto;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .process-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-process h2 {
    font-size: 28px;
  }

  .icon img {
    width: 56px;
  }
}
/* ========= Our Process Css End =======  */

/* ======== Popular Destination Start ========= */
/* ===============================
   TRAVEL PACKAGE SECTION
================================= */

.home3-travel-package-section {
  padding: 80px 0;
  background: #f8fbff;
}

/* Section Title */
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

/* ===============================
   PACKAGE CARD DESIGN
================================= */

.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.package-img-wrap {
  position: relative;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.1);
}

/* Hot Sale Badge */
.batch {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4d4d;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  animation: pulse 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 77, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

/* ===============================
   PACKAGE CONTENT
================================= */

.package-content {
  padding: 20px;
}

.package-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.package-card:hover .package-content h5 {
  color: var(--text--);
}

.location-and-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===============================
   BUTTON DESIGN
================================= */

.primary-btn1 {
  display: inline-block;
  background: var(--text--);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.primary-btn1:hover {
  background: #000;
  transform: translateY(-3px);
}

/* ===============================
   SCROLL FADE ANIMATION
================================= */

.package-card {
  opacity: 0;
  transform: translateY(40px);
}

.package-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Large Desktop */
@media (min-width: 1400px) {
  .package-img img {
    height: 280px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 28px;
  }

  .package-img img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home3-travel-package-section {
    padding: 60px 15px;
  }

  .package-content h5 {
    font-size: 18px;
  }

  .location-and-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .package-img img {
    height: 200px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .primary-btn1 {
    width: 100%;
    text-align: center;
  }
}

/* ========== Popular  Destination Section End  */

/* ========= Partner Section Start ========= */
/* Container styling */
.partner-section {
  background: #f8f9fa;
  padding: 50px 0;
}

/* Marquee wrapper */
.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Group of logos */
.marquee__group {
  display: flex;
  flex-shrink: 0;
  animation: marquee 20s linear infinite;
}

.marquee__group img {
  width: 100px;
  margin: 0 30px;
  transition: transform 0.3s;
}

.marquee__group img:hover {
  transform: scale(1.1);
}

/* Duplicate group to make seamless animation */
.marquee__group + .marquee__group {
  position: absolute;
  top: 0;
  left: 100%;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* =====================================
   Partner Section Responsive
===================================== */

/* Tablet */
@media (max-width: 991px) {
  .marquee__group img {
    width: 80px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .marquee__group img {
    width: 65px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .marquee__group img {
    width: 55px !important;
  }
}
/* ========= Partner Section End ========= */

/* ========= Footer Section End ========= */
/* Footer Styling */
.footer-section {
  background: linear-gradient(to right, #f8fbff, #eef4ff);
  color: #000;
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}

.footer-logo img {
  width: 180px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .widget-title h5 {
  color: var(--text--);
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

.footer-widget .widget-title h5::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #ffcc00;
  bottom: -5px;
  left: 0;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-widget ul li a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--text--);
  transform: translateX(5px);
}

.contact-list .single-contact {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-list .icon img {
  width: 30px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.contact-list .icon img:hover {
  transform: rotate(15deg);
}

.footer-disclaimer {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 30px;
}

.footer-disclaimer a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
  color: #000;
}
.footer {
  border-top: 1px solid #757575;
}
.footer-bottom {
  background: #111;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-menu-wrap {
    text-align: center;
  }
  .d-flex.justify-content-md-end {
    justify-content: center !important;
  }
}
/* ==============================
   CONTACT LIST MOBILE CENTER
================================ */
@media (max-width: 768px) {
  .contact-list {
    padding: 0;
  }

  .single-contact {
    display: flex;
    flex-direction: column; /* Stack icon + content */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    margin-bottom: 20px;
  }

  .single-contact .icon {
    margin-bottom: 10px;
  }

  .single-contact .content a {
    display: block;
  }
  .footer-widget .widget-title {
    text-align: center;
  }

  .footer-widget .widget-title h5 {
    position: relative;
    display: inline-block;
  }

  .footer-widget .widget-title h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    width: 140px;
  }
  .footer-widget ul li {
    font-size: 14px;
  }
}
/* ========= Footer Section End ========= */

/* ========= Breadcrumns Css Start ======= */
/* Banner General */
.tg-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark Overlay for Better Text Readability */
.tg-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.5s ease;
}

/* Banner Content */
.tg-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}

/* Breadcrumb Styling */
.tg-breadcrumb {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 25px;
  list-style: none;
  backdrop-filter: blur(5px);
}

.tg-breadcrumb li {
  display: inline;
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  transition: 0.3s;
}

.tg-breadcrumb li + li::before {
  content: " / ";
  margin: 0 5px;
  color: #ffb703;
}

.tg-breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.tg-breadcrumb li a:hover {
  color: #ffb703;
  text-decoration: underline;
}

/* FadeInUp Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .tg-banner {
    height: 300px;
  }

  .tg-breadcrumb {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 767px) {
  .tg-banner {
    height: 250px;
  }

  .tg-breadcrumb {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ========= Breadcrumns Css End ======= */

/* =====================================
   ABOUT SECTION DESIGN Satrt
===================================== */

.about-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9fbff, #ffffff);
}

.about-content {
  max-width: 900px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #ffcc00;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title h4 {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

.section-title p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.section-title h5 {
  margin-top: 25px;
  font-weight: 600;
  font-size: 18px;
}

/* Service List Design */
.section-title ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.section-title ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
  transition: all 0.3s ease;
}

.section-title ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

.section-title ul li:hover {
  transform: translateX(5px);
  color: #000;
}

/* =====================================
   ANIMATION
===================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */

/* Large Desktop */
@media (min-width: 1200px) {
  .about-section {
    padding: 100px 0;
  }
}

/* Laptop */
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 32px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 20px;
  }

  .section-title h2 {
    font-size: 28px;
    text-align: center;
  }

  .section-title h4,
  .section-title p,
  .section-title h5,
  .section-title ul {
    text-align: center;
  }

  .section-title ul li {
    padding-left: 0;
  }

  .section-title ul li::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }

  .section-title h4 {
    font-size: 16px;
  }

  .section-title p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 15px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .section-title p {
    line-height: 1.6;
  }
}

/* =====================================
   ABOUT SECTION DESIGN End
===================================== */

/* ==========================================
   CONTACT PAGE MODERN DESIGN
========================================== */

.contact-page {
  padding: 90px 0;
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

/* ================= CONTACT CARDS ================= */

.single-contact {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.single-contact:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.single-contact .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #f1f6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 26px;
  transition: all 0.3s ease;
}

.single-contact:hover .icon {
  background: #007bff;
  color: #fff;
  transform: rotateY(180deg);
}

.single-contact p,
.single-contact h6 {
  color: #555;
  margin-bottom: 0;
}

.single-contact a {
  color: #007bff;
  text-decoration: none;
}

.single-contact a:hover {
  text-decoration: underline;
}

/* ================= CONTACT FORM ================= */

.contact-form {
  margin-top: 70px;
}

.contact-form-wrap {
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  margin-bottom: 30px;
}

/* Form Inputs */

.form-inner {
  margin-bottom: 20px;
}

.form-inner label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-inner input,
.form-inner textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
  outline: none;
}

.form-inner input:focus,
.form-inner textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-inner textarea {
  min-height: 120px;
  resize: none;
}

/* ================= BUTTON ================= */

.primary-btn1 {
  background: #007bff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

.primary-btn1:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

/* ================= MAP SECTION ================= */

.contact-map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(20%);
  transition: 0.4s ease;
}

.contact-map-section iframe:hover {
  filter: grayscale(0%);
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Laptop */
@media (max-width: 1199px) {
  .contact-form-wrap {
    padding: 40px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .contact-page {
    padding: 60px 20px;
  }

  .single-contact {
    margin-bottom: 25px;
  }

  .contact-form-wrap {
    padding: 35px;
  }

  .section-title h2 {
    font-size: 26px;
    text-align: center;
  }

  .section-title p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 25px;
  }

  .form-inner input,
  .form-inner textarea {
    padding: 12px;
  }

  .primary-btn1 {
    width: 100%;
    text-align: center;
  }

  .contact-map-section iframe {
    height: 350px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-page {
    padding: 40px 15px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .contact-map-section iframe {
    height: 280px;
  }
}
/* ==========================================
   CONTACT PAGE MODERN DESIGN End
========================================== */

/* ==========================================
   TAXES & FEES SECTION DESIGN
========================================== */

.about-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.about-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* ================= HEADINGS ================= */

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.about-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #004080;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

.about-content h3 {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  color: #004080;
}

.about-content p {
  line-height: 1.8;
  color: #555;
}

/* ================= TABLE DESIGN ================= */

.about-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  min-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content thead {
  background: linear-gradient(135deg, #004080, #0066cc);
  color: #fff;
}

.about-content th {
  padding: 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.about-content td {
  padding: 14px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  transition: 0.3s ease;
}

.about-content tbody tr:nth-child(even) {
  background: #f4f9ff;
}

.about-content tbody tr:hover {
  background: #e6f2ff;
  transform: scale(1.01);
}

/* ================= LIST DESIGN ================= */

.about-content ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.about-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #004080;
  font-weight: bold;
}

/* ================= LINKS ================= */

.about-content a {
  color: #0066cc;
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}

/* ================= SMALL TEXT ================= */

.about-content small {
  color: #777;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Laptop */
@media (max-width: 1199px) {
  .about-content {
    padding: 40px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-content {
    padding: 30px;
  }

  .about-content table {
    min-width: 700px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-content {
    padding: 20px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .about-content table {
    min-width: 600px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-content table {
    min-width: 500px;
  }

  .about-content th,
  .about-content td {
    padding: 10px;
    font-size: 12px;
  }
}
/* ==========================================
   TAX TABLE MODERN DESIGN End
========================================== */
