/* Banner Styles */
/* .banner {
    margin-top: 80px;
} */
.banner-slide {
  padding-top: 80px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}
.banner-slide .container{
    display: flex;
    max-height: 80vh;
    gap: 80px;
    align-items: center;
}
.banner-slide .container.column{
    flex-direction: column;
}
.banner-slide .container.column .banner-img img{
    max-height: 30vh;
    width: 100%;
}
.banner-content {
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

.banner-content h1,.banner-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--primary-color);
}
@media (max-width: 1450px){
    .banner-content h1,.banner-content h2{
        font-size: 3rem;
    }
    .banner-slide .container{
        gap: 50px;
    }
}
@media (max-width: 768px){
    .banner-slide .container{
        flex-direction: column;
    }
}
.banner-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: black;
}
.banner-content .btn-outline{
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 7px 20px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 20px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Banner button font size */
.banner-content .btn {
  font-size: 16px;
}

/* Product Redesign Section */
.product-flex {
  display: flex;
  align-items: stretch;
  gap: 50px;
  background: #f8fafc;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

.product-intro-side {
  flex: 0 0 60%;
}

.product-intro-side h2 {
  font-size: 2.8rem;
  /* color: var(--primary-color); */
  margin-bottom: 20px;
}

.product-intro-side p {
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  background: var(--white);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.benefit-item span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.product-slider-side {
  flex: 1;
  min-width: 0;
  position: relative;
}

.mini-product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #edf2f7;
}

.mini-product-img {
  height: 280px;
  overflow: hidden;
}

.mini-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-product-body {
  padding: 25px;
}

.mini-product-cat {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

.mini-product-body h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.mini-product-body h3 a {
  color: inherit;
  text-decoration: none;
}
.mini-product-body p {
  margin-bottom: 20px;
}
/* Swiper overrides for product slider */
.product-swiper {
  padding: 40px 0;
  height: 100%;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Product Swiper Navigation Buttons */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-swiper .swiper-button-prev:after,
.product-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover {
  background: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(83, 35, 112, 0.3);
}

.product-swiper .swiper-button-prev:hover:after,
.product-swiper .swiper-button-next:hover:after {
  color: var(--white);
}

.product-swiper .swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  background: #f0f0f0;
}

.product-swiper .swiper-button-disabled:after {
  color: #999;
}

/* Application Fields Styles - Tabbed Hero Layout */
.applications {
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 600px;
}

.app-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 130px;
  justify-content: center;
}

.app-tab-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1); /* Zoomed in initial state */
  transition:
    opacity 1s ease,
    transform 1.5s ease;
  display: flex;
  align-items: center;
}

.app-tab-pane.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* Smooth zoom out to 1 */
}

.app-tab-pane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.app-info {
  position: relative;
  color: var(--white);
  z-index: 2;
}

.app-info h3,
.app-info .divider,
.app-info p,
.app-info .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-info h3 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.app-info .divider {
  width: 60px;
  height: 3px;
  background: var(--white);
  margin-bottom: 30px;
}

.app-info p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.app-tab-pane.active .app-info h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.app-tab-pane.active .app-info .divider {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.app-tab-pane.active .app-info p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.app-tab-pane.active .app-info .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.app-tabs-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: var(--white);
  z-index: 5;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

.app-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid #eee;
}

.app-tab-btn i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  /* color: var(--text-dark); */
}

.app-tab-btn span {
  text-align: center;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

.app-tab-btn.active,
.app-tab-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.app-tab-btn.active i {
  color: var(--white);
}
.app-tab-btn.active span,
.app-tab-btn:hover span {
  color: white;
}
@media (max-width: 768px) {
  .product-swiper {
    padding: 0 0 40px;
  }
  .applications {
    height: auto !important;
    display: grid;
    grid-template-rows: auto;
    position: relative;
  }
  .app-tabs-nav {
    grid-row: 1;
    position: relative;
    top: auto;
    left: auto;
    flex-wrap: wrap;
  }
  .app-tab-pane {
    grid-row: 2;
    grid-column: 1;
    position: relative;
    height: 480px;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.6s ease,
      transform 0.6s ease,
      visibility 0.6s;
    transform: translateX(20px);
    display: flex !important;
  }
  .app-tab-pane.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .app-tab-btn {
    flex: 0 0 50%;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
  }
  .app-tab-btn:nth-child(even) {
    border-right: none;
  }
  .app-tab-btn i {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .app-tab-btn span {
    font-size: 0.8rem;
  }

  .app-info h3 {
    font-size: 1.5rem;
  }
  .app-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .app-content-wrapper {
    padding: 40px 10px !important;
  }
}

/* About Section Styles */
.about-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image {
  height: 500px;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.about-image img{
    height: 100%;
}
/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 10;
  transition: var(--transition);
}

.video-play-btn i {
  margin-left: 5px;
}

.video-play-btn .ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.6;
  animation: playRipple 3s infinite;
  z-index: -1;
}

.video-play-btn .ripple:nth-child(2) {
  animation-delay: 1s;
}

.video-play-btn .ripple:nth-child(3) {
  animation-delay: 2s;
}

@keyframes playRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--secondary-color);
}

