.megamenu {
  position: static !important;
}

.megamenu .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 90%;
  margin: 0 auto !important;
  position: absolute;
  top: 106%;
}

.mega-item {
  padding: 10px;
  text-align: left;
  border-radius: 8px;
  transition: background-color 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.mega-item:hover {
  background-color: #f8f9fa;
}

.mega-item .icon {
  font-size: 20px;
  color: #25336d;
  background: #e8f6fb;
  border: 1px solid #daf6ff;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 0;
}

.mega-item h6 {
  font-weight: 600;
  margin-top: 10px;
}

.mega-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: normal;
  /* prevents overflow */
}

.mega-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
}

@keyframes fadeDrop {
  from {
    opacity: 0;
    transform: translateY(0px);
  }

  to {
    opacity: 1;
    transform: translateY(15px);
  }
}

#bestCarousel img {
  width: 100%;
  height: 450px;
  /* object-fit: cover; */
}

/* Tablet size */
@media (max-width: 991px) {
  #bestCarousel img {
    height: 350px;
  }
}

/* Mobile size */
@media (max-width: 575px) {
  #bestCarousel img {
    height: 220px;
  }
}

/*###########  industries-section ############*/
.industries-section {
  background: linear-gradient(180deg, #f7f9ff, #eef3ff);
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
  padding: 50px 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  color: #17203a;
  /* text-transform: uppercase; */
  letter-spacing: 0.1px;
  animation: fadeDown 1s ease;
}

/* Card Styling */
.industry-card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.8rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 15px;
  /* border: 2px solid rgba(120, 150, 210, 0.25); */
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.125rem 0.25rem rgba(0, 0, 0, 0.14) !important;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  animation: fadeZoom 0.7s ease;
}

.industry-card:hover {
  transform: translateY(-1px) scale(1);
  border-color: #b4b4b4;
  box-shadow: 0 4px 10px rgba(70, 120, 200, 0.1);
  background: #f9fbff;
}

/* Shiny hover light */
.industry-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -200%;
  width: 200%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
}

.industry-card:hover::before {
  left: 100%;
}

/* Floating icons */
.industry-icon {
  width: 65px;
  height: 65px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.industry-label {
  font-size: 1rem;
  font-weight: 500;
  color: #1e2a47;
  letter-spacing: 0.3px;
  animation: fadeUp 1s ease;
}

/* Animations */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 575px) {
  .industry-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    min-height: 120px;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
/*########### End industries-section ############*/

/*############## Start Stack Section ############*/
.Stack-section {
  background: #ffffff;
  padding: 50px 0;
}
.Stack-section .nav-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 15px 0;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.Stack-section .nav-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  padding: 10px;
  text-align: center;
  min-width: 125px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: box-shadow 0.25s;
  cursor: pointer;
  border: 2px solid #bfbfbf;
}

/* .nav-item {
            position: relative;
            background: #ffffff;
            padding: 12px 18px;
            border-radius: 22px;
            transition: 0.3s;
        } */

/* ACTIVE BORDER */
.Stack-section .nav-item.active {
  border: 2px solid #d0d0d0;
}

.Stack-section .nav-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

.Stack-section .nav-item span {
  font-size: 16px;
  color: #25336d;
}

.Stack-section .packages-section {
  margin-top: -50px !important;
  padding-top: 70px;
  padding-bottom: 0px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #eff3ff;
  border-radius: 60px;
}

.Stack-section .package-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: start;
  /* margin-bottom: 20px; */
}
.Stack-section .package-cards .container {
  padding: 0.25rem 1.2rem 1.2rem 1.2rem;
}
.Stack-section .package-cards .package-card-row {
  padding: 1.5rem;
}

.Stack-section .package-card {
  background: #fefefe;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.125rem 0.25rem rgba(0, 0, 0, 0.14) !important;
}

.Stack-section .package-card:hover {
  border-color: #ddd;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.25rem 0.5rem rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.Stack-section .package-card img {
  width: 50%;
  height: 50%;
}

.main-img {
  position: relative;
}

.main-img img {
  width: 100%;
  height: 310px !important;
  border-radius: 25px 25px 50px 25px;
  position: absolute;
  bottom: -10px;
  /* padding: 10px; */
  left: 0;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.25rem 0.5rem rgba(0, 0, 0, 0.14);
}

