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

/* Base */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f3f8fc;
  color: #133253;
  min-height: 100vh;
    background: linear-gradient(180deg, #eaf4fd 0%, #dbe9f7 100%);
}

/* HEADER */
.vs-header {
  background: linear-gradient(90deg, #1366d6 10%, #3cc0fa 100%);
  box-shadow: 0 6px 34px 0 rgba(31,87,214,0.13);
  border-radius: 0 0 20px 20px;
  position: sticky;
  top: 0; left: 0; z-index: 70;
  width: 100%;
  min-height: 68px;
  padding: 0;
  transition: box-shadow .27s, border-radius .19s;
  animation: header-slide-in 0.9s cubic-bezier(.26,.78,.29,1.12) 0s 1 backwards;
}
@keyframes header-slide-in {
  from { opacity:0; transform: translateY(-80px);}
  to { opacity:1; transform: translateY(0);}
}
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
}
.vs-logo {
  border-radius: 12px;
  box-shadow: 0 2px 13px 0 rgba(55,115,227,0.12);
  transition: transform .22s;
}
.vs-logo:hover {
  transform: scale(1.07) rotate(-2deg);
}
.nav-desktop {
  display: flex;
  gap: 1rem;
}
.vs-nav-link {
  position: relative;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 7px;
  font-size: 1.08rem;
  margin: 0 2px;
  letter-spacing: .01em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(98deg,#22a7fa 10%, #1366d6 90%);
  box-shadow: 0 2px 8px 0 rgba(0,54,136,0.04);
  outline: none;
  border: none;
  transition: 
    background .18s cubic-bezier(.23,.7,.63,1.1), 
    box-shadow .22s, 
    transform .15s, 
    color .19s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  /* Custom attribute for staged animation */
  animation: nav-fadein .7s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes nav-fadein {
  to { opacity: 1; transform: translateY(0);}
}
.vs-nav-link:hover, .vs-nav-link:focus, .vs-nav-link.active {
  background: linear-gradient(90deg,#0b7fee 8%, #41d3ff 100%);
  color: #eaf4fd;
  transform: translateY(-1.5px) scale(1.05);
  box-shadow: 0 6px 20px 0 rgba(36,106,214,0.12);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.45rem;
  margin-left: .8rem;
  z-index:95;
  transition: color .19s;
}
.menu-btn .fa { font-size:1.8rem;}
.help-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.help-label {
  color: #eaf9ff;
  font-size: 0.96rem;
  opacity: .74;
}
.help-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: #003b7e;
  background: linear-gradient(90deg,#e6f6ff,#b2e4f5);
  padding: 3.5px 12px 3.5px 9px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: .01em;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  left:0; right:0;
  background: linear-gradient(90deg, #E0F7FF 4%, #D8EDFA 100%);
  top:76px;
  padding:2.5rem 0 2.5rem;
  box-shadow: 0 20px 56px -9px rgba(21,92,212,0.11);
  z-index: 65;
  align-items: center;
  gap:1.2rem;
  border-radius: 0 0 16px 16px;
  animation: navmobile-slide 0.45s cubic-bezier(.13,.87,.47,.97) 0s 1;
}
@keyframes navmobile-slide { 
  from { opacity:0; transform: translateY(-30px);}
  to { opacity:1; transform: translateY(0);}
}
.nav-mobile.open {
  display: flex !important;
}

/* Animate staged header nav links in */
.vs-nav-link.nav-shown {
  animation-delay: calc(var(--nav-anim-order, 0) * 0.10s + .25s);
}

/* HERO & CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-section .container {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.main-title {
  font-size: 2.7rem;
  font-weight: 700;
  background: linear-gradient(91deg,#18aadd,#1493e0 90%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 117%;
}
.main-desc {
  color: #3477b7;
  font-size: 1.30rem;
  margin-top: 0.8rem;
}
.vs-btn {
  display: inline-block;
  padding: 12px 31px;
  font-size: 1.09rem;
  font-weight: 600;
  border-radius: 9px;
  background: linear-gradient(90deg,#187ad9 0,#3cc0fb 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(20,60,112,.13);
  border: none;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(0,150,255,.06);
  cursor: pointer;
  transition: 
    box-shadow 0.14s, 
    transform 0.13s, 
    background .14s;
  margin-top: 2rem;
  text-decoration: none;
}
.vs-btn:hover {
  box-shadow: 0 9px 28px 0 rgba(19,79,189,0.13);
  background: linear-gradient(90deg,#11488d 10%,#41c8fd 90%);
  transform: translateY(-2px) scale(1.05);
}

/* SLIDER */
.image-slider-section {
  background: linear-gradient(107deg, #ecf5fe 62%, #e3e9f3 100%);
  padding: 1.3rem 0 2.3rem;
  margin-top: -1.6rem;
  margin-bottom: 2.1rem;
  border-radius: 22px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 34px 0 rgba(29, 124, 210, .11);
}
.vs-swiper {
  width: 100%;
  min-height: 295px;
  padding-bottom: 0.9rem;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-slider-img {
  border-radius: 15px;
  box-shadow: 0 14px 35px 0 rgba(27,114,212,0.12);
  width: 100%;
  max-width: 390px;
  max-height: 220px;
  object-fit: cover;
  transition: 
    transform .29s cubic-bezier(.26,.9,.37,1.1),
    box-shadow .19s;
  border: 1.5px solid #d9eefc;
}
.swiper-slide-active .img-slider-img {
  box-shadow: 0 28px 66px -9px rgba(15,72,192,.22);
  transform: scale(1.03) rotate(-1.2deg);
}
.swiper-pagination-bullet {
  background: #11a8eb;
  opacity: 0.45;
  transition: opacity .17s;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #32ccfd;
}

/* Service Cards 
.service-card {
  background: rgba(237,247,255,.98);
  border-radius: 17px;
  box-shadow: 0 4px 18px 0 rgba(29,110,210,0.14);
  padding: 2rem 1.3rem 1.8rem 1.3rem;
  transition: box-shadow 0.17s, transform 0.18s;
  border: 1.2px solid #bcdefa;
  min-height: 287px;
  margin: 0 auto;
}
.service-card:hover {
  box-shadow: 0 17px 36px 2px rgba(35,130,240,0.14);
  transform: translateY(-8px) scale(1.03);
  background: #fff;
}
.service-card h3 {
  color: #215ea7;
  font-size: 1.14rem;
  margin-bottom: 0.6rem;
}
.service-card p, .service-card ul {
  color: #23609f;
  font-size: 1.01rem;
}
*/
/* About img crop */
.rounded-lg {
  border-radius: 14px;
  border: 1.2px solid #e3f1ff;
  box-shadow: 0 3px 17px 0 rgba(16,85,170,.09);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg,#0d3f6c 40%,#2e8ee0 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow:0 6px 28px 0 rgba(16,80,162,0.10);
}
.cta-section h2 { color: #f6fbff;}
.cta-input {
  margin-top: 2rem;
  padding: 11px 15px;
  border-radius: 7px;
  border: none;
  font-size: 1.09rem;
  min-width: 264px;
  background: rgba(251,251,255,.94);
  box-shadow: 0 2px 12px 0 rgba(21,122,211,0.06);
  margin-bottom: 1rem;
  outline: 2px solid transparent;
  transition: outline .14s;
}
.cta-input:focus {
  outline: 2px solid #14abfd;
  background: #fff;
}
.cta-section .vs-btn {
  background: linear-gradient(90deg,#218ee0,#0c3b64);
  margin-top: 0.8rem;
}


/* FOOTER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem; /* Increased gap for better spacing */
}

.footer-column {
  width: 500px;  /* Fixed width to prevent auto-stretch */
  color: #1e293b;
  text-align: center;
}




.footer-column h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul {
  list-style: none;
  padding: 0;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul li {
  margin-bottom: 10px;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul li a {
    color: #1e293b; /* Dark blue-gray for better contrast */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.social-icon {
  margin-right: 10px;
  color: #1e293b;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00bfff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}


/* Responsive Fixes */
@media (max-width: 1100px) {
  .header-inner, .container { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 900px) {
  .header-inner, .container { max-width: 99vw;}
}
@media (max-width: 820px) {
  .nav-desktop { display:none !important;}
  .menu-btn { display:inline-block;}
  .nav-mobile { display: none;}
}
@media (max-width: 780px) {
  .header-inner .help-phone { display: none;}
  .header-inner { flex-wrap: wrap;}
  .image-slider-section {border-radius:13px;}
}
@media (max-width: 600px) {
  .main-title { font-size: 2rem;}
  .image-slider-section, .container, .vs-footer { border-radius: 0;}
  .service-card { padding: 1.2rem .7rem;}
  .vs-footer-links { gap: 1.3rem;}
}
/* === Modern Floating Header (Card Style) === */

.new-header {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 5px 32px -12px rgba(30,43,94,0.10), 0px 1.5px 7px 0 rgba(80,180,255,0.07);
  margin: 2.5rem auto 2.2rem;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-inner {
  padding: 0;
  max-width: 1250px;
}

.vs-header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* <--- changed from space-between */
  width: 100%;
}

.vs-logo {
  border-radius: 11px;
  box-shadow: 0 2px 7px 0 rgba(30,64,180,0.10);
  transition: transform .22s;
  width: 100px;
  height: auto;
  min-height: 90px; /* Ensure a minimum height for a square logo */
  object-fit: contain;
  display: block;
  max-width: 60%;
}

.vs-logo-link {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the logo horizontally */
  padding: 0; /* Remove extra padding */
  margin: 0; /* Remove extra margin */
}

.vs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* pushes nav to the right */
}
.vs-nav-link {
  color: #232a38;
  font-weight: 500;
  background: transparent;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1.09rem;
  text-decoration: none;
  margin: 0 2px;
  transition: 
    background 0.19s cubic-bezier(.27,.89,.30,1),
    color 0.19s, 
    box-shadow .16s, 
    transform .13s;
  box-shadow: none;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.vs-nav-link:not(.active):hover,
.vs-nav-link:not(.active):focus {
  background: #e9f6ff;
  color: #1366d6;
}
.vs-nav-link.active,
.vs-nav-link.selected {
  background: linear-gradient(90deg,#a6edff 12%,#e2f5ff 100%);
  color: #1366d6;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(30,180,255,0.10);
}
.vs-nav-link::after {
  display:none;
}

.vs-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 24px;
  min-width: 138px;
}
.help-label {
  color: #7ca9d1;
  font-size: 1.05rem;
  line-height: 1.05;
  margin-bottom: 2.5px;
  padding-left: 7px;
}
.help-num {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,#6ef3ff 0,#63b8fa 100%);
  padding: 4.5px 18px 4px 16px;
  border-radius: 18px;
  display: inline-block;
  letter-spacing: .02em;
  box-shadow: 0 4px 13px rgba(62,187,255,0.13);
  color: #004f8d;
}

.menu-btn {
  background: none;
  border: none;
  color: #187ad9;
  font-size: 1.5rem;
  display: none;
  margin-left: 1.5rem;
}
.menu-btn .fa {font-size: 2.1rem;}

/* Mobile Nav */
.new-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 99;
  position: absolute;
  left: 0; right: 0;
  background: #fff;
  top: 92px;
  box-shadow: 0 13px 32px -7px rgba(15,65,134,0.13);
  border-radius: 0 0 21px 21px;
  padding: 2.4rem 0 2.3rem;
  align-items: center;
  animation: navmobile-card 0.37s cubic-bezier(.18,.79,.47,.99) 0s 1;
}
@keyframes navmobile-card { 
  from { opacity:0; transform: translateY(-15px);}
  to { opacity:1; transform: translateY(0);}
}
.new-nav-mobile.open {display: flex!important;}

@media (max-width: 1180px) {
  .header-inner {max-width:99vw;}
}
@media (max-width: 980px) {
  .vs-nav {display: none;}
  .menu-btn {display:inline;}
  .vs-header-right {margin-left: 10px;}
}
@media (max-width: 700px) {
  .vs-header-row {padding-right: 0.6rem;}
}

/* === Modern Footer === */
.new-footer {
  background: #fff;
  border-radius: 19px 19px 23px 23px;
  box-shadow: 0 -4px 31px 0 rgba(41,97,174,0.08), 0px 1.5px 7px 0 rgba(62,180,255,0.07);
  margin: 3rem auto 0 auto;
  padding: 0.2rem 0 0.9rem 0;
}
.new-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.8rem 0 1.3rem 0;
}
.new-footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.new-footer-row p {
  color: #127ad9;
  font-size: 1.13rem;
  font-weight: 500;
}
.vs-footer-links {
  display: flex;
  gap: 2.1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vs-footer-links a {
  color: #1670ae;
  font-size: 1.09rem;
  text-decoration: none;
  background: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .15s, color .11s;
}
.vs-footer-links a:hover {
  background: #d6f3ff;
  color: #12497c;
}

@media (max-width: 700px) {
  .new-footer-container {padding: 1.3rem 0 0.95rem 0;}
  .new-footer-row {gap:12px;}
  .vs-footer-links {gap:0.9rem;}
}
/* Hero Slider */

.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #ffffff;
  max-width: 600px;
  margin-bottom:50px;
}



.slide-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  border-radius: 10px;
  padding: 1rem;
}



/* Responsive fix for mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
  }

  .slide-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
    width: 90%;
    max-width: 100%;
    text-align: top;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    margin-bottom:20px!important;
    object-fit: cover;
  }

  .slide-content h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: none !important; 
    
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #2596dd;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 50px;
  }

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



/* CTA Button */

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #2596dd;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom:100px;
}


.site-footer {
  position: relative;
  z-index: 1;
  padding: 120px 20px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  color: #1e293b;
  overflow: hidden;
  margin-top: -100px; /* Pull the footer up to overlap with Market Entry */
}




.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 20px;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column h3 {
  margin-bottom: 15px;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul {
  list-style: none;
  padding: 0;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul li {
  margin-bottom: 10px;
    color: #1e293b; /* Dark blue-gray for better contrast */
}

.footer-column ul li a {
   color: #1e293b; /* Dark blue-gray for better contrast */
  text-decoration: none;
}

.social-icon {
  margin-right: 10px;
  color: #1e293b;
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #1e293b; /* Dark blue-gray for better contrast */
}

/* Remove unnecessary spacing between navbar and hero section */
header,
.navbar,
.hero-slider,
.hero-swiper {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-slider,
.hero-swiper {
  margin-top: 0;
  padding-top: 0;
}

/* Optional: Remove default margin from body */
body {
  margin: 0;
  padding: 0;
}

/* Fix awkward white space below header */
.vs-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optional: Reset margins on body if needed */
body {
  margin: 0;
  padding: 0;
}



/* Remove padding/margin from header if present */
.vs-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optional: Make sure header is flush to top */
.new-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optional: Remove any box-shadow or border-top if it’s part of the design */

.vs-header-row {
  display: flex;
  align-items: center; /* Ensures vertical centering */
  justify-content: space-between;
  width: 100%;
  height: 80px; /* Optional: Set consistent height */
}

.vs-logo-link img {
  max-height: 50px; /* Adjust size so it aligns well */
  display: block;
}

.vs-nav {
  display: flex;
  align-items: center; /* Vertically align nav links */
  gap: 2rem;
  margin-left: auto;
}

.vs-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  background-color: #1366d6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
  background-color: #0f4da0;
  transform: scale(1.05);
}

/* === About Section Custom Styling === */
.about-section {
  background: linear-gradient(135deg, #fafdff 0%, #eaf4fd 100%);
  padding: 5rem 1.5rem;
  border-top: 1px solid #dbeafe;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 16px;
  border: 2px solid #e0f2fe;
  box-shadow: 0 12px 28px rgba(51, 130, 237, 0.15);
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.025);
}

/* partner */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eaf4fd, #dbe9f7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #1366d6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.2s linear infinite;
}

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

.partner-section {
  background: linear-gradient(135deg, #e6f4ff 0%, #f1f9ff 100%);
  padding: 5rem 1.5rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 28px rgba(38, 120, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(25, 96, 200, 0.12);
}

.partner-card img {
  max-height: 100px;
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
}


.partner-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.partner-card p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: auto;
}

.partner-card .read-more-btn {
  margin-top: 1.5rem;
  align-self: center;
  display: inline-block;
  padding: 10px 20px;
  background-color: #2596dd;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.partner-card .read-more-btn:hover {
  background-color: #1d4ed8;
}

.overlap-section {
  position: relative;
  margin-top: -100px; /* reduces gap from top */
  z-index: 10;
}
.section-spacing {
  margin-top: 1rem;
  margin-bottom: 3rem;
}



.container-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.box {
  flex: 1 1 40%;
  min-width: 280px;
  max-width: 420px;
  background: linear-gradient(145deg, #d4e8ff, #f0f8ff);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.box h3 {
  font-size: 1.4rem;
  color: #003366;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.box h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #0077cc;
  margin-top: 6px;
  border-radius: 2px;
}

.box p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animation Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .container-box {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
    margin-bottom: 20px;
  }
}

.about-section-modern {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #fafdff 0%, #eaf4fd 100%);
  border-top: 1px solid #dbeafe;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-img-container {
  flex: 1 1 45%;
}

.about-img-modern {
  border-radius: 16px;
  border: 2px solid #e0f2fe;
  box-shadow: 0 12px 28px rgba(51, 130, 237, 0.15);
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.about-img-modern:hover {
  transform: scale(1.025);
}

.about-content {
  flex: 1 1 50%;
}

.about-modern-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.2rem;
}

.about-modern-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-img-container,
  .about-content {
    flex: 1 1 100%;
  }
}

/* === Why Clean Section Styling === */

.why-clean-section {
  background: linear-gradient(to right, #7370c7, #4e90a7, #60b5bf);
  padding: 3rem 1.5rem 4rem; /* Reduced vertical padding */
  color: #fff;
  width: 100%;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-header h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e0faff;
  margin-bottom: 2rem;
}

.why-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  position: relative;
}

.why-col {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}

.why-col h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.why-col p {
  font-size: 1.05rem;
  color: #f0f9ff;
  line-height: 1.6;
  margin: 0;
}

/* Divider line fixed */
.why-divider {
  width: 2px;
  background-color: #ffffff;
  height: auto;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .why-clean-section {
    padding: 2.5rem 1rem 3rem !important;
    overflow-x: hidden !important;
  }

  .why-inner {
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .why-columns {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .why-col {
    width: 100% !important;
    max-width: 600px !important;
    padding: 0 1rem !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .why-divider {
    display: none !important;
  }

  .why-header h2 {
    font-size: 2rem !important;
  }

  .why-header h3 {
    font-size: 1rem !important;
    padding: 0 1rem !important;
  }

  .why-col h4 {
    font-size: 1.3rem !important;
  }

  .why-col p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    padding: 0 0.5rem !important;
  }
}




/* === Services Section Styling === */
.services-section {
  padding: 5rem 1.5rem;
  background: #f0f4ff;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title and Description */
.services-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 1rem;
}

.services-desc {
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* === Flex Grid for Service Cards === */
.services-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Card Styling */
.service-box {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  box-sizing: border-box;
}

.service-box:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #4f46e5;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.5;
}

/* === Responsive: 1 Column on Small Screens === */
@media (max-width: 768px) {
  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




/* Market Entry Section */

.market-entry-section {
  position: relative;
  margin-bottom: 0; /* Remove the negative margin to control overlap via footer */
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 4rem 1.5rem 0; /* Keep the padding for content spacing */
}


.market-entry-box {
  background: linear-gradient(to left, #6664ae, #4e90a7, #60b5bf);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 900px;
  box-shadow: 0 12px 28px rgba(51, 130, 237, 0.07);
}

.market-entry-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 2rem;
}

.market-entry-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #0077cc;
  margin: 10px auto 0;
  border-radius: 2px;
}

.market-entry-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.market-entry-left {
  flex: 1 1 48%;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

.market-entry-right {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: #ffffff;
}

.market-entry-point {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.market-entry-point i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 2px;
}



.footer-glass-bg {
  position: absolute; /* Change to absolute to avoid taking up space */
  top: 0;
  left: 0;
  right: 0;
  height: 180px; /* Keep the height but it won't create a gap now */
  background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
  z-index: 0;
}


/* HEADER */
.new-header {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 5px 32px -12px rgba(30,43,94,0.10), 0px 1.5px 7px 0 rgba(80,180,255,0.07);
  margin: 2.5rem auto 2.2rem;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-inner {
  padding: 0;
  max-width: 1250px;
  margin: 0 auto;
}

.vs-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ensure logo and menu button are on opposite ends */
  width: 100%;
  padding: 0.5rem 1rem; /* Add some padding for better spacing */
}

.vs-logo-link {
  display: flex;
  align-items: center;
}

.vs-logo {
  border-radius: 11px;
  box-shadow: 0 2px 7px 0 rgba(30,64,180,0.0);
  transition: transform .22s;
  height: 48px;
  object-fit: contain;
    width: 150px; /* Adjust this value to increase/decrease the logo size */
    height: auto; /* Maintains aspect ratio */
}


.vs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* Pushes nav to the right on larger screens */
}

.vs-nav-link {
  color: #232a38;
  font-weight: 500;
  background: transparent;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1.09rem;
  text-decoration: none;
  margin: 0 2px;
  transition: 
    background 0.19s cubic-bezier(.27,.89,.30,1),
    color 0.19s, 
    box-shadow .16s, 
    transform .13s;
  box-shadow: none;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.vs-nav-link:not(.active):hover,
.vs-nav-link:not(.active):focus {
  background: #e9f6ff;
  color: #1366d6;
}

.vs-nav-link.active,
.vs-nav-link.selected {
  background: linear-gradient(90deg,#a6edff 12%,#e2f5ff 100%);
  color: #1366d6;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(30,180,255,0.10);
}

.vs-nav-link::after {
  display: none;
}

/* Hamburger Menu */
.menu-btn {
  background: none;
  border: none;
  color: #187ad9;
  font-size: 1.5rem;
  display: none; /* Hidden by default on larger screens */
  margin-left: auto; /* Pushes the button to the right */
  cursor: pointer;
}

.menu-btn .fa {
  font-size: 2.1rem;
}

/* Mobile Nav */
.new-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 99;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  top: 100%; /* Position directly below the header */
  box-shadow: 0 13px 32px -7px rgba(15,65,134,0.13);
  border-radius: 0 0 21px 21px;
  padding: 2.4rem 0 2.3rem;
  align-items: center;
  animation: navmobile-card 0.37s cubic-bezier(.18,.79,.47,.99) 0s 1;
}

@keyframes navmobile-card { 
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.new-nav-mobile.open {
  display: flex !important;
}

/* Responsive Adjustments */
@media (max-width: 1180px) {
  .header-inner {
    max-width: 99vw;
  }
}

@media (max-width: 980px) {
  .vs-nav {
    display: none; /* Hide desktop nav on smaller screens */
  }
  .menu-btn {
    display: block; /* Show hamburger menu on smaller screens */
  }
}

@media (max-width: 700px) {
  .vs-header-row {
    padding: 0.5rem; /* Reduce padding on smaller screens */
  }
  .vs-logo {
    height: 40px; /* Slightly smaller logo on mobile */
  }
  .menu-btn {
    padding: 0; /* Remove extra padding for better alignment */
  }
}


/* === Partner slider Styles === */
.partner-slider {
  width: 100%;
  height: 500px;
  position: relative;
  margin-bottom: 1rem;
}

.partner-slider .swiper-slide {
  position: relative;
  text-align: center;
  background: #000;
  color: white;
  overflow: hidden;
}

.partner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
}

.slider-caption h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.slider-caption p {
  font-size: 1.2rem;
}

/* Adjust navigation styles */
.swiper-button-next, .swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: white;
}


.partner-logo {
  height: auto;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.partner-logo:hover {
  filter: grayscale(0%);
}
.logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}




/* === Custom Styles for partners single page === */
/* === OpsMotor Partner Detail Styling === */

.opsmotor-header-logo {
  height: auto;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.opsmotor-header-logo:hover {
  filter: grayscale(0%);
}

.opsmotor-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-top: 1rem;
}

.opsmotor-title-underline {
  width: 60px;
  height: 4px;
  background-color: #1e3a8a;
  margin: 0.5rem auto 2rem auto;
  border-radius: 2px;
}

/* Optional: Tighten mobile spacing */
@media screen and (max-width: 768px) {
  .opsmotor-title {
    font-size: 2rem;
  }

  .opsmotor-title-underline {
    width: 40px;
    height: 3px;
  }
}

@media screen and (max-width: 768px) {
  .opsmotor-header-logo {
    max-height: 50px !important;
  }
}


/* === Visit Website Section Styles === */

.visit-website-section {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.visit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.visit-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.visit-link:hover {
  color: #1d4ed8;
}

.visit-icon {
  font-size: 1.2rem;
  color: inherit;
}

/* === CleanApp Section Styles === */
.cnapp-section {
  margin-top: 40rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cnapp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.cnapp-box {
  flex: 1 1 250px;
  max-width: 315px;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.cnapp-box:hover {
  transform: translateY(-5px);
}

.cnapp-icon {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.cnapp-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.cnapp-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* === Website Button Styles === */


.website-button {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background-color: #1366d6;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  white-space: nowrap;
  user-select: none;
  touch-action: none;
}

/* Mobile interaction styles */
@media (max-width: 768px) {
  .website-button.moved {
    left: auto;
    right: 24px;
    background-color: #0d47a1;
    transform: scale(1.1);
  }
}

.website-button.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}



/* === Latest News Section Styles === */
/* === Latest News Section - Updated for Brand Consistency === */

.news-section {
  background: linear-gradient(135deg, #eaf4fd 0%, #dbe9f7 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 80, 170, 0.07);
  border-radius: 24px;
  padding: 60px;
  gap: 60px;
}

.news-left {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.news-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 28px;
  line-height: 1.6;
}

.news-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #1366d6, #3cc0fa);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0, 90, 180, 0.12);
  transition: background 0.3s ease, transform 0.2s ease;
}

.news-button:hover {
  background: linear-gradient(90deg, #0f4da0, #32ccfd);
  transform: translateY(-2px);
}

.news-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  background: #f0f4ff;
  padding: 20px 24px;
  border-radius: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 80, 170, 0.06);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 80, 170, 0.08);
}

.news-meta {
  font-size: 0.75rem;
  color: #1366d6;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.news-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}


/* uniqtx page */

.uniqtx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;   /* Reduced from pt-12 (which is ~3rem = 48px) */
  padding-bottom: 20px; /* Reduced from pb-4 (1rem = 16px) */
}


.logo-text-wrapper {
  display: flex;
  align-items: center; /* Vertically centers logo and text */
  justify-content: center;
  gap: 0px; /* Reduced from 1px to 0px to eliminate any gap */
  flex-wrap: nowrap; /* Prevent wrapping to ensure they stay side by side */
}

.uniqtx-header-logo {
  height: 100px; /* Reduced from 150px to make the logo smaller and align better */
  max-height: 100px; /* Adjusted accordingly */
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.uniqtx-header-logo:hover {
  filter: grayscale(100%);
}

.uniqtx-logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1;
}

/* Why Uniqtx Section */

.uniqtx-why-section {
  background: linear-gradient(to right, #7370c7, #4e90a7, #60b5bf);
  padding: 3rem 1.5rem 4rem; /* Reduced vertical padding */
  color: #fff;
  width: 100%;
}

.uniqtx-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.uniqtx-why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.uniqtx-why-header h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e0faff;
  margin-bottom: 2rem;
}

.uniqtx-why-columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.uniqtx-why-col {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}

.uniqtx-why-col h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.uniqtx-why-col p {
  font-size: 1.05rem;
  color: #f0f9ff;
  line-height: 1.6;
  margin: 0;
}

.uniqtx-why-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ffffff;
  opacity: 0.9;
  transform: translateX(-50%);
}


@media (max-width: 768px) {
  .uniqtx-why-section {
    padding: 2.5rem 1rem 3rem !important;
    overflow-x: hidden !important;
  }

  .uniqtx-why-inner {
    margin: 0 auto !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .uniqtx-why-columns {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .uniqtx-why-col {
    width: 100% !important;
    max-width: 600px !important;
    padding: 0 1rem !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .uniqtx-why-divider {
    display: none !important;
  }

  .uniqtx-why-header h2 {
    font-size: 2rem !important;
    text-align: center !important;
  }

  .uniqtx-why-header h3 {
    font-size: 1rem !important;
    padding: 0 1rem !important;
    text-align: center !important;
  }

  .uniqtx-why-col h4 {
    font-size: 1.3rem !important;
  }

  .uniqtx-why-col p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    padding: 0 0.5rem !important;
  }
}





/*  White Carrot */



.whitecarrot-header-logo {
  height: auto;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.opsmotor-header-logo:hover {
  filter: grayscale(0%);
}
@media screen and (max-width: 768px) {
  .whitecarrot-header-logo {
    max-height: 50px !important;
  }
}



/* FutureMug Section */

.futuremug-header-logo {
  height: 100px; /* Reduced from 150px to make the logo smaller and align better */
  max-height: 100px; /* Adjusted accordingly */
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.futuremug-header-logo:hover {
  filter: grayscale(100%);
}

.futuremug-logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .futuremug-header-logo {
    height: 70px !important;
    max-height: 70px !important;
  }

  .futuremug-logo-text {
    font-size: 1.8rem !important;
  }
}


.futuremug-section {
  background: linear-gradient(135deg, #eaf4fd 0%, #dbe9f7 100%);
  padding: 60px 16px;
  display: flex;
  justify-content: center;
}

.futuremug-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 80, 170, 0.07);
  border-radius: 20px;
  padding: 40px;
  gap: 40px;
}

.futuremug-left {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.futuremug-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.2;
  margin: 0;
}

.futuremug-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.futuremug-card {
  background: #f0f4ff;
  padding: 16px 20px;
  border-radius: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.futuremug-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 80, 170, 0.08);
}

.futuremug-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.futuremug-description {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  overflow: hidden;
  max-height: 1.6em; /* 1 line */
  transition: max-height 0.4s ease-in-out;
}

.futuremug-card.expanded .futuremug-description {
  max-height: 1000px;
}

.ai-gif {
  width: 80px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.futuremug-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* isha Section */

.isha-header-logo {
  height: 150px; /* Reduced from 150px to make the logo smaller and align better */
  max-height: 150px; /* Adjusted accordingly */
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.isha-header-logo:hover {
  filter: grayscale(100%);
}

.isha-logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .isha-header-logo {
    height: 70px !important;
    max-height: 70px !important;
  }

  .isha-logo-text {
    font-size: 1.8rem !important;
  }
}

/* === Breadcrumb Styles === */
.slider-breadcrumb {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #003b7e;

}

.slider-breadcrumb a {
  text-decoration: none;
  color: #000000;
}

.slider-breadcrumb a:hover {
  text-decoration: underline;
}

.partner-slider {
  position: relative; /* ensure breadcrumb is placed relative to slider */
}

.breadcrumb {
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #003b7e;

}

.breadcrumb a {
  text-decoration: none;
  color: #000000;
}



/* price Section */

/* Pricing Section Base */
.pricing-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.pricing-hero .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Center Heading */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.pricing-header p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: auto;
  color: #444;
}

/* Pricing Cards Row */
/* Existing Styles */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px 30px;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  color: #222;
  min-width: 280px;
  opacity: 0;                   /* Hide initially */
  transform: translateY(100px); /* Stack them visually */
  transition: all 0.6s ease;
  
}

/* ✨ Hover effect */
.pricing-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Animation trigger when visible */
.pricing-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Wrapper */
.feature-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto;
  overflow: hidden;
}

/* Slider Container */
.feature-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Each Feature Card */
.feature-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* Wrapper to constrain sliding cards */
.feature-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

/* Feature Card - fits to content width */
.feature-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 25px 30px;
  width: auto;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
}

/* ✨ Hover effect */
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

.feature-card ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .slider-btn.left,
  .slider-btn.right {
    display: none;
  }
}

/* Mobile Adjustments */
/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .feature-slider {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-card {
    max-width: 90%;
    width: 100%;
  }




}
