 :root{
      --msz-nav-h: 72px; /* JS updates this to real navbar height */
      --msz-black:#0b0b0b;
      --msz-red:#c00000;

      --font-ui: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    }
    body{
      background:#f5f6f8;
    }

   /* Navbar */
.navbar .nav-link {
  color: #141414;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 500;

  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #c50000;
}

.btn-dangerr {
   background: #C00000;
  border: 1px solid #C00000;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 9px 45px;
  border-radius: 28px;
  
}

.btn-danger:hover {
  background-color: #a00000;
}


/* Navbar */
.navbar .nav-link {
  color: #141414;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Active and hover underline effect */
.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -5px; /* distance below text */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c50000; /* underline color */
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Optional: animation on hover */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c50000;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

/* Active color and underline */
.navbar .nav-link.active {
  color: #c50000;
}

.navbar .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-color: #000;
  padding-top: 100px; /* to prevent navbar overlap */
}

.hero-text h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
}

.hero-text h4 {
  color: #ccc;
}

.hero-text p {
  color: #aaa;
}

.hero-img {
  max-width: 90%;
  transition: all 0.5s ease-in-out;
}

.hero-img:hover {
  transform: scale(1.05);
}

/* Buttons */
.btn-light {
  background: #FFF;
 box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  color: black;
  padding: 10px 44px;
  border-radius: 28px;
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.btn-danger {
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    height: auto;
    padding: 120px 20px 60px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h4 {
    font-size: 1.2rem;
  }

  .hero-img {
    max-width: 100%;
    margin-top: 40px;
  }
}

.client-btn{
  border-radius: 100px;
background: #C00000;
  display: flex;
padding: 10px 44px;
justify-content: center;
align-items: center;
gap: 8px;
flex: 1 0 0;
align-self: stretch;
}

.msz-eyebrow{

  color: #FFF;

text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
font-family: Poppins;
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 59px; /* 147.5% */
}
.msz-title1{
  color: #fff!important;
font-family: Poppins;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 39.2px */
}
.fstt-italic{

  color: #FFF!important;
text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 1.7; /* 19.2px */
}

.btn-dangerr {
  background: #C00000;
  border: 1px solid #C00000;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 9px 44px;
  border-radius: 28px;
  transition: all 0.3s ease;
}

.btn-dangerr:hover {
  background: #a00000;
}

.custom-light {
  background: #fff;
  color: #000;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  padding: 9px 45px;
  border-radius: 28px;
  transition: all 0.3s ease;
}

.custom-light:hover {
  background: #f0f0f0;
}
.btn-dangerr {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 576px) {
  .d-flex.gap-3 {
    flex-direction: column;
    align-items: center;
  }

  .btn-dangerr,
  .custom-light {
    width: 100%;
    max-width: 280px;
  }
}


/* Hero tablet responsive */

@media (min-width: 750px) and (max-width: 920px) and (min-height: 1000px) and (max-height: 1380px) {
  .hero {
    height: auto !important;
    padding: 140px 40px 80px !important;
    text-align: center !important;
  }

  .hero .row {
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-text {
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .msz-eyebrow {
    font-size: clamp(2rem, 3vw, 2.4rem) !important;
    line-height: 1.3 !important;
  }

  .msz-title1 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem) !important;
    line-height: 1.4 !important;
  }

  .fstt-italic {
    font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }

  .hero-img {
    width: 80% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  .btn-dangerr,
  .custom-light {
    font-size: 0.95rem !important;
    padding: 10px 40px !important;
   
  }
  .tt{
    display: flex;
    justify-content: center;
  }
}

/* ===== Landscape Tablets (853×1280, 912×1368) ===== */
@media (min-width: 850px) and (max-width: 920px) and (orientation: landscape) {
  .hero {
    padding: 120px 60px !important;
  }

  .hero-text {
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  .hero-img {
    width: 85% !important;
    max-width: 540px !important;
  }

  .msz-eyebrow {
    font-size: clamp(2rem, 2.4vw, 2.6rem) !important;
  }

  .msz-title1 {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem) !important;
  }

  .fstt-italic {
    font-size: 1rem !important;
  }
}

/* ===== General Tablet Portrait (768×1024) ===== */
@media (max-width: 820px) and (orientation: portrait) {
  .hero {
    padding: 120px 30px 70px !important;
  }

  .hero-text {
    text-align: center !important;
  }

  .hero-img {
    width: 75% !important;
    margin-top: 40px !important;
  }

  .msz-eyebrow {
    font-size: 2rem !important;
  }

  .msz-title1 {
    font-size: 1.3rem !important;
  }
}


    /* About Section CSS */


    /* About section (Poppins assumed globally; add !important if needed) */
.abt-section{ background:#f5f6f8; font-family:Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* Heading */
.abt-title{
 
  font-family: Poppins;
  color: #141414;
  margin:0;
  font-weight: 600;
  line-height:1.25;
  /* font-size:clamp(1.5rem, 1rem + 2vw, 2rem); */
  font-size: 2rem;
}

/* Bulleted list */
.abt-list{
  margin:0;
  padding-left:1.25rem; /* bullet indent */
  color: #141414;
  line-height:1.8;
  /* font-size:clamp(.95rem, .9rem + .3vw, 1rem); */
  font-size: 14px;
  font-weight: 400;
}
.abt-list li{ margin-bottom:.5rem; }

/* Learn more link + arrow */
.abt-link{
   position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #c00000;                /* your brand red */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.90rem;
}
.abt-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;                   /* distance from text */
  width: var(--abt-underline-w, 170px);  /* customize via inline style */
  height: 1.3px;
  background: currentColor;
  border-radius: 2px;
}



/* .abt-link:hover{ text-decoration:underline; } */
.abt-arrow{
  /* --abt-arrow-img: none;         default fallback */
  width: 23px;
  height: 23px;
  flex: 0 0 18px;
  background: var(--abt-arrow-img) center / contain no-repeat;
  transition: transform .2s ease;
}

@media (max-width: 575.98px){
  .abt-link{ gap: .45rem; }
  .abt-link::after{ width: 140px; }
}



.abt-figure{
  /* Figma layout */
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-end;
  gap:10px;
  padding:60px 0;

  /* box */
  width:100%;
  border-radius:32px;
  overflow:hidden;

  /* background image via CSS variable */
  --abt-bg-img: none;                 /* default */
  /* background-color: lightgray;        */
  background-image: var(--abt-bg-img);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;

  /* responsive height (instead of fixed) */
  min-height: clamp(260px, 38vw, 520px);  /* mobile → desktop */
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px){        /* tablet & down */
  .abt-figure{
    padding:40px 0;                
    min-height: clamp(240px, 48vw, 420px);
  }
}
@media (max-width: 575.98px){        /* phones */
  .abt-figure{
    padding:24px 0;
    gap:8px;
    border-radius:10px;
    min-height: 220px;               /* safe minimum */
  }
}

/* (optional) very wide screens: thoda bada */
@media (min-width: 1400px){
  .abt-figure{ min-height: 560px; }
}

.abt-img{
  width:100%; height:100%;
  display:block; object-fit:cover; object-position:center;
  aspect-ratio: 16 / 9; /* similar feel to screenshot */
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .abt-section{ text-align:left; } /* keep left-aligned on mobile */
  .abt-img{ aspect-ratio: 4 / 3; }  /* a bit taller on small screens */
}


/* Fix uneven text–image height on medium laptops and tablets */
@media (min-width: 992px) and (max-width: 1366px) {
  .abt-section .row {
    align-items: center !important; /* center both vertically */
  }

  .abt-figure {
    min-height: 400px; 
    padding: 30px 0;
  }

  .abt-list li {
    font-size: 13.5px; /* make paragraph slightly compact */
    line-height: 1.7;
  }

  .abt-title {
    font-size: 1.8rem;
  }

  .abt-link::after {
    width: 150px;
  }
}





/* Mission and Vision Section CSS */

.mv-section {
  background:#f5f6f8;
  font-family:Poppins,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

/* Heading */
.mv-heading {
  color:#141414;
  font-weight:600;
  line-height:1.3;
  font-size:clamp(1.6rem,1.2rem + 2vw,2rem);
}

/* Card */
.mv-card {
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  padding:clamp(1.25rem,1.8vw,2rem);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
}

/* Watermark */
.mv-card::after {
  content:"";
  position:absolute;
  top:1rem; right:1rem;
  width:100px; height:100px;
  background:var(--mv-watermark) center/contain no-repeat;
  opacity:.25;
  pointer-events:none;
}

/* Title */
.mv-card-title {
  margin:0 0 0.75rem;
  color:#141414;
  font-weight:600;
  font-size:clamp(1.2rem,1rem + 1.2vw,1.4rem);
  line-height:1.5;
}

.mv-accent { color:#C00000; }

/* List */
.mv-list {
  margin:0;
  padding-left:1.1rem;
  font-weight:400;
  color:#4C4C4C;
  font-size:0.9rem;
  line-height:1.7;
}
.mv-list li { margin-bottom:.5rem; }

/* 🧩 Responsive Adjustments */

/* ✅ For tablets & small laptops like 1024×600 */
@media (max-width:1366px) {
  .mv-card {
    padding:1.5rem;
  }
  .mv-card::after {
    width:80px; height:80px; opacity:.18;
  }
  .mv-list li {
    font-size:0.88rem;
    line-height:1.6;
  }
}

/* ✅ For tablets & large phones */
@media (max-width:991.98px) {
  .mv-card {
    padding:1.25rem 1.5rem;
    min-height:auto;
  }
  .mv-section .row {
    align-items:stretch;
  }
  .mv-card::after {
    width:70px; height:70px; opacity:.15;
  }
}

/* ✅ For small phones */
@media (max-width:575.98px) {
  .mv-card {
    padding:1rem;
    border-radius:10px;
  }
  .mv-card::after {
    width:60px; height:60px; opacity:.12;
  }
  .mv-card-title {
    font-size:1.1rem;
  }
  .mv-heading {
    font-size:1.4rem;
  }
}



/* Developer & Co-Developer section */


/* ===== CTA strip base ===== */
.cs-strip{
  position: relative;
  color:#fff;
  overflow:hidden;
  /* bg image via CSS var */
  --cs-bg:none;
  background: radial-gradient(80% 100% at 15% 50%, rgba(0,0,0,.55), rgba(0,0,0,.2) 60%, rgba(0,0,0,0) 100%),
              var(--cs-bg) center/cover no-repeat;
  min-height: clamp(180px, 22vw, 280px);
  display:flex; align-items:center;
  padding: clamp(16px, 2vw, 24px) 0;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Left copy */
.cs-lead{
  /* font-size: clamp(.95rem, .7rem + .9vw, 1.15rem); */
  font-size: 1.23rem;
  /* line-height: 1.5; */
  /* opacity:.95; */
  margin-bottom:2rem;
  color: #FFF;
  font-weight: 400;
  font-family: Poppins;
  font-style: normal;
}
.cs-strong{
  font-weight: 400;
  font-style: normal;
  font-family: Poppins;
  color: #FFF;
  font-size: clamp(1.05rem, .8rem + 1.1vw, 1.35rem);
}

/* Right “Learn more” with underline + arrow */
.cs-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding-bottom:.25rem; /* tiny breathing room over underline */
}

/* underline */
.cs-link::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  width: var(--cs-underline-w, 120px);
  height: 2px;
  background:#fff;
  border-radius:2px;
  opacity:.95;
}

/* arrow image */
.cs-arrow{
  /* --cs-arrow:none; */
  width:18px; height:18px; flex:0 0 18px;
  background: var(--cs-arrow) center/contain no-repeat;
  transition: transform .2s ease;
}

/* hover nudge */
.cs-link:hover .cs-arrow{ transform: translateX(4px); }

/* ===== Responsive niceties ===== */
@media (max-width: 991.98px){ /* tablets & down */
  .cs-strip{ text-align:left; }
  .cs-link::after{ width: 110px; }
}
@media (max-width: 575.98px){ /* phones */
  .cs-strip{ min-height: 200px; }
  .cs-link::after{ width: 96px; }
  .cs-lead{ line-height:1.45; }
}


/* Legislative framework CSS*/
  .legislative-section {
    background: #f8f8f8;
    font-family: 'DM Sans', sans-serif;
  }

  .law-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    min-height: 440px; /* 👈 increased card height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
  }

  .law-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }

  /* 👇 Image always left aligned */
  .law-icon {
    display: inline-block;
    align-self: flex-start;
  }

  .law-card h5 {
    color: #000;
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  .law-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  /* 👇 Permanent underline for Learn more */
  .learn-link {
    color: #d10000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    position: relative;
  }

  .legislative-heading {
    color: #141414;
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 36px */
  }

  .para{
    overflow: hidden;
color: #4C4C4C;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
  }

  .learn-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 30%;
    height: 1px;
    background-color: #d10000;
  }

  .learn-link:hover {
    color: #b30000;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .law-card {
      text-align: center;
      padding: 1.8rem;
      min-height: 380px;
    }
/* 
    .law-icon {
      margin-left: auto;
      margin-right: auto;
    } */
  }

/* Our Services section CSS */


/* ===== Section ===== */
.svc-section{
  background:#f5f6f8;
  font-family:Poppins,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --svc-red:#d01a1a;
  --svc-arrow:none;
}
.svc-heading{ font-weight:600; color:#141414; font-size:2rem; }

/* ===== Flip cards ===== */
.svc-card{ perspective:1100px; }
.svc-card-inner{
  position:relative; width:100%; height:100%;
  min-height: clamp(260px, 32vw, 440px);
  transform-style:preserve-3d;
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover .svc-card-inner,
.svc-card:focus-within .svc-card-inner{ transform:rotateY(180deg); } /* desktop */
.svc-card-inner.is-flipped{ transform:rotateY(180deg); }             /* mobile */

.svc-face{
  position:absolute; inset:0;
  display:flex; flex-direction:column; gap:.6rem;
  background:#fff; border:1px solid #e5e7eb; border-radius:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:22px;
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
  overflow:hidden; /* ensure content stays inside */
}
.svc-front{ transform:rotateY(0); }
.svc-back { transform:rotateY(180deg); background:#d9d9d9; }

/* content */
.svc-ico{ width:50px; height:auto; user-select:none; margin-bottom:.25rem; }
.svc-title{ font-weight:600; color:#141414; line-height:1.25; font-size:clamp(1rem,.9rem + .9vw,1.6rem); }

/* ===== Scroll area (scrollbars hidden) ===== */
.svc-scroll{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  padding-right:2px;
  /* hide scrollbars (cross-browser) */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge legacy */
}
.svc-scroll::-webkit-scrollbar{ display:none; }  /* WebKit */

/* ===== Truncated paragraph with fade & inline dots ===== */
.svc-desc{
  position:relative;
  color:#4C4C4C; line-height:1.65;
  font-size:clamp(.92rem,.86rem + .2vw,.98rem);
  margin:0 0 1.5rem 0;

  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;

  /* soft fade at bottom for truncated state */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 78%, rgba(0,0,0,0));
          mask-image: linear-gradient(180deg, rgba(0,0,0,1) 78%, rgba(0,0,0,0));
}

/* the three dots rendered INSIDE paragraph without taking layout space */
.svc-dots-ghost{
  position:absolute;
  right:6px; bottom:6px;
  font-size:22px; line-height:1; color:#141414;
  cursor:pointer; user-select:none;
  background:transparent;
  padding:0; margin:0;
}

/* expanded state */
.svc-desc.is-expanded{
  display:block; -webkit-line-clamp:unset; -webkit-box-orient:initial;
  overflow:visible; -webkit-mask-image:none; mask-image:none;
}
.svc-desc.is-expanded .svc-dots-ghost{ display:none; }

/* bottom-left icon */
.svc-more{
  margin-top:auto; align-self:flex-start;
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
}
.svc-icon{ width:40px; height:40px; display:block; object-fit:contain; }

/* ===== Breakpoints ===== */
@media (max-width:1199.98px){
  .svc-card-inner{ min-height:400px; }
}
@media (max-width:991.98px){
  .svc-card-inner{ min-height:380px; }
  .svc-desc{ -webkit-line-clamp:7; }
}
@media (max-width:575.98px){
  .svc-card-inner{ min-height:340px; }
  .svc-face{ padding:18px; }
  .svc-icon{ width:40px; height:40px; }
  .svc-desc{ -webkit-line-clamp:8; }
}


/* remove bottom fade/blur under truncated paragraph */
.svc-desc{
  -webkit-mask-image: none !important;
          mask-image: none !important;
}

/* (reference) keep truncate + ellipsis as-is */
.svc-desc{
  display: -webkit-box;
  -webkit-line-clamp: 6;      /* lines adjust karna ho to yahan badlao */
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* reserve space for the dots so text uske neeche na aaye */
.svc-desc{
  position: relative;
  padding-right: 28px;              /* ⬅️ dots ki width jitni jagah */
}

/* dots ko neatly last line ke right corner par rakho */
.svc-dots-ghost{
  position: absolute;
  right: 6px;
  bottom: 4px;
  z-index: 1;
  line-height: 1;
  font-size: 20px;                  /* need ho to 18–22px adjust */
  cursor: pointer;
  user-select: none;

  /* text ke upar hard overlap na lage, thoda background do */
  background: var(--svc-back-bg, #d9d9d9);  /* same as .svc-back bg */
  padding: 0 2px;                   /* bas halka sa cushion */
  border-radius: 2px;
}

/* ensure back-face provides the bg var (optional but robust) */
.svc-back{ --svc-back-bg: #d9d9d9; }

/* phones par thoda compact */
@media (max-width: 575.98px){
  .svc-desc{ padding-right: 24px; }
  .svc-dots-ghost{ font-size: 19px; right: 5px; bottom: 4px; }
}



/* Whats our client says */


/* Section look */
.tms-section{
  background:#f6f7f9;
  font-family:Poppins,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
.tms-heading{ 

    font-weight:600; 
    color: #141414;
    font-family: Poppins; 
    font-size:clamp(1.5rem,1.1rem + 1.2vw,2rem); 
}

/* Horizontal slider using scroll-snap */
.tms-viewport{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:.25rem;           /* tiny room for OS scrollbar */
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  scrollbar-width:none;            /* Firefox hide */
}
.tms-viewport::-webkit-scrollbar{ display:none; }  /* WebKit hide */

/* Each item width: 100% on small, 50% on lg+ */
.tms-item{
  flex:0 0 100%;
  scroll-snap-align:start;
}
@media (min-width: 992px){
  .tms-item{ flex-basis: calc(50% - 12px); }  /* 2 per view, minus half gap */
}

/* Card */
.tms-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:22px;
  height:100%;
}

/* Avatar + quote layout */
.tms-grid{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:16px;
}
.tms-avatar{
  width:64px; height:64px; border-radius:50%; object-fit:cover; display:block;
}
.tms-quote{

  color:#111827;
   font-size:.90rem;
    line-height:1.6;
    font-weight: 400;
}

/* Meta */
.tms-meta{ margin-top:16px; }
.tms-name{ color:#d01a1a; font-weight:600; font-size:.95rem; }
.tms-role{ color:#6b7280; font-size:.8rem; }

/* Nav buttons */
.tms-btn{
  width:36px; height:36px; border-radius:8px; border:none;
  display:inline-grid; place-items:center; cursor:pointer;
  transition:transform .15s ease, opacity .15s ease;
}
.tms-prev{ background:#eeeeee; color:#6b7280; }
.tms-next{ background:#e63946; color:#fff; }              /* red */
.tms-btn:hover{ transform:translateY(-1px); opacity:.95; }
.tms-btn:active{ transform:translateY(0); }

/* Small tweaks */
@media (max-width:575.98px){
  .tms-grid{ grid-template-columns:56px 1fr; gap:12px; }
  .tms-avatar{ width:56px; height:56px; }

  .tms-nav{
    flex-direction: row !important;
  }


}
/* ===== HEIGHT FIX — Mobile ===== */

@media (max-width: 575.98px) {

    /* Section + container padding kam karo */
    .tms-section { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .tms-section .container { padding-top: 1rem !important; }

    /* Card compact */
    .tms-card { padding: 16px 14px; }

    /* Quote — limit lines */
    .tms-quote {
        padding-left: 0 !important;
        font-size: .83rem;
        line-height: 1.55;
        display: -webkit-box;
        -webkit-line-clamp: 4;   /* max 4 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Meta padding */
    .tms-meta {
        padding-top: 12px !important;
        padding-left: 0 !important;
        margin-top: 8px;
    }

    /* Grid */
    .tms-grid { gap: 10px; }

    /* Nav */
    .tms-nav { margin-top: 1rem !important; }
}



/* video section CSS */
/* .video-section-wrapper {
    font-family: 'Poppins', sans-serif;
  }

  .text-section p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
  }

  .quote-icon {
    width: 70px;
  }

  .right-icon {
    float: right;
    width: 70px;
  }


  .video-section {
    width: 100%;
    max-width: 570px;
    border-radius: 10px;
    overflow: hidden;
  }

  .video-slider-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
  }

  .video-slider {
    display: flex;
    transition: transform 1s ease-in-out;
  }

  .video-item {
    width: 570px;
    height: 313px;
    object-fit: cover;
    flex-shrink: 0;
  }

  
  .watch-now {
    position: absolute;
    bottom: 65px;
    left: 0;
    background: #fff;
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
  }

  .watch-now:hover {
    background: rgba(255,200,200,1);
  }

  .watch-now img {
    width: 30px;
    height: 20px;
    margin-left: 10px;
  }

  .watch-now .arrow-icon {
    width: 24px;
    transition: transform 0.3s ease;
  }

  .watch-now:hover .arrow-icon {
    transform: scale(1.2);
  }

  .watchnowtext {
    font-size: 14px;
  }

 
  @media (max-width: 991px) {
    .text-section {
      text-align: center;
    }

    .quote-icon,
    .right-icon {
      float: none;
      display: block;
      margin: 0 auto 10px;
    }

    .text-section p {
      font-size: 18px;
    }

    .video-section {
      max-width: 100%;
    }

    .video-item {
      width: 100%;
      height: auto;
    }

    .watch-now {
      bottom: 20px;
      padding: 12px 14px;
      font-size: 14px;
    }

    .watch-now img {
      width: 26px;
      height: 18px;
    }

    .watch-now .arrow-icon {
      width: 20px;
    }
  } */



  
.vsec {
    background: #0a1525;
    padding: 80px 0;
    font-family: 'Poppins', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}
.vsec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(196,0,0,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(15,35,65,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.vsec .container { position: relative; z-index: 2; }
.vsec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c40000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.vsec-tag::before { content:''; width:28px; height:2px; background:#c40000; }
.vsec-title { color:#fff; font-size:36px; font-weight:700; line-height:1.2; margin:0; }
.vsec-title span { color:#c40000; }
.vsec-header { margin-bottom: 40px; }
.vsec-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
.vsec-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.vsec-player video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
}
.vsec-player-info {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    position: absolute;
    bottom:0; left:0; right:0;
    padding: 40px 24px 20px;
    pointer-events: none;
}
.vsec-player-info h3 { color:#fff; font-size:18px; font-weight:600; margin:0 0 4px; }
.vsec-player-info p  { color:rgba(255,255,255,0.6); font-size:13px; margin:0; }
.vsec-now-playing {
    position: absolute;
    top:16px; left:16px;
    background: #c40000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}
.vsec-now-playing::before {
    content:'';
    width:7px; height:7px;
    border-radius:50%;
    background:#fff;
    animation: vblink 1.2s ease infinite;
}
@keyframes vblink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Playlist */
.vsec-playlist {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 560px;
}
.vsec-playlist-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.vsec-playlist-header h4 { color:#fff; font-size:15px; font-weight:600; margin:0 0 3px; }
.vsec-playlist-header p  { color:rgba(255,255,255,0.4); font-size:12px; margin:0; }
.vsec-playlist-list {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
}
.vsec-playlist-list::-webkit-scrollbar { width:4px; }
.vsec-playlist-list::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.15); border-radius:2px; }

/* Items */
.vsec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}
.vsec-item:hover { background: rgba(255,255,255,0.05); }
.vsec-item.active {
    background: rgba(196,0,0,0.1);
    border-left-color: #c40000;
}
.vsec-thumb {
    position: relative;
    width: 100px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a2535;
}
.vsec-thumb canvas, .vsec-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vsec-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.25s ease;
}
.vsec-item:hover .vsec-thumb-play,
.vsec-item.active .vsec-thumb-play { background: rgba(196,0,0,0.55); }
.vsec-thumb-play svg { width:22px; height:22px; fill:#fff; }
.vsec-item-info { flex:1; min-width:0; }
.vsec-item-info h5 {
    color:#fff;
    font-size:13px;
    font-weight:500;
    margin:0 0 5px;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.vsec-item-meta { display:flex; align-items:center; gap:8px; }
.vsec-badge {
    background: rgba(196,0,0,0.2);
    color: #ff8a8a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
}
.vsec-item.active .vsec-badge { background: rgba(196,0,0,0.35); }

/* Empty state */
.vsec-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .vsec-layout { grid-template-columns: 1fr; }
    .vsec-playlist { max-height: 400px; }
    .vsec-title { font-size: 28px; }
}
@media (max-width: 767px) {
    .vsec { padding: 50px 0; }
    .vsec-title { font-size: 22px; }
    .vsec-header { margin-bottom: 24px; }
    .vsec-thumb { width: 80px; height: 50px; }
    .vsec-item { padding: 10px 14px; gap: 10px; }
    .vsec-item-info h5 { font-size: 12px; }
}


/* SearchBar */



.vsec-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 9px 12px;
    margin-top: 12px;
    transition: border-color 0.25s ease;
}
.vsec-search:focus-within {
    border-color: rgba(196,0,0,0.6);
    background: rgba(255,255,255,0.08);
}
.vsec-search svg {
    width: 15px;
    height: 15px;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}
.vsec-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    min-width: 0;
}
.vsec-search input::placeholder {
    color: rgba(255,255,255,0.3);
}
.vsec-clear-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: none;
    transition: color 0.2s ease;
}
.vsec-clear-btn:hover { color: #fff; }
.vsec-clear-btn.show { display: block; }


.vsec-no-results {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    display: none;
}
.vsec-no-results svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    opacity: 0.3;
    display: block;
    margin: 0 auto 10px;
}




/* Player top bar */
.vsec-player-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}

.vsec-player-bar-info h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.vsec-player-bar-info p {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    margin: 0;
}

.vsec-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(196,0,0,0.15);
    border: 1px solid rgba(196,0,0,0.35);
    color: #ff7070;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vsec-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4444;
    animation: vblink 1.2s ease infinite;
}

/* Join us CSS Section */



.cj-section{
  /* optional bg image via --cj-bg; remove if not needed */
  --cj-bg: none;
  background:
    linear-gradient(180deg,#ffffff 0%, #faf9fb 100%),
    var(--cj-bg) center/cover no-repeat;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cj-lead{
  color:#111827;
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 70ch;
}

/* headline */
.cj-headline{
  color:#141414;
  font-weight:600;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 3rem);
  line-height: 1.2;
}

/* underline that expands on hover/focus */
.cj-underline{
  position: relative;
  display: inline-block;
  padding-bottom: .3rem;              /* space for the line */
  outline: none;                      /* focus ring handled below */
}
.cj-underline::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  height:3px;
  width:140px;                        /* initial short line */
  background:#141414;
  border-radius:2px;
  transition: width .45s ease;
}
/* expand on hover/focus */
.cj-underline:hover::after,
.cj-underline:focus::after{
  width:100%;
}
/* keyboard focus ring for accessibility */
.cj-underline:focus{
  box-shadow: 0 0 0 4px rgba(20,20,20,.08);
  border-radius:6px;
}

/* small spacing tweaks on very small screens */
@media (max-width: 575.98px){
  .cj-underline::after{ bottom:-5px; height:2.5px; width:120px; }
}


/* Section container */
.cjoin-section{
  background:#F5F5F5;
  border-radius:.5rem;
  font-family:Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Heading + paragraph (responsive via clamp) */
.cjoin-title{
  color: #141414;
 font-weight: 600;
  line-height:1.8;
  font-family: Poppins;
  font-size:clamp(1.05rem, .9rem + .6vw, 1.22rem);
}




.success{

  color: #141414;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 150%;
}
.cjoin-lead{
  color:#141414;
  font-weight:400;
  line-height:1.5;
  font-size:clamp(1rem, .9rem + .5vw, 1.25rem);
}

/* Link with outlined text + animated underline */
.cjoin-link{ display:inline-block; position:relative; }
.cjoin-text{
  display:inline-block;
  font-weight:500;
  line-height:1.2;
  font-size:clamp(1.5rem, 1.1rem + 2.2vw, 2.75rem);
  color:transparent;                    /* outline look */
  -webkit-text-stroke:1px #000;
}
.cjoin-link:hover .cjoin-text,
.cjoin-link:focus .cjoin-text{ color:#000; }

/* short underline -> expands on hover/focus */
.cjoin-text::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  height:2px;
  width:140px;                          /* initial short line */
  background:#141414;
  border-radius:2px;
  transition:width .45s ease;
}
.cjoin-link:hover .cjoin-text::after,
.cjoin-link:focus .cjoin-text::after{
  width:100%;
}

/* keyboard focus hint */
.cjoin-link:focus-visible{ outline:none; box-shadow:0 0 0 4px rgba(20,20,20,.08); border-radius:6px; }


/* responsive join us */



@media (max-width: 575.98px) {
  .cjoin-section {
    text-align: left !important;
    padding: 2rem 1rem !important;
  }

  .cjoin-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    word-break: break-word;
    white-space: normal;
  }

  .cjoin-text {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    -webkit-text-stroke: 0.6px #000 !important;
    line-height: 1.3;
  }

  .success-bar {
    width: 100px !important;
    height: 3px !important;
    border-width: 1px !important;
    margin-top: 0.75rem;
  }

  .cjoin-link:hover .success-bar,
  .cjoin-link:focus .success-bar {
    width: 90% !important;
  }

  /* Slightly tighter spacing for mobile look */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ===== Extra fine-tuning for very small screens (below 400px) ===== */
@media (max-width: 400px) {
  .cjoin-text {
    font-size: 1.2rem !important;
    -webkit-text-stroke: 0.5px #000 !important;
  }

  .success-bar {
    width: 80px !important;
    height: 2.5px !important;
  }
}


/* Responsive about image and text */

@media (min-width: 1000px) and (max-width: 1060px) and (min-height: 580px) and (max-height: 1380px) {

  .abt-section .row {
    align-items: stretch !important;
  }

  /* Make both columns flex so content fills vertically */
  .abt-section .col-lg-6 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* Ensure figure fills its column height */
  .abt-figure {
    height: 100% !important;
    min-height: 100% !important;
    padding: 0 !important;
    border-radius: 32px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Make sure text column content stays vertically balanced */
  .abt-section .col-lg-6.order-1.order-lg-0 {
    justify-content: center !important;
  }

  /* Small tune-up for spacing */
  .abt-list {
    margin-bottom: 1.5rem !important;
  }

  .abt-link {
    margin-top: 1.5rem !important;
  }
}


/* What is SEZ Section */

/* Section Base */
.sez-section {
  background:#f5f6f8;
  font-family:Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Title */
.sez-title {
  color:#141414;
  font-weight:600;
  line-height:1.25;
  font-size:2rem;
  margin:0;
}

/* Bullet List */
.sez-list {
  margin:0;
  padding-left:1.25rem;
  color:#141414;
  line-height:1.8;
  font-size:14px;
  font-weight:400;
}
.sez-list li { margin-bottom:.5rem; }

/* Learn More link */
.sez-link {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:#c00000;
  text-decoration:none;
  font-weight:500;
  font-size:.9rem;
}
.sez-link::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:var(--sez-underline-w, 170px);
  height:1.3px;
  background:currentColor;
  border-radius:2px;
}
.sez-arrow {
  width:23px;
  height:23px;
  flex:0 0 18px;
  background:var(--sez-arrow-img) center / contain no-repeat;
  transition:transform .2s ease;
}

/* Mobile tweak */
@media (max-width:575.98px) {
  .sez-link { gap:.45rem; }
  .sez-link::after { width:140px; }
}

/* Responsive figure (if you use figure layout) */
.sez-figure {
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-end;
  gap:10px;
  padding:60px 0;
  width:100%;
  border-radius:32px;
  overflow:hidden;
  --sez-bg-img:none;
  /* background-image:var(--sez-bg-img); */
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  min-height:clamp(260px,38vw,520px);
}

@media (max-width:991.98px) {
  .sez-figure {
    padding:40px 0;
    min-height:clamp(240px,48vw,420px);
  }
}
@media (max-width:575.98px) {
  .sez-figure {
    padding:24px 0;
    gap:8px;
    border-radius:10px;
    min-height:220px;
  }
}
@media (min-width:1400px) {
  .sez-figure { min-height:560px; }
}

/* Responsive Image */
.sez-img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  aspect-ratio:16/9;
}

/* Responsive tweaks */
@media (max-width:991.98px) {
  .sez-section { text-align:left; }
  .sez-img { aspect-ratio:4/3; }
}

/* Medium screens alignment fix */
@media (min-width:992px) and (max-width:1366px) {
  .sez-section .row { align-items:center !important; }
  .sez-figure { min-height:400px; padding:30px 0; }
  .sez-list li { font-size:13.5px; line-height:1.7; }
  .sez-title { font-size:1.8rem; }
  .sez-link::after { width:150px; }
}

/* Responsive for same height image and text  */


@media (min-width: 1000px) and (max-width: 1366px) and (min-height: 580px) and (max-height: 1400px) {
  .sez-section .row {
    display: flex !important;
    align-items: stretch !important; /* Equal height for text & image */
  }

  /* Left text column */
  .sez-section .col-lg-6.order-1.order-lg-0 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-right: 40px !important;
  }

  /* Right image column */
  .sez-section .col-lg-6:last-child {
    display: flex !important;
    flex-direction: column !important;
  }

  .sez-section img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 24px !important;
  }

  /* Title + List tuning for balance */
  .sez-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.2rem !important;
  }

  .sez-list li {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
  }

  .sez-link {
    margin-top: 1.5rem !important;
  }
}



/* Our Client section */

 /* Our Client  section */

      .sliderr-container {
                width: 100%;
                overflow: hidden;
                background: white;
                padding: 20px 0;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .sliderr-box {
                display: flex;
                overflow: hidden;
                width: 100%;
                position: relative;
                
            }
            .first-box{

                position: relative;
                left: 60px;
                /* margin-right: -50px; */
            }

            .ourclients h2{

                text-align: center;
                font-size: 32px;
                font-weight: 600;
                font-family: 'poppins',serif;
                padding-bottom: 40px;
            }

            .ourclients a{
                
                text-align: center;
                font-size: 15px;
                font-weight: 400;
                font-family: 'poppins',serif;
                padding-top: 40px;
                color: #C00000;
                display: flex;
                justify-content: center;
                position: relative;
            }

            .ourclients a::after{
                content: "";
    position: absolute;
    bottom: -5px; /* Adjust spacing below text */
    width: 10%; /* Increase width beyond text */
    height: 1.5px; /* Thickness of underline */
    background-color: #C00000; /* Match text color */
 
            }

            .ourclients a img{

                margin-left: 7px;
            }       
            .sliderr {
                display: flex;
                white-space: nowrap;
                animation: scroll 20s linear infinite;
            }
            .sliderr-box .boxx {
                width: 200px;
                height: 100px;
                display: flex;
                justify-content: center;
                align-items: center;
                background: white;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                margin: 20px 20px;
            }
            .boxx img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                padding: 10px;
            }
            @keyframes scroll {
                from {
                    transform: translateX(0);
                }
                to {
                    transform: translateX(-50%);
                }
            }


            @media (max-width: 1200px) {
    .sliderr-box .boxx {
        width: 180px;
        height: 90px;
    }
    .first-box {
        left: 40px;
    }
}

@media (max-width: 992px) {
    .sliderr-box .boxx {
        width: 150px;
        height: 80px;
        margin: 15px 15px;
    }
    .ourclients h2 {
        font-size: 28px;
    }
    .ourclients a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .slider-containerr {
        flex-direction: column;
        align-items: center;
    }
    .sliderr-box {
        width: 90%;
    }
    .sliderr {
        animation-duration: 25s;
    }
    .first-box {
        left: 0;
    }
}

@media (max-width: 576px) {
    .ourclients h2 {
        font-size: 24px;
    }
    .sliderr-box .boxx {
        width: 120px;
        height: 70px;
        margin: 10px 10px;
    }
    .ourclients a {
        padding-top: 30px;
    }
}

@media (max-width: 400px) {
    .ourclients h2 {
        font-size: 20px;
    }
    .sliderr-box .boxx {
        width: 100px;
        height: 60px;
    }
    .ourclients a {
        font-size: 10px;
    }
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .ourclients a::after {
        width: 15%; /* Increase width for large screens */
    }
}

@media (max-width: 992px) {
    .ourclients a {
        font-size: 14px;
    }
    .ourclients a::after {
        width: 20%; /* Slightly wider underline */
    }
}

@media (max-width: 768px) {
    .ourclients a {
        font-size: 13px;
    }
    .ourclients a::after {
        width: 25%; /* Wider underline */
    }
}

@media (max-width: 576px) {
    .ourclients a {
        font-size: 12px;
    }
    .ourclients a::after {
        width: 30%; /* Even wider underline */
    }
}

@media (max-width: 400px) {
    .ourclients a {
        font-size: 11px;
    }
    .ourclients a::after {
        width: 35%; /* Maximum width for small screens */
    }
}

.ourclients a img {
    margin-left: 7px;
    width: 18px; /* Adjust icon size for better alignment */
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .ourclients a img {
        width: 15px;
        margin-left: 5px;
    }
}

@media (max-width: 480px) {
    .ourclients a img {
        width: 13px;
        margin-left: 4px;
    }
}