        @font-face {
  font-family: 'segoeu';
  src: url('../fonts/segoeuithibd.ttf') format('opentype');
  font-style: normal;
}
    
     * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  body {
    overflow-x: hidden;
  }
  
.offer-strip {
  width: 100%;
  background: #020817;
  color: #fff;
  overflow: hidden; /* important */
  position: sticky;
  top: 0;
  z-index: 99999;
}

/* TRACK */
.offer-track {
  display: flex;
  width: max-content;
  animation: scrollOffer 15s linear infinite;
}

/* TEXT */
.offer-track span {
  white-space: nowrap;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ANIMATION */
@keyframes scrollOffer {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

  /* HERO SECTION */
  .hero {
    width: 100%;
    min-height: auto;
    background: url('../images/Blog Image Banner.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
        padding: 0rem 2vw 0rem 2vw;
  }

  /* HEADER */
  .header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .logo img {
    width: 10vw;
    max-width: 120px;
    margin-left: 4.5rem;
  }

  /* CONTENT */
  .content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
  }

  /* LEFT TEXT */
  .left {
    width: 55%;
    color: #fff;
  }
  
  /* SECTION */
.section{
  width:100%;
  min-height:auto;
  background:#f3f4f600;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:5vh 5vw 0vh 5vw;
}

/* CONTAINER */
.container{
  max-width:90vw;
  width:100%;
}

/* BADGE */
.badge{
  display:inline-block;
  font-size:0.9rem;
  padding:0.6em 1.2em;
  border-radius:2em;
  border:0.1em solid #f59e0b;
  color:#f59e0b;
  margin-bottom:2vh;
}

/* TITLE */
.title{
  font-size:2rem;
  line-height:1.2;
  font-weight:800;
  color:#111827;
  margin-bottom:2vh;
}

.title span{
  color:#f59e0b;
}

/* TEXT */
.text{
  font-size:0.9rem;
  color:#6b7280;
  line-height:1.6;
  max-width:90%;
  margin-bottom:3vh;
}

/* BUTTONS */
.actions{
     display: flex;
    gap: 1vw;
    /* margin-bottom: 4vh; */
}

.btn-primary{
  background: #f59e0b;
  color:#000;
  padding:1em 1.5em;
  border-radius:0.6em;
  font-size:1rem;
  border:none;
  cursor:pointer;
}

.btn-secondary{
  background:transparent;
  border:0.1em solid #cbd5e1;
  padding:1em 1.5em;
  border-radius:0.6em;
  font-size:1rem;
  cursor:pointer;
}

/* CARDS */
.grid{
  display:flex;
  gap:1vw;
  flex-wrap:wrap;
}

.box{
  flex:1;
  min-width:20%;
  background:#fff;
  padding:1.5em;
  border-radius:0.8em;
  border:0.1em solid #e5e7eb;
}

.box h4{
  font-size:1.1rem;
  margin-bottom:0.5em;
      color: #000;
}

.box p{
  font-size:0.9rem;
  color:#6b7280;
}

  /* RIGHT IMAGE */
  .right {
    width: 45%;
    display: flex;
    justify-content: center;
  }

  .right img {
width: 100%;

  }
  
  .ux9k-cta-section{
          display: flex;
          flex-direction: column;
    align-items: center;
    justify-content: center;
        height: 18vh;
        padding: 0px 4px;
  }
  
.section1{
    width: 100%;
    background: #ffffff;
    padding: 6vh 2vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section1 h2{
  font-size:2rem;
  margin-bottom:4vh;
  color:#333;
}

/* Desktop logos */
.logos{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1vw;
  flex-wrap:wrap;
}

.logos img{
  width:10vw;
  max-width:120px;
}

/* Mobile slider */
.slider{
  position:relative;
  width:100%;
  overflow:hidden;
}

.slide-track{
  display:flex;
    justify-content:center;
   align-items:center;
}

.slide{
 flex: 0 0 calc(80% / 5);
  display:flex;
  justify-content:center;
   align-items:center;
}

.slide img{
  width:10vw;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
      background: transparent;
  color:#000;
  border:none;
  padding:1em;
  cursor:pointer;
  opacity:0.7;
      font-size: 25px;
       z-index:2;
}

.arrow.left{     display: none; }
.arrow.right{display: none; }


/* ===== SECTION WRAPPER ===== */
.cs-section-wrapper {
  width: 100%;
    padding: 6vh 5vw 1vh 5vw;
  background: #ffffff;
  text-align: center;
}

/* ===== HEADINGS ===== */
.cs-main-heading {
 font-size: 2rem;
    line-height: 1.2em;
    color: #222;
    margin-bottom: 1.5vh;
}

.cs-sub-heading {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 5vh;
}

/* ===== GRID ===== */
.cs-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
}

/* ===== CARD ===== */
.cs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== IMAGE ===== */
.cs-card-image {
  width: 8vw;
  min-width: 80px;
  margin-bottom: 2vh;
}

/* ===== CARD HEADING ===== */
.cs-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2vh;
  color: #222;
}

/* ===== POINT LIST ===== */
.cs-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.cs-point-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.95rem;
  margin-bottom: 1vh;
  color: #444;
}

