*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  padding-top:20px;
  overflow-x:hidden;
}
/* ------------------ HEADER FIX ------------------ */
.custom-nav{
    display:flex;
    background-color:#014185;
    padding:0;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}

/* Logo */
.nav-logo {
    height: 55px;
    margin-left: 50px;
}

/* Menu items */
.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
   font-weight: 400;
    margin: 0 5px;
}

.nav-link:hover {
    color: rgb(252, 151, 0) !important;
}

/* ===== SEARCH WRAPPER ===== */
.search-input-wrapper {
  display: none; /* مهم: hidden by default */
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;

  flex-direction: column;
  gap: 10px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 9999;
}

/* INPUT AREA */
.search-input-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #fff;
}

/* ICON */
.search-icon {
  font-size: 18px;
  color: #fff;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;

  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

/* RESULTS */
#results {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

#results li {
  padding: 10px;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#results li:hover {
  background: #ffd700;
  color: #000;
}

/* SEARCH BUTTON */
#searchBtn {
  bottom: 80px;
  background: transparent !important;
  right: 20px;
  z-index: 9999;
  border: none;
  width: 50px;
  height: 50px;
  margin-top: -5px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

/* Hover fix */
.navbar-nav .nav-item .nav-link {
    cursor: pointer;
}
/* Custom Dropdown Style */
.custom-dropdown {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: none;
    min-width: 200px;
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 16px;
    color: #000;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #176CC4;
    color: #fff;
    border-radius: 0;
}

/* Dropdown open on hover (optional, like pic) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


/*** Navbar End ***/
.hero {
    width: 80%;
}
.first-text{
  font-size: 40px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-weight: 900;
  font-style: italic;
  color: rgb(29, 44, 154);

}
.lead{
  font-size: 40px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-weight: 900;
  font-style: italic;
  color: rgb(32, 38, 161);
}
.video {
  width: 100%;
  display: flex;
  border-radius: 15px;
  height: 450px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

.video-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.zoom-img{
  animation:zoomLoop 40s infinite ease-in-out;
  will-change:transform;
}

@keyframes zoomLoop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 15px;
  text-align: center;
  z-index: 1;
}

.overlay h1 {
  font-size: 3rem;
  color: #ffffff;
  margin: 0.5rem;
  text-shadow: 2px 2px 5px #000000;
}

.overlay p {
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 5px #000000;
}
.fw-top {
  font-family: Verdana, sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #003165c3;

  text-shadow:
       1px 1px 1px #ffffffb7,
       1px 2px 1px #ffffffb7,
       1px 3px 1px #ffffffb7,
       1px 4px 1px #ffffffb7,
       1px 5px 1px #ffffffb7,
}

/* په لویو سکرینونو کې لوی سایز */
@media (min-width: 992px) {
  .fw-top {
    font-size: 60px;
  }
}
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-in-out;
}

.reveal-section.show {
  opacity: 1;
  transform: translateY(0);
}
/* Container */
.afg-wrapper{
  position: relative;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}
/* Each card */
.afg-item{
  position: relative;
  margin-left: 0px;
  width: 250px;
  height: 400px;
  flex-direction:column;
  overflow:visible;
  position:relative;
  background:transparent;
}

/* Top image section */
.afg-image{
  width: 200px;
  height: 210px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-left: 10px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  margin-top: 20px;
  transition: 0.5s ease-in;
}

.afg-image:hover{
  transform:translateX(-5%);
  border-radius: 0;
}

/* Bottom yellow section */
.afg-content{
  background: rgb(24, 88, 199);
  width: 220px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px;
  margin-top:-16px;
  box-shadow:0 4px 10px rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Text */
.afg-text{
  margin:0;
  font-size: 20px;
  line-height:1.4;
  text-align:center;
  font-weight:600;
  color:#0b0b0b;
}
/* Extra info box (new) */
.afg-extra-box {
  height: 40px;
  width: 200px;
  background: #fff;
  padding:10px;
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  font-weight: 900;
  color: #111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 5px;
}
/* Buttons section */
.afg-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Buttons */
.afg-btn{
  border:none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  margin-left: 200px;
}
.btn-info{
  width: 120px;
  height: 40px;
  margin-left: 30px;
  background:#014185;
  color:white;
  transition: 0.3s ease-in-out;
}
.btn-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  color: #ffffff;
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
  background: #ffa200;
}

