/**
* Template Name: Mahan Air
* Updated: 12-09-2025 with Bootstrap v5.3.7
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/* =============================
   Google Fonts
============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* =============================
   Root Variables
============================= */
:root {
  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --heading-font: "Montserrat", "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Colors */
  --background-color: #F8FAFC;
  --default-color: #4a494a;
  --heading-color: #4a494a;
  --accent-color: #f36c23;
  --surface-color: #FFFFFF;
  --contrast-color: #FFFFFF;

  /* Navigation Colors */
  --nav-color: #4a494a;
  --nav-hover-color: #f36c23;
  --nav-mobile-background-color: #ffffff;

  /* Shadows */
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: #1E40AF;
  /* darker blue on hover */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #fff;
  /* Deep Navy / Charcoal */
  --default-color: #FFFFFF;
  /* White text */
  --heading-color: #FFFFFF;
  /* White heading */

  color: #4a494a;
  background-color: #fff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}



.header .logo {
  max-height: 72px;
  margin-right: 15px;
}

.header .logo img {
  height: 100%;
  width: 100%;
}




.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgb(74 73 74);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }


}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .header .logo {
    max-height: 52px;
    width: 150px;
    margin-right: 15px;
  }

  .mobile-nav-toggle {
    color: var(--nav-mobile-background-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }


  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-toggle {
    color: #222;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff !important;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer-14 {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  padding-top: 80px;
}

.footer-14 .brand-section img {
  max-height: 50px;
}

.footer-14 .brand-description {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  max-width: 400px;
}

.footer-14 .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-14 .contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.footer-14 .footer-nav-wrapper h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-14 .footer-nav a {
  display: block;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-14 .footer-nav a:hover {
  color: var(--contrast-color);
  transform: translateX(4px);
}

.footer-14 .social-links {
  display: flex;
  gap: 15px;
}

.footer-14 .social-links a {
  color: var(--contrast-color);
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-14 .social-links a:hover {
  color: var(--heading-color);
  transform: scale(1.2);
}

.footer-14 .newsletter-section h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-14 .newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
}

.footer-14 .newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #222;
}

.footer-14 .newsletter-form button {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--heading-color);
  color: var(--accent-color);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-14 .newsletter-form button:hover {
  background: var(--contrast-color);
}

.footer-14 .footer-bottom {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--default-color);
  text-align: center;
}

.footer-14 .credits a {
  color: var(--contrast-color);
  text-decoration: none;
}

.footer-14 .credits a:hover {
  text-decoration: underline;
}

.footer-main {
  margin-bottom: 40px;
}

@media (max-width:767px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .flight-search__form {
    grid-template-columns: 1fr !important;
  }

  .hero-container {
    height: 100% !important;
  }

  .hero .hero-container .hero-content {

    min-width: 90% !important;
  }

  .hero .hero-container .hero-content h1 {
    font-size: 24px !important;
    margin-bottom: 5px !important;
  }

  .hero .hero-container .hero-content p {
    font-size: 12px !important;
    margin-bottom: 0px !important;
  }

  .hero .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
    font-size: 14px !important;
  }

  .hero .portals-container {
    margin-top: inherit !important;
    position: inherit !important;
    z-index: inherit !important;
  }

  .passengerBox {
    right: 0 !important;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .footer-14 {
    text-align: center;
    padding-top: 50px;
  }

  .footer-14 .footer-nav-wrapper {
    margin-top: 30px;
  }

  .footer-14 .newsletter-form {
    flex-direction: column;
  }

  .footer-14 .newsletter-form input,
  .footer-14 .newsletter-form button {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  background-color: var(--default-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (min-width:768px) and (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .flight-search__form {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-container {
    height: 100% !important;
  }

  .hero .hero-container .hero-content {
    min-width: 90% !important;
  }
  .passengerBox {
    right: 0;
    z-index: 1;
    left: 18px;
}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.holidays .section-title,
.visa .section-title,
.cargo .section-title {
  padding: 0;
}

p.section-sub-title {
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Adjust based on your design */
  overflow: hidden;
}


.heroBanner-slider {
  width: 100%;
  height: 100%;
}

.heroBanner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Optional overlay for better text visibility */
.heroBanner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.1));
  z-index: 1;
}


.hero .hero-container .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  /* Above overlay */
  max-width: 90%;
}

.hero .hero-container .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-container .hero-content .cta-buttons {
  margin-bottom: 30px;
}

.hero .hero-container .hero-content .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.hero .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .announcement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-container .hero-content .announcement .announcement-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

.hero .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1rem;
}