.video-play-btn:hover .ripple {
  background: var(--secondary-color);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-content {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.close-video {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.close-video:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background: #000;
}

.video-container video {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  max-height: 85vh;
  border-radius: 12px;
  outline: none;
  object-fit: contain;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-text {
  flex: 1;
}

.about-text span {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Stats/Counters */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: left;
  padding: 20px;
  /* border-left: 3px solid var(--primary-color); */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.stat-item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 20px;
}

/* Profile Content Box - Scrollable Text Area */
.profile-content-box {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 30px;
}

/* Custom Scrollbar Styling */
.profile-content-box::-webkit-scrollbar {
  width: 8px;
}

.profile-content-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.profile-content-box::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 10px;
  transition: var(--transition);
}

.profile-content-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #551e7a, #d67d00);
}

/* Firefox Scrollbar */
.profil-content-box {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
}

/* Why Choose Us Fixed BG */
.advantages {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5)),
    url("/wp-content/themes/GlobalZT/assets/images/home/bg1.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.advantages .section-title-left h2 {
  color: rgb(232, 232, 232);
}
.advantages .section-title-right p {
  color: rgb(232, 232, 232);
}
.adv-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.adv-card {
  padding: 30px;
  color: var(--text-gray);
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.adv-card:hover {
  transform: translateY(-5px);
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.adv-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.adv-card:hover i {
  color: var(--secondary-color);
}
.adv-card h3 {
  margin-bottom: 15px;
}

/* Service Cards - Bento Style Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Base Service Card Styles */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  /* animation: fadeInUp 0.6s ease forwards; */
  /* opacity: 0; */
}

/* Primary Cards with Background Images */
.service-card-primary {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(83, 35, 112, 0.85) 0%,
    rgba(0, 58, 116, 0.75) 100%
  );
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card-primary:hover::before {
  background: linear-gradient(
    135deg,
    rgba(83, 35, 112, 0.7) 0%,
    rgba(0, 58, 116, 0.6) 100%
  );
}

.service-card-primary .service-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(243, 146, 0, 0.2),
    transparent 60%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-primary:hover .service-overlay {
  opacity: 1;
}

.service-card-primary:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(83, 35, 112, 0.35);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(243, 146, 0, 0.2);
}

/* Service Content Container */
.service-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icon Styling */
.service-card .icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.service-card-glass .icon-circle {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
}

.service-card:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card-glass:hover .icon-circle {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

/* Text Styling */
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card-primary h3,
.service-card-primary p {
  color: var(--white);
}

.service-card-glass h3 {
  color: var(--primary-color);
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

@media (max-width: 767px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .service-content {
    padding: 35px 25px;
  }
}
/* News Section - Complex Grid Layout */
.news {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5)),
    url(https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&q=80&w=2000);
  color: var(--white);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.news .section-header .section-title-right {
  color: rgba(255, 255, 255, 0.8);
}

.news .section-title-left h2::after {
  background: var(--secondary-color);
}

.news-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 30px;
}
.news-feature-card {
  transition: var(--transition);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.news-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-feature-card img {
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.news-feature-body {
  padding: 30px;
}

.news-feature-body h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text-dark);
}
.news-feature-body h3 a {
  color: inherit;
  text-decoration: none;
}
.news-feature-body p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--text-gray);
}

/* Middle News List */
.news-list-col {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
}

.news-list-item {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.news-list-item:hover {
  background: rgba(243, 146, 0, 0.05);
}

.news-list-item:hover h4 {
  color: var(--secondary-color);
}

.news-list-item:first-child {
  border-top: none;
}

.news-list-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.news-list-item h4 a {
  color: inherit;
  text-decoration: none;
}

.news-list-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.news-date {
  font-size: 0.85rem;
  color: #999999;
}

/* News Meta Container */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
  padding-right: 10px;
}

/* Learn More Button */
.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news-btn:hover {
  background: #e68a00;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(243, 146, 0, 0.4);
}

.news-btn i {
  transition: transform 0.3s ease;
}

.news-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-btn {
    align-self: flex-start;
  }
}

.news-event-card {
  background: #003a74;
  padding: 30px;
}

.news-event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.event-logo-box {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.event-next-label {
  color: var(--secondary-color); /* Theme Orange */
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.event-info h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.event-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
  .news-layout-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-event-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .news-layout-grid {
    grid-template-columns: 1fr;
  }
  .news-event-card {
    grid-column: span 1;
  }
}

/* Partner logos grid */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  border-radius: 12px;
  transition: var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* CTA Header Ribbon */
.cta-banner {
  color: var(--white);
  padding: 30px 0;
}

.cta-banner .container .cta-ribbon-flex {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-ribbon-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-ribbon-flex h2 {
  font-size: 1.8rem;
  margin: 0;
}

.cta-banner .btn {
  padding: 12px 30px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(-50px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  color: var(--secondary-color);
  transition: var(--transition);
}
.close-modal:hover {
  transform: rotate(90deg);
}
.modal-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  outline: none;
}

.w-100 {
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .banner-content h1,.banner-content h2 {
    font-size: 3rem;
  }

  .about-flex {
    flex-direction: column;
    gap: 40px;
  }

  .news-card {
    flex-direction: column;
  }

  .news-image,
  .news-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
    .banner .swiper-fade .swiper-slide{
        height: 100vh;
    }
    .btn-container{
        display: flex;
        align-items: center;
    }
    .btn-container .btn{
        font-size: 14px;
    }
    .mb-height-120 img{
        height: 150px;
    }
  .banner-slide {
    height: fit-content;
  }

  .banner-content h1,.banner-content h2 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
  .product-intro-side h2 {
    font-size: 1.8rem;
  }
  .product-flex {
    flex-direction: column;
    padding: 15px;
  }
  .benefit-item {
    padding: 15px;
  }
  .product-slider-side {
    padding: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    text-align: center;
  }
  .video-container video {
    width: 100%;
  }
}

/* Link element normalization */
.img-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.img-link:hover {
  color: inherit;
}