.packages-section h3 {
  color: #393939;
  font-weight: 600;
  font-size: 1.75rem;
  border-left: 4px solid #ff6b35;
  padding-left: 10px;
  margin-bottom: 1rem;
}

.Stack-section .package-card span {
  color: #111111;
}

.Stack-section .package-info h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #25336d;
  font-weight: 600;
}

.Stack-section .package-info p {
  margin: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.Stack-section .nav-top {
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  width: 65%;
  margin: 0 auto;
}

.Stack-section .nav-item {
  /* border-bottom: 3px solid transparent !important; */
  border: 2px solid #bfbfbf;
  border-radius: 24px;
}

.Stack-section .nav-item.active {
  /* border-bottom: 3px solid #fcdecc !important; */
  border-color: #fecab7 !important;
}
@media (max-width: 767px) {
  .Stack-section .package-cards .package-card-row {
    padding: 0.5rem 0.25rem;
  }
  /* TOP NAV FIX */
  .Stack-section .nav-top {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px;
  }

  .Stack-section .nav-top::-webkit-scrollbar {
    display: none;
  }

  .Stack-section .nav-item {
    min-width: 90px;
    height: 80px;
    padding: 8px;
    border-radius: 16px;
  }

  .Stack-section .nav-item img {
    width: 30px;
    height: 30px;
  }

  .Stack-section .nav-item span {
    font-size: 13px;
    text-align: center;
  }

  /* PACKAGES SECTION */
  .Stack-section .packages-section {
    margin-top: 0 !important;
    padding: 25px 10px;
    border-radius: 30px;
  }

  .Stack-section .package-cards {
    flex-direction: column;
  }

  /* TWO CARDS PER ROW */
  .Stack-section .package-cards .col-6,
  .Stack-section .package-cards .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .Stack-section .package-card {
    padding: 14px;
    border-radius: 18px;
  }
  .Stack-section .package-cards .container {
    padding: 0.5rem 0.25rem;
  }

  .Stack-section .package-card img {
    width: 45px;
    height: 45px;
  }

  .Stack-section .package-card span {
    font-size: 13px;
  }

  /* MAIN IMAGE FIX */
  .main-img {
    position: static;
    /* margin-top: 20px; */
  }

  .main-img img {
    position: static;
    height: auto !important;
    border-radius: 20px;
    padding: 0;
  }

  /* HEADING FIX */
  .packages-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

/* Nav Item Active Bottom Border Animation */
.Stack-section .nav-item {
  position: relative; /* 👈 Important for ::after */
  overflow: visible; /* 👈 Pseudo-element ke liye */
}

.Stack-section .nav-item::after {
  content: "";
  position: absolute;
  bottom: -14px; /* nav-top padding ke hisaab se adjust */
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* Border width */
  height: 3px;
  background: #ff6b35; /* Default grey */
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Stack-section .nav-item.active::after {
  opacity: 1;
  background: #ff6b35;
  width: 100%;
  box-shadow: 0 2px 8px rgba(252, 222, 204, 0.6);
}

/* Hover effect */
.Stack-section .nav-item:hover::after {
  opacity: 0.7;
  width: 70%;
}

/* Mobile me chhota border */
@media (max-width: 767px) {
  .Stack-section .nav-item::after {
    height: 3px;
    bottom: -6px;
  }
}

/*############## End Stack Section ############*/

/*########## Start IT Solutions Tabs Section ########## */
:root {
  --primary-blue: #3451b8;
  --dark-blue: #1a4db3;
  --light-blue: #eef4ff;
  --accent-teal: #00c9c8;
  --text-dark: #222831;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

.it-tabs-section {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.it-tabs-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(42, 109, 245, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.it-tabs-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 201, 200, 0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 2.5rem;
  /* margin-bottom: 20px; */
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.t-section {
  background-color: #fff;
  padding: 25px;
  border-radius: 25px;
  border: 1px solid #eee;
}

/* Left Tab Menu */
.it-tab-menu {
  border: none;
  gap: 15px;
}

.it-tab-menu .nav-link {
  background: var(--white);
  border: none;
  padding: 20px;
  border-radius: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.125rem 0.25rem rgba(0, 0, 0, 0.14) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* border: 1px solid #eee; */
}

.it-tab-menu .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #3451b8;
  transition: width 0.4s ease;
  z-index: -1;
}

.it-tab-menu .nav-link span {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.it-tab-menu .nav-link i {
  font-size: 20px;
  transition: all 0.4s ease;
  color: var(--primary-blue);
}

/* Hover Effects */
.it-tab-menu .nav-link:hover {
  color: var(--white);
  transform: translateY(-5px);
  border-left-color: var(--primary-blue);
}

.it-tab-menu .nav-link:hover::before {
  width: 100%;
}

.it-tab-menu .nav-link:hover i {
  transform: translateX(8px);
  color: var(--white);
}

/* Active State */
.it-tab-menu .nav-link.active {
  color: var(--white);
  transform: translateY(-5px);
  /* border-left-color: var(--primary-blue); */
}

.it-tab-menu .nav-link.active::before {
  width: 100%;
}

.it-tab-menu .nav-link.active i {
  transform: translateX(8px);
  color: var(--white);
}

/* Right Content */
.it-tab-content {
  background: var(--white);
  padding: 0 25px;
  /* border-radius: var(--radius); */
  /* box-shadow: var(--shadow); */
  height: 100%;
  position: relative;
  overflow: hidden;
  border-left: 2px solid #eee;
}

.tab-content-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.tab-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.8rem;
  color: var(--primary-blue);
  border: 1px solid #ededed;
}

.it-tab-content h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.it-tab-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.tab-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.tab-features li {
  padding: 10px 0;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-left: 30px;
}

.tab-features li:before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-size: 1.2rem;
}

.tab-button {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tab-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 109, 245, 0.2);
}

.tab-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.tab-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .it-tabs-section {
    padding: 70px 0;
  }

  .it-tab-content {
    padding: 35px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .it-tab-menu .nav-link {
    padding: 18px 20px;
  }

  .tab-content-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-icon {
    margin-bottom: 15px;
  }
}

/* Animation for tab content */
.tab-pane.fade.show.active {
  animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*########## End IT Solutions Tabs Section ########## */

/*######### start Cyber Section ########## */
.cyber-section {
  background: #ffffff;
  padding: 60px 0;
}

.main-bg {
  background: linear-gradient(90deg, #f5ede3 5%, #fcfaf5 95%);
  border-radius: 42px;
  box-shadow: 0px 2px 1px 2px #f8ead7;
  /* padding: 30px 30px 50px 80px; */
  /* margin: 44px auto; */
}

.cs-header-icon {
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  position: relative;
}

.cs-header-icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 72px;
  height: 72px;
  border: 3px solid #3451b8 !important;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.cs-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 7px;
}

.cs-title span {
  color: #3451b8;
}

.cs-subtitle {
  font-size: 1.55rem;
  font-weight: bold;
  margin-bottom: 19px;
}

.cs-desc {
  font-size: 1rem;
  margin-bottom: 22px;
  color: #21242c;
}

.btn-cs {
  background-color: #3451b8;
  color: #fff;
  border-radius: 7px;
  font-weight: 500;
  padding: 10px 25px;
  margin-bottom: 4px;
  font-size: 1rem;
}

.btn-cs:hover {
  background-color: #18478a;
  color: #fff;
}

.stats-row {
  display: flex;
  gap: 25px;
  margin-left: 0;
  margin-top: 18px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  color: #3451b8;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: -1px;
}

.stat-label {
  font-size: 0.8rem;
  color: #21242c;
  font-weight: 500;
}

/* Right diagram styling */
.diagram-area {
  position: relative;
  width: 430px;
  margin: auto;
  height: 430px;
}

.diagram-circle {
  /* background: #3451b8; */
  width: 210px;
  height: 210px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-logo {
  width: 100%;
  /* Replace with your logo image */
}

/* Place features as per image - 12 features in a circle */
.feature-label {
  position: absolute;
  background: none;
  color: #3451b8;
  font-size: 1.09rem;
  font-weight: 600;
  text-align: center;
  width: 106px;
}
/*######### End Cyber Section ########## */

/*########## Start Testimonials Section #########*/
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: top !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #c9d1d9;
  opacity: 1;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 30px !important;
  background: #0e1d34;
}
/*########## End Testimonials Section #########*/

/*######### Start Packages Section ############*/

.packages-section {
  background: radial-gradient(
    circle at top,
    #3451b8 0,
    #3451b8 50%,
    #00296b 100%
  );
  padding: 3rem 0 0rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Top brands pills */
.brand-pills-wrapper {
  position: relative;
  margin-bottom: 1rem;
  z-index: 10;
}

.brand-pills-row {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
  padding: 10px 4px 5px;
  position: relative;
  border-bottom: 2px solid #526bc3;
}

/* Scrollbar styling */
.brand-pills-row::-webkit-scrollbar {
  height: 6px;
}

.brand-pills-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.brand-pills-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.brand-pills-row::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.brand-pill {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  user-select: none;
  white-space: nowrap;
  min-width: 100px;
}

.brand-pill.active {
  background-color: #ffffff;
  color: #3451b8;
  border-color: #ffffff;
  outline: 2px solid #fff;
  outline-offset: 0px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
  z-index: 2;
}

.brand-pill span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.25s ease;
}

.brand-pill.active span {
  color: #3451b8 !important;
  font-weight: 600;
}

/* बेहतर हॉवर इफेक्ट */
.brand-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.25);
}

.brand-pill.active:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
}

/* Swiper Container */
.swiper-container {
  position: relative;
  padding: 10px 0 30px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 10px 5px 30px;
}

/* Cards */
.package-card {
  background: #fefefe;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 0;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.12),
    0 0.125rem 0.25rem rgba(0, 0, 0, 0.14);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.package-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  padding: 8px;
}

.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 1rem;
}