/* ===== ICON IMAGE ===== */
.cs-icon-img {
  width: 1.2rem;
  height: 1.2rem;
}

/* SECTION */
.tz9x-testimonial-sec {
  width: 100%;
  padding: 5vh 2vw;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
    z-index: 1 !important; 
}

/* WRAPPER */
.tz9x-wrapper {
  max-width: 90vw;
  width: 100%;
  position: relative;
  overflow: hidden;
    z-index: 1 !important; 
}

/* SLIDER */
.tz9x-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

/* SLIDE */
.tz9x-slide {
   min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  display: flex;
  gap: 1vw;
  align-items: center;
}

/* LEFT */
.tz9x-left {
  width: 30%;
  text-align: center;
}

.tz9x-left img {
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5vw solid #e3e8ef;
}

/* NAME */
.tz9x-name {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.tz9x-role {
  font-size: 0.9rem;
  color: #777;
}

/* RIGHT */
.tz9x-right {
  width: 70%;
}

.tz9x-quote {
  font-size: 5rem;
  color: #3b82f6;
  line-height: 1;
}

.tz9x-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.tz9x-highlight {
  background: #facc15;
  padding: 0.2em 0.4em;
  font-weight: 600;
}



/* ARROWS */
.tz9x-arrow {
     position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
background: transparent;
    color: #000;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  z-index: 9999 !important;   /* 🔥 THIS FIXES IT */
  pointer-events: auto;

}

.tz9x-inner {
  width: 75%;
  margin: 0 auto;
  display: flex;
  gap: 2vw;
  align-items: center;
    position: relative;
  z-index: 1;
}

.tz9x-slide {
  position: relative;
  z-index: 1;
}

.tz9x-left-arrow {
  left: 1vw;
}

.tz9x-right-arrow {
  right: 1vw;
}

/* SECTION */
.icbc-wrap-x9{
    background:#020817;
  width:100%;
  padding:10vh 6vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:5vw;
}

/* LEFT */
.icbc-left-x9{
  width:52%;
}

.icbc-tag-x9{
  color:#FFD84D;
  font-size:0.85rem;
  letter-spacing:0.25em;
  margin-bottom:2.5vh;
  font-weight:600;
}

.icbc-heading-x9{
  color:#E5E7EB;
  font-size:3.2rem;
  line-height:1.15;
  font-weight:700;
  margin-bottom:3vh;
}

.icbc-text-x9{
  color:#AEB6C3;
  font-size:1.1rem;
  line-height:1.7;
  max-width:90%;
}

/* RIGHT GRID */
.icbc-grid-x9{
  width:48%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5vh 2vw;
}

/* CARD */
.icbc-card-x9{
  background:#0B1224;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:1.2rem;
  padding:2.8vh 2vw;
  color:#E5E7EB;
  font-size:1.05rem;
  line-height:1.5;
  min-height:10vh;
  display:flex;
  align-items:center;
  transition:0.25s ease;
}

.icbc-card-x9:hover{
  transform:translateY(-0.4vh);
  background:#111a33;
}

/* SECTION */
.xq-cta-section {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(
      rgba(30, 90, 160, 0.85),
      rgba(30, 90, 160, 0.85)
    ),
    url('https://images.unsplash.com/photo-1557683316-973673baf926')
    center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5vh 5vw;
}

/* CONTENT */
.xq-cta-content {
  max-width: 60rem;
  color: #ffffff;
}

/* ICON */
.xq-cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 0.15rem solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* HEADING */
.xq-cta-heading {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* TEXT */
.xq-cta-text {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* BUTTON */
.xq-cta-btn {
  display: inline-block;
  padding: 0.9em 2.5em;
  font-size: 1rem;
  border-radius: 3rem;
  background: #f59e0b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.xq-cta-btn:hover {
  transform: translateY(-0.2rem);
}

.btn-primary {
  padding: 1em 2em;
  font-size: 1rem;
  background: #f59e0b;
  color: white;
  border: none;
  cursor: pointer;
}

/* Modal background */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
   z-index: 99999;
}

/* Modal box */
.modal-content {
  background: #eef3f1;
  width: 70vw;
  max-width: 60rem;
  padding: 3vh 3vw;
  border-radius: 0.5rem;
  position: relative;
  z-index: 100000; 
}

body.modal-open {
  overflow: hidden;
}


/* Close button */
.close {
  position: absolute;
  top: 1vh;
  right: 1vw;
  font-size: 2rem;
  cursor: pointer;
}

/* Form layout */
.form {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

/* Row */
.row {
  display: flex;
  gap: 2vw;
}

/* Fields */
.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field.full {
  width: 100%;
}

/* Labels */
label {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}

/* Inputs */
input {
  padding: 1em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  width: 100%;
}

/* Submit button */
.submit-btn {
  align-self: center;
  padding: 1em 3em;
  background: #f59e0b;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 2vh;
}
  
  @media(max-width:1024px){
  .title{
    font-size:2.5rem;
  }

  .text{
    max-width:80%;
  }
  
  .cs-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }

  .cs-card-image {
    width: 12vw;
  }
  
  .icbc-heading-x9{
    font-size:2.6rem;
  }
}

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
      .hero {
    padding: 0rem 2vw 2rem 2vw;
}
      
    .content {
      flex-direction: column;
      text-align: center;
    }

    .left, .right {
      width: 100%;
    }
    
     .title{
    font-size:2rem;
  }

  .text{
    max-width:100%;
  }

  .grid{
    flex-direction:column;
  }

  .box{
    min-width:100%;
  }

    .logo img {
      width: 25vw;
    }

    .right img {
              width: 100%;

    }

    .buttons {
      justify-content: center;
    }
    
    .logos{ display:none; }
  .slider{ display:block; }
  
    .slide{
    flex: 0 0 100%; /* 1 logo */
  }
  
  .slide img{
    width:50vw;
    max-width:160px;
  }
  .section1 h2{
    font-size:1.8rem;
  }
  
   .tz9x-slide {
    flex-direction: column;
    align-items: center;
        justify-content: center;
    text-align: center;
  }

  .tz9x-left,
  .tz9x-right {
    width: 100%;
  }

  .tz9x-left img {
    width: 25vw;
    height: 25vw;
  }

  .tz9x-text {
    font-size: 1rem;
        margin-top: 10px;
        text-align: justify;
  }

  .tz9x-quote {
    font-size: 3rem;
  }

  .tz9x-arrow {
    width: 2.5rem;
    height: 2.5rem;
    display: none;
  }
  
   .tz9x-inner {
    width: 95%;
    flex-direction: column;
    text-align: center;
  }
  
  .tz9x-testimonial-sec {
    width: 100%;
    padding: 0vh 2vw 5vh 2vw;
}
  
  .icbc-wrap-x9{
    flex-direction:column;
    align-items:flex-start;
  }

  .icbc-left-x9,
  .icbc-grid-x9{
    width:100%;
  }

  .icbc-grid-x9{
    grid-template-columns:1fr;
  }

  .icbc-heading-x9{
    font-size:2.2rem;
  }

  .icbc-text-x9{
    max-width:100%;
  }
  
   .xq-cta-section {
    min-height: 70vh;
  }

  .xq-cta-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .xq-cta-text {
    padding: 0 5%;
  }
  
  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    width: 60%;
    /* padding: 23px; */
    /* margin-bottom: 4vh; */
}

 .modal-content {
    width: 90vw;
    padding: 4vh 5vw;
  }

  .row {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
  
  .arrow.right {
      display: block;
    right: -40%;
}

.arrow.left {
    display: block;
    left: -40%;
}

.cs-section-wrapper {
    padding: 1vh 5vw 1vh 5vw;
}

.logo-sec-wrap {
    padding: 8vh 5vw !important;
}
    
  }
  
  @media (max-width: 600px) {
  .cs-grid-container {
    grid-template-columns: 1fr;
  }

  .cs-main-heading {
    font-size: 1.6rem;
  }

  .cs-sub-heading {
    font-size: 0.95rem;
  }

  .cs-card-image {
    width: 20vw;
  }
}
  
  @media(max-width:480px){
  .section{
    padding:4vh 6vw;
  }

  .title{
    font-size:1.8rem;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }
  
 .icbc-heading-x9{
    font-size:1.8rem;
  }

  .icbc-text-x9{
    font-size:1rem;
  }

  .icbc-card-x9{
    font-size:1rem;
    padding:2.2vh 4vw;
  }
  
}