.afghanistan-section{
  display: flex;
  width: 100%;
}
.icon-card {
  background: #014aa3;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: 0.4s ease-in-out;
  margin-top: 20px;
  width: 120px;
  height: 155px;
}

.icon-card:hover {
  transform: scale(1.1);
}

.icon-title {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.pro-badge {
  background: #ffd44d;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-weight: 800 !important;
  font-size: 40px !important;
  color: #2c3e50;
}

.section-text {
  font-size: 17px;
  line-height: 1.4;
  color: #333;
}


.culture{
  width: 200px;
  height: 38px;
  font-size: 16px;
  float: right;
  color: #ffffffda;
  font-weight: bold;
  background: #00498dda;
  font-family: 'Times New Roman', Times, serif;
}
.card-a-body {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(25, 65, 141);
  padding: 7px;
  width: 45%;
  height: 140px;
  box-sizing: border-box;
  margin-left: 0;
  transition: 0.3s ease-in-out;
}
.card-a-body:hover{
  opacity: 0.8;
}
.card-a-title {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin: 0 0 0px;
  font-weight: bold;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
}
.card-c-title {
  text-align: center;
  color: rgb(11, 11, 11);;
  margin: 0 0 0px;
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
}
.card-a-text{
  font-size: 14px;
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
}
.btn-a {
  display: flex;
  width: 100px;
  height: 40px;
  padding: 6px 6px;
  background: #f5f50a;
  color: #000000;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 50px;
  margin-right: 20px;
  float: right;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
}
.btn-a:hover {
  background: #f3ab03;
  color: rgb(255, 255, 255);
  transform: translateY(-4%);
}
.fw-t {
  position: relative;
  font-family: Verdana, sans-serif;
  font-weight: 900;
  font-size: 40px;
  margin-top: 100px !important; /* د h5 لپاره مناسب */
  color: #003977f1;

  text-shadow:
       1px 1px 1px #ffffffb7,
       1px 2px 1px #ffffffb7,
       1px 3px 1px #ffffffb7,
       1px 4px 1px #ffffffb7,
       1px 5px 1px #ffffffb7;
}

/* که غواړې لوی سایز په لوی سکرین کې */
@media (min-width: 992px) {
  .fw-t {
    font-size: 40px;
  }
}




/* =========================
   MAIN GRID WRAPPER
========================= */
.card-1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* =========================
   EACH CARD
========================= */
.card-inf{
  position: relative;
  flex: 0 0 calc(33.333% - 20px); /* 3 cards per row */
  max-width: calc(33.333% - 20px);
  transition: 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 15px;
}

/* Hover Effect */
.card-inf:hover{
  transform: translateY(-5px);
}

/* =========================
   IMAGE
========================= */
.card-inf img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* =========================
   CARD BODY
========================= */
.card-body{
  position: absolute;
  bottom: 0.2px;
  left: 10px;
  background: rgba(255,255,255,0.8);
  padding: 12px;
  border-radius: 12px;
  width: 40%;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}

/* =========================
   TITLE
========================= */
.card-title,
.title-text{
  font-size: 16px;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  margin: 0 0 5px;
}

/* =========================
   STARS
========================= */
.stars{
  color: rgb(255, 136, 0);
  font-size: 15px;
  margin-bottom: 5px;
}

/* =========================
   BUTTON
========================= */
.btn-1{
  display: inline-block;
  padding: 6px 12px;
  background: #f6e33b;
  color: #0e0e0e;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
}

.btn-1:hover{
  background: #113f95;
  color: #fff;
}

/* =========================
   MOBILE RESPONSIVE
   ONLY 1 CARD ON SMALL SCREEN
========================= */
@media (max-width: 768px){

  .card-inf{
    flex: 0 0 100%;
    max-width: 100%;
  }

  .card-inf img{
    height: 240px;
  }

  .card-body{
    width: 40% !important;
  }
  .fw-t {
    font-size: 15px;
  }
}

.custom-tour-box{
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  padding: 5px 10px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tour-text p{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  max-width: 900px;
  line-height: 1.7;
}

.custom-tour-btn{
  background: #ffa200;
  color: #272727;
  padding: 5px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.custom-tour-btn:hover{
  background: #f1f1f1;
  color: #084298;
  transform: translateY(-2px);
}

/* =========================
   HEADING STYLE
========================= */
.Jalal-1{
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #084298;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 15px;
}

/* =========================
   ANIMATION
========================= */
@keyframes animate{
  0%{
    background-position: 0%;
  }

  100%{
    background-position: 400%;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px){

  .Jalal-1{
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

  .Jalal-1{
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .choose-p{
    font-size: 15px !important;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px){

  .Jalal-1{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

/* =========================
   CAROUSEL CONTAINER
========================= */
.carousel-inner {
  width: 100%;
  height: 450px;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  height: 450px;
}

/* Responsive height */
@media (max-width: 768px) {
  .carousel-inner,
  .carousel-item {
    height: 300px;
  }
}

/* =========================
   CAROUSEL IMAGE
========================= */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* =========================
   CAPTION (LIGHT + FAST)
========================= */
.carousel-caption {
  background: rgba(124, 124, 124, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 15px 20px;

  width: 90%;
  max-width: 800px;
  border-radius: 10px;

  margin-bottom: 15px;

  /* performance hint */
  will-change: transform;
}

/* caption text */
.short-t {
  color: #fff;
}

/* =========================
   CONTROLS (FIXED POSITION)
========================= */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

/* icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgb(251, 138, 0);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* optional hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* =========================
   PERFORMANCE OPTIMIZATION
========================= */
.carousel-caption {
  contain: layout paint;
}
.Jalal-2 {
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color:#084298;
  margin-top: 100px;
  margin-bottom: 20px;

  will-change: background-position;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.step-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}
 .step-card::before {
     content: '';
     position: absolute;
     border-radius: 15px;
     top: 0;
     left: 0;
     width: 2px;
     height: 100%;
     background: #1d6bd2;
     transition: width 0.3s;
 }

 .step-card:hover::before {
     width: 100%;
     opacity: 0.1;
 }
  .step-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }


.step-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
}


.about-section {
  color: #1a283d;
  margin-top: 80px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #cf3f1a;
  position: relative;
  padding-bottom: 5px;
}
.section-title {
  font-weight: 800 !important;
  font-size: 40px !important;
  color: #2c3e50;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.about-list i {
  color: #f05a29;
  margin-right: 6px;
  font-size: 18px;
}

.learn-more-btn {
  border: 2px solid #f05a29;
  color: #f05a29;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 500;
  background: transparent;
  transition: 0.3s ease;
}

.learn-more-btn:hover {
  background: #f05a29;
  color: #fff;
}

.stats-row {
  margin-top: 60px;
}

.stats-box {
  background: #fff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
}

.stats-box .icon {
  font-size: 32px;
  color: #f05a29;
  margin-bottom: 15px;
}

.stats-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0d2645;
}

.stats-box p {
  color: #555;
  font-size: 15px;
}

.more-link {
  color: #0d2645;
  font-weight: 600;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}
.fw-w {
  font-size: 40px;
  margin-top: 50px;
  text-align: center;
  line-height: 2;
  font-weight: 900;
  font-family: verdana;
  color:#084298;
  position: relative;
}
 /* Features Section */
 .features {
     padding: 20px 0;
     background: white;
     position: relative;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
     color: #1a6fc4;
     position: relative;
 }

 .section-title h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .section-title p {
     font-size: 1.2rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }


/* ===== BEFORE HOVER ANIMATION ===== */
.fw-g{
  text-align: center;
  margin-top: 20px;
  font-size: 40px !important;
  margin-bottom: 20px;
  overflow: hidden;
  color:#084298;
}

/* ===== GALLERY TITLE ===== */
.gallery-title {
  color: #0071e3;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
}

/* ===== GALLERY LINKS ===== */
.gallery-link {
  padding: 8px 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  background-color: #f2f2f2;
  color: #003988;
  transition: all 0.3s ease;
}

.gallery-link.active,
.gallery-link:hover {
  background-color: #002c79;
  color: #fff;
}

/* ===== GALLERY IMAGE STYLING ===== */
.gallery-item img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 230px;
}

/* Wrapper */
.logo-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 120px;
}

.t-logo {
  font-size: 30px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
  color:#084298;
  margin-top: 30px;
}

/* Logos container */
.logos {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 10px 0;
    animation: scroll 15s linear infinite;
}

/* Images */
.logos img {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

/* Infinite scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pause when hovered (optional backup) */
.logo-scroller:hover .logos {
    animation-play-state: paused;
}

/* Main */
.testimonials {
    padding: 10px 0;
}

#testimonials {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
}

/* Title */
.section-slide {
    text-align: center;
    margin-bottom: 40px;
}

.section-slide h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-slide h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #3498db;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-slide p {
    color: #6c757d;
    margin-top: 10px;
}

/* Slider width */
.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
}
/* CARD (main box) */
.testimonial-item {
    background: #fff;
    width: 500px;            /* د اپلوډ شوي عکس اندازه */
    min-height: 190px;       /* د عکس مطابق ارتفاع */
    padding: 40px 35px 35px 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    margin-left: 20px;
}

/* Position of profile image */
.testimonial-img {
    position: absolute;
    top: 35px;
    left: -30px;            /* نیم بهر لکه عکس */
}

/* Image size */
.testimonial-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}


/* Name & role */
.testimonial-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Text */
.testimonial-item p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

/* Quotes */
.quote-icon-left {
    position: absolute;
    left: 0;
    top: -5px;
    color: #e6e9ef;
    font-size: 26px;
}

.quote-icon-right {
    position: absolute;
    right: 0;
    bottom: -5px;
    color: #e6e9ef;
    font-size: 26px;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
}

.swiper-pagination-bullet-active {
    background: #3498db;
}
/* =========================
   PAGINATION
========================= */

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #bdc3c7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3498db;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet & Desktop */
@media (min-width: 768px) {
    .testimonial-item {
        max-width: 95%;
    }
}

/* Mobile fine tuning */
@media (max-width: 767px) {
    .testimonial-item {
        margin: 0;
    }
}


        
.whatsapp-chat-button {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 7px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.6s ease-in-out;
}

.whatsapp-chat-button img {
  width: 30px;
  height: 30px;
}
.whatsapp-chat-button:hover{
  transform: rotate(360deg);
  background-color: #eeff00;
}
  #backToTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 5px;
    display: none; /* په ابتدا کې نه ښکاري */
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.6s ease-in-out;
  }

  #backToTop:hover {
  transform: rotate(360deg);
  background-color: #ffb700;
  color: #0b0b0b;
  }

  .icon-card {
    background: #014aa3;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    justify-content: space-between;
    transition: 0.4s ease-in-out;
}
.icon-card:hover{
    transform: scale(1.1);
}