.package-card:hover img {
  transform: scale(1.01);
}

.package-card-body {
  padding: 18px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-location {
  font-weight: 600;
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 5px;
}

.package-brand {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.package-price-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 5px;
  margin-top: auto;
}

.package-price-text strong {
  color: #111827;
  font-size: 1.1rem;
}

/* Header row */
.packages-header {
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.packages-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.packages-header .view-all {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.packages-header .view-all:hover {
  color: #fff;
  text-decoration: underline;
}

/* Custom Navigation Arrows */
.custom-nav-arrows {
  display: flex;
  gap: 10px;
}

.custom-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.custom-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.custom-nav-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.custom-nav-arrow.disabled:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: none;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Swiper Pagination */
.packages-section .swiper-pagination {
  position: relative;
  margin-top: 20px !important;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* No results message */
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #fff;
  display: none;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Package Tags */
.package-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Package Duration */
.package-duration {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Swiper Slide Centering */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .brand-pills-wrapper {
    margin-bottom: 1rem;
  }

  .package-card-img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .packages-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .brand-pill {
    min-width: 90px;
    padding: 6px 15px;
  }

  .brand-pill span {
    font-size: 0.75rem;
  }

  .packages-header h2 {
    font-size: 1.3rem;
  }

  .custom-nav-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .package-card-img {
    height: 180px;
  }

  .package-card-body {
    padding: 14px;
  }

  .package-location {
    font-size: 0.95rem;
  }

  .package-price-text strong {
    font-size: 1rem;
  }

  .brand-pill {
    min-width: 80px;
    padding: 5px 10px;
  }
}

/*######### End Packages Section ############*/

/*######### Start CTA Section ############*/
.cta-section {
  padding: 40px 0;
}

.cta-section .container {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  padding: 30px 40px;
}

.cta-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 0.75rem;
}

.cta-content p {
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 640px;
}

.cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  min-width: 90px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3451b8;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #535353;
  margin-top: 2px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #3451b8;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: 2px solid #3451b8;
  transition: all 0.25s ease-in-out;
}

.cta-btn-primary {
  background-color: #3451b8;
  /* Elevate blue style */
  border-color: #3451b8;
  color: #ffffff;
}

.cta-btn-primary:hover {
  background-color: #3451b8;
  border-color: #3451b8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.cta-btn-secondary {
  background-color: #ffffff;
  border-color: #3451b8;
  color: #3451b8;
}

.cta-btn-secondary:hover {
  background-color: #3451b8;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 24px 20px;
  }

  .cta-actions {
    margin-top: 20px;
    align-items: stretch;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}
/*######### End CTA Section ############*/