.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .portals-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
  padding-bottom: 70px;
}


.hero .portals-container .portal-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hero .portals-container .portal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero .portals-container .portal-item .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.hero .portals-container .portal-item .icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.hero .portals-container .portal-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero .portals-container .portal-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


#flights {
  background: var(--accent-color);
}


#flights .search-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

/* container */
.search-container_top {
  padding: 8px 0;
}

/* reset list */
.search-container_top .trip-types {
  display: inline-flex;
  /* keep compact */
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* buttons */
.search-container_top .trip-type {
  --bg: rgba(0, 0, 0, 0.04);
  --txt-muted: rgba(0, 0, 0, 0.65);

  background: var(--contrast-color);
  color: var(--default-color);
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
  outline: none;
  box-shadow: none;
}

/* hover/focus */
.search-container_top .trip-type:hover,
.search-container_top .trip-type:focus {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

/* active */
.search-container_top .trip-type.active,
.search-container_top .trip-type[aria-selected="true"] {
  background: var(--default-color);
  color: var(--contrast-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* small screens: stack if too narrow */
@media (max-width: 420px) {
  .search-container_top .trip-types {
    display: flex;
    width: 100%;
  }

  .search-container_top .trip-type {
    flex: 1 1 0;
    text-align: center;
    padding: 10px 8px;
  }
}


.search-container_inner {
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 25px;
}


.flight-search__form {
  position: relative;
  display: grid;
  grid-template-columns: 250px 250px 140px 140px 170px 126px;
  gap: 10px;
  max-width: 1200px;
  width: 100%;
}

.flight-search__field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.flight-search__input {
  width: 100%;
  padding: 12px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: var(--contrast-color);
  outline: none;
}

.flight-search__label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #888;
  pointer-events: none;
  transition: 0.2s ease;
}

/* Floating effect on focus or when input has value */
.flight-search__input:focus+.flight-search__label,
.flight-search__input:not(:placeholder-shown)+.flight-search__label {
  top: 2px;
  font-size: 0.75rem;
  color: var(--accent-color);
  background: var(--contrast-color);
  padding: 0 4px;
}




.flight-search__actions .btn-Search {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flight-search__actions .btn-Search:hover {
  background-color: #1E40AF;
  /* darker blue on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.travellersClass {
  width: 100%;
  padding: 12px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: var(--contrast-color);
  outline: none;
}

.travellersClass .flight-search__label {
  top: 2px;
  font-size: 0.75rem;
  color: var(--accent-color);
  background: var(--contrast-color);
  padding: 0 4px;
}

p#passengerTotal {
  margin: 0;
}

.passengerBox {
  position: absolute;
  right: 100px;
  z-index: 1;
}


.passenger-selector {
  max-width: 400px;
  min-width: 350px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
}

.passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.passenger-row label {
  flex: 1;
}

.counter {
  display: flex;
  align-items: center;
  gap: 5px;
}

.counter button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
}

.counter input {
  width: 40px;
  text-align: center;
  font-size: 16px;
}

.travel-class {
  margin: 15px 0;
}

.travel-class label {
  display: block;
  margin-bottom: 5px;
}

.done-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--accent-color);
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

/* Flight Booking Section */
.flights__booking {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.flights__booking h2 {
  color: var(--heading-color);
  padding-bottom: 15px;
}

.flights__booking p {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.booking-placeholder {
  background: #f8f9fa;
  border: 1px dashed #dcdcdc;
  border-radius: 0.75rem;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 1rem;
  color: #6c757d;
}

/* Sidebar Styling */
.flights__sidebar {
  background: var(--default-color);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.flights__sidebar h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.flights__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flights__sidebar li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.flights__sidebar i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
section#about {
    background: #fff;
}
.about .content {
  padding: 20px 0;
}

.about .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about .content>p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .stats-row .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .about .stats-row {
    gap: 20px;
  }

  .about .stats-row .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

.about .mission-statement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 35px;
}

.about .mission-statement p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover i {
  transform: translateX(3px);
}

.about .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 3px solid var(--accent-color);
}

.about .image-wrapper .experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .image-wrapper .experience-badge .text {
  font-size: 12px;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 30px;
  }

  .about .content h3 {
    font-size: 28px;
  }

  .about .image-wrapper {
    min-height: 350px;
  }

  .about .image-wrapper .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .about .content h3 {
    font-size: 24px;
  }

  .about .stats-row {
    justify-content: center;
  }

  .about .mission-statement {
    padding: 20px;
  }

  .about .image-wrapper {
    min-height: 300px;
  }
}


/*--------------------------------------------------------------
# Holidays to Iran
--------------------------------------------------------------*/
:root {
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.25);
  --overlay-gradient: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* GRID LAYOUT */
.grid-row-box {
  display: grid;
  grid-template-areas:
    "topLeft   topCenter   topRight"
    "midLeft   topCenter   midRight"
    "bottomLeft bottomLeft bottomLeft"; /* single wide bottom card */
  grid-template-columns: 37% 28% 33%;
  gap: 15px;
}

/* Map grid areas */
.item1 { grid-area: topLeft; }
.item2 { grid-area: topCenter; }
.item3 { grid-area: topRight; }
.item4 { grid-area: midLeft; }
.item5 { grid-area: midRight; }
.item6 { grid-area: bottomLeft; }

/* CARD STYLES */
.box-PopularPkg {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #eee;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-PopularPkg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

/* HEIGHT VARIANTS */
.box-PopularPkg-40 { height: 250px; }
.box-PopularPkg-50 { height: 250px; }
.box-PopularPkg-80 { height: 515px; }

/* HOVER EFFECT */
.box-PopularPkg:hover img {
  transform: scale(1.05);
}
.box-PopularPkg:hover,
.box-PopularPkg:focus-visible {
  box-shadow: var(--shadow-hover);
}

/* OVERLAY INFO */
.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  background: var(--overlay-gradient);
}

.destination-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color:#fff;
}

.destination-info p {
  font-size: 14px;
  margin-top: 3px;
  opacity: 0.85;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
  .grid-row-box {
    grid-template-areas:
      "topLeft   topCenter"
      "topRight  topCenter"
      "midLeft   midRight"
      "bottomLeft bottomLeft";
    grid-template-columns: 1fr 1fr;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .grid-row-box {
    grid-template-areas:
      "topLeft"
      "topCenter"
      "topRight"
      "midLeft"
      "midRight"
      "bottomLeft";
    grid-template-columns: 1fr;
  }

  .box-PopularPkg-80 { height: 300px; }
  .box-PopularPkg-40,
  .box-PopularPkg-50 { height: 200px; }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  background-color: var(--surface-color);
  padding: 25px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  
}

.contact .info-card:hover {
  transform: translateY(-5px);
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Visa Section Section
--------------------------------------------------------------*/
/* === Visa Section Styling === */
.visa.section {
 background-color: #fff;
  padding: 60px 20px;
}







.visa .container .visa_formBox {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Button Styles */
.btn--secondary {
  display: inline-block;
  padding: 10px 22px;
  margin-bottom: 30px;
  border-radius: 50px;
  background-color: #f0f0f0;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--secondary i {
  margin-right: 6px;
}

.btn--secondary:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

/* === Visa Form Styling === */

/* Form Wrapper */
.visa .form-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Input Group */
.visa .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.visa .form-wrapper .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.visa .form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.visa .form-wrapper textarea.form-control {
  min-height: 160px;
}

/* Button */
.visa .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.visa .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

/* Download Button */
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-bottom: 30px;
  border-radius: 50px;
  background-color: #f0f0f0;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--secondary i {
  margin-right: 6px;
}

.btn--secondary:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

/* Cargo */

/* === Image Styling === */
.cargo-img-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.cargo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cargo-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history {
  padding: 100px 0;
}

.history .section-badge {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.history .section-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.history .hero-content {
  margin-bottom: 80px;
}

.history .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .hero-content .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .history .hero-content .hero-title {
    font-size: 2rem;
  }
}

.history .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .section-heading {
    font-size: 2rem;
  }
}

.history .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}



.history .values-section {
  margin-bottom: 100px;
}

.history .values-section .values-header {
  margin-bottom: 60px;
}

.history .values-section .value-block {
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  background: #fff;
  border-radius: 8px;
}

.history .values-section .value-block:hover .value-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

.history .values-section .value-block .value-number {
  font-size: 4rem;
  font-weight: 100;
  color: color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.history .values-section .value-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.history .values-section .value-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .values-section .value-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .history .values-section .value-block::after {
    display: none;
  }
}

.history .values-section .value-block:last-child::after {
  display: none;
}



@media (max-width: 992px) {
  .history .accomplishments-section .campus-visual .floating-stats {
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
}



@media (max-width: 992px) {
  .history .accomplishments-section .accomplishments-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}






@media (max-width: 768px) {
  .history {
    padding: 60px 0;
  }

  
  .history .values-section {
    margin-bottom: 60px;
  }

  .history .values-section .value-block {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

}