.icon-title {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.pro-badge {
    background: #ffd44d;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.footer-subscribe {
    text-align: left;
    margin-top: 15px;
}

.footer-subscribe h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Input + Button */
.subscribe-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.subscribe-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 10px;
    font-size: 13px;
}

.subscribe-box button {
    background: #ffde07;
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    cursor: pointer;
}

.subscribe-box button:hover {
    background: #ffd000;
}

/* footer.css */

.footer {
    width: 100%;
    background-color: #014185;
    color: #1b1b1b;
    padding: 12px 15px 8px 15px;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 0px !important;
}

.footer-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.footer-line {
    width: 80px;
    height: 3px;
    background-color: #ffde07;
    margin-bottom: 10px;
}

.footer .P-1 {
    font-weight: 600;
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-links li i,
.footer-contact li i {
    color: white;
    margin-right: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.social-icons a {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #fff;
    text-align: center;
}

.main-menu-bar {
  background: linear-gradient(to bottom, #4fabf6, #2c5f8a);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.main-menu-item {
  list-style: none;
}

.main-menu-link {
  display: block;
  width: 180px;
  height: 40px;
  margin: 5px;
  margin-left: 30px;
  color: #ffffff;
  padding: 10px 10px;
  text-decoration: none;
  background-color: #ff9100;
  border-radius: 15px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.main-menu-item:last-child .main-menu-link {
  border-right: none;
}

.main-menu-link:hover {
  background-color: rgba(255,255,255,0.15);
}
.mt-3 {
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  color: #fff;
  font-style: italic;
  letter-spacing: 1px;
}


/* Easy booking step */

.title {
  font-weight: 800;
  letter-spacing: 2px;
}

.title span {
  color: #4f46e5;
}

.card-glow {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 45px 25px;
  text-align: center;
  height: 100%;
  position: relative;

  transition: transform 0.4s ease, color 0.4s ease;
  box-shadow: 0 10px 10px rgba(79,70,229,0.15);
  cursor: pointer;

  will-change: transform;
}

.card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
  will-change: opacity;
}

.card-glow:hover::before {
  opacity: 1;
}

.card-glow:hover {
  transform: translateY(-15px) scale(1.03);
  color: #fff;
}

.card-glow:hover p {
  color: #e0e7ff;
}

.icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #fff;
  font-size: 36px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

p {
  font-size: 14px;
  color: #6b7280;
}
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 22px; /* ⬅️ smaller padding */
  height: 100%;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01); /* ⬅️ softer hover */
  box-shadow: 0 25px 45px rgba(0,0,0,0.14);
}

.feature-card h5 {
  font-weight: 700;
  font-size: 17px; /* ⬅️ smaller title */
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 14px; /* ⬅️ compact text */
  line-height: 1.6;
}

.icon-box {
  width: 56px;   /* ⬅️ smaller icon */
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Gradients */
.gradient-1 { background: linear-gradient(135deg, #56ccf2, #2f80ed); }
.gradient-2 { background: linear-gradient(135deg, #43cea2, #185a9d); }
.gradient-3 { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.gradient-5 { background: linear-gradient(135deg, #56ccf2, #2f80ed); }
.gradient-6 { background: linear-gradient(135deg, #11998e, #38ef7d); }




/* Top Bar Background */
.top-bar {
    background: linear-gradient(to right, #053183fd);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 0;
    font-size: 20px;
    font-weight: 500;
}

/* Track container */
.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

/* Text blocks */
.scroll-text {
    padding-right: 120px; /* space between repeats */
}

/* Smooth continuous animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Pause on hover */
.top-bar:hover .scroll-track {
    animation-play-state: paused;
}

@media(max-width:768px){

  .nav-logo{
     height:45px;
     margin-left:10px;
  }

  .nav-link{
     font-size:13px;
  }

  #themeToggle,
  #searchBtn{
     margin-left:10px;
     font-size:22px;
  }

  .video{
    height:300px;
  }

  .overlay h1{
    font-size:1.8rem;
  }

  .overlay p{
    font-size:1rem;
  }

  .carousel-inner,
  .carousel-item{
    height:300px;
  }

  .carousel-caption{
    width:95%;
    padding:10px;
  }

  .weather-card,
  .clock-card{
    width:100%;
  }

  .chat-btn{
    bottom:130px;
  }

  .whatsapp-chat-button{
    bottom:70px;
  }

  .afg-item{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .afg-image{
    width:90%;
    margin-left:0;
  }

  .afg-content{
    width:90%;
  }

  .afg-extra-box{
    width:90%;
    margin-left:0;
  }

  .card-body,
  .card-a-body{
    width:70%;
  }

  .fw-top,
  .Jalal-1,
  .Jalal-2,
  .fw-w,
  .fw-g{
    font-size:28px !important;
  }

  .carousel-control-next-icon{
    margin-right:10px;
  }

  .carousel-control-prev-icon{
    margin-left:10px;
  }

  .testimonial-item{
    padding:35px 20px 25px 60px;
  }
}