@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}




.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.bg-gray{
  background: #f8f7fb80;
}

body{
    font-family: "Poppins", sans-serif;
}

.hero-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(90deg, rgb(142 146 159 / 29%) 0%, rgb(41 55 92 / 47%) 35%, rgb(5 10 24 / 39%) 65%, rgba(5, 10, 24, .25) 100%);
  z-index: 2;
}

.hero-containt{
  z-index: 12;
}

.bor{
  border: 1px solid red;
}

.site-heading{
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 0 100px;
}

.navbar-container{
  max-width: 1280px;
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.heading-logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.heading-logo img{
  height: 75px;
  width: auto;
}

.navbar-menu-container{
  display: flex;
  align-items: center;
}

.navbar-menus{
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-menus{
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-dropdown{
  position: relative;
}

.munu-link{
  position: relative;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.menu-dropdown:hover .dropdown-toggle i,
.menu-dropdown:focus-within .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-dropdown:hover .dropdown-menu,
.menu-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  color: #0f172a;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropdown-item span i{
  font-size: 20px;
  color: #ffffff;
}

.dropdown-item span{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #266bd7;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: #f3f7ff;
  color: #266bd7;
}

.munu-link:hover,
.munu-link:focus-visible{
  color: #266bd7;
}

.munu-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #266bd7;
  transition: width 0.3s ease;
}

.munu-link:hover::after,
.munu-link:focus-visible::after{
  width: 100%;
}

.munu-buttons{
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-btn-outline{
  color: #153b95;
  border: 1px solid #cfdcfb;
  background: #f7faff;
}

.menu-btn-outline:hover,
.menu-btn-outline:focus-visible{
  background: #ebf2ff;
  border-color: #153b95;
}

.menu-btn-primary{
  color: #fff;
  background: linear-gradient(135deg, #266bd7, #153b95);
  box-shadow: 0 10px 20px rgba(21, 59, 149, 0.2);
}

.menu-btn-primary:hover,
.menu-btn-primary:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(21, 59, 149, 0.25);
}

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  height: 2px;
  width: 100%;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
  opacity: 0;
}

.nav-toggle.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .site-heading {
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navbar-menu-container {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 18px;
  }

  .navbar-menu-container.active {
    display: flex;
  }

  .navbar-menus {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-menus {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .menu-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 12px;
    background: #f8fbff;
    border-radius: 10px;
    margin-top: 8px;
    display: none;
  }

  .menu-dropdown:hover .dropdown-menu,
  .menu-dropdown:focus-within .dropdown-menu {
    display: flex;
  }

  .munu-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-container {
    min-height: 80px;
  }

  .heading-logo img {
    height: 48px;
  }
}

.hero-section {
  position: relative;
  background: none;
  color: #f7fafc;
  overflow: hidden;
  height: 90vh;
  padding: 10px 100px;
}

.hero-section .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-containt-wrapper{
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-containt{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.top-heading{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.top-heading h1{
  font-size: 56px;
  line-height: 1.1;
}

.top-heading span{
  color: #266bd7;
}

.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  font-family: "Poppins", sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  background-color: #153b95;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn-23:disabled {
  cursor: default;
}
.btn-23:-moz-focusring {
  outline: auto;
}
.btn-23 svg {
  display: block;
  vertical-align: middle;
}
.btn-23 [hidden] {
  display: none;
}
.btn-23 {
  border-radius: 99rem;
  border-width: 1px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}
.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}
.btn-23 .marquee {
  --spacing: 5em;
  --start: 0em;
  --end: 5em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}
.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}
.btn-23:hover .text {
  opacity: 0;
}
@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }
  to {
    transform: translateX(var(--end));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }
  to {
    transform: translateX(var(--end));
  }
}

main{
  overflow: hidden;
}

.about-section{
  padding: 80px 100px;
  display: flex;
  gap: 30px;
}

.my-section-sides{
  flex: 1;
}

.top-four-logos{
  display: flex;
  gap: 15px;
}

.about-logo{
  height: 80px;
  width: 100px;
  overflow: hidden;
}

.hidden{
  display: none;
}

.about-logo img{
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.about-container-heading{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-container-heading h2{
  font-size: 2rem;
  line-height: 2.8rem;
  margin-top: 25px;
}

.my-main-container{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-container-down-section{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.my-site-btn {
  color: white;
  border-radius: 0.3rem;
  cursor: pointer;
  width: 95.02px;
  height: 42.66px;
  border: none;
  background-color: #3653f8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.my-site-btn .span-mother {
  display: flex;
  overflow: hidden;
}

.my-site-btn:hover .span-mother {
  position: absolute;
}

.my-site-btn:hover .span-mother span {
  transform: translateY(1.2em);
}

.my-site-btn .span-mother span:nth-child(1) {
  transition: 0.2s;
}

.my-site-btn .span-mother span:nth-child(2) {
  transition: 0.3s;
}

.my-site-btn .span-mother span:nth-child(3) {
  transition: 0.4s;
}

.my-site-btn .span-mother span:nth-child(4) {
  transition: 0.5s;
}

.my-site-btn .span-mother span:nth-child(5) {
  transition: 0.6s;
}

.my-site-btn .span-mother span:nth-child(6) {
  transition: 0.7s;
}

.my-site-btn .span-mother2 {
  display: flex;
  position: absolute;
  overflow: hidden;
}

.my-site-btn .span-mother2 span {
  transform: translateY(-1.4em);
}

.my-site-btn:hover .span-mother2 span {
  transform: translateY(0);
}

.my-site-btn .span-mother2 span {
  transition: 0.2s;
}

.my-site-btn .span-mother2 span:nth-child(2) {
  transition: 0.3s;
}

.my-site-btn .span-mother2 span:nth-child(3) {
  transition: 0.4s;
}

.my-site-btn .span-mother2 span:nth-child(4) {
  transition: 0.5s;
}

.my-site-btn .span-mother2 span:nth-child(5) {
  transition: 0.6s;
}

.my-site-btn .span-mother2 span:nth-child(6) {
  transition: 0.7s;
}


.hero-single .hero-content .hero-sub-title {
    margin-bottom: 2rem;
}

.hero-sub-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    color: #f36a0e;
    position: relative;
    z-index: 1;
    padding-left: 3rem;
}

.hero-sub-title .hero-line {
    width: 2rem;
    height: 1px;
    position: absolute;
    top: 18%;
    left: 0;
    translate: 0 -50%;
    z-index: 1;
    background-color: #f36a0e;
}

.hero-sub-title .hero-line::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 20px;
    z-index: -1;
    background: #f36a0e;
    opacity: 1;
    top: 5px;
    left: 0;
}

.hero-sub-title .hero-line::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 10px;
    z-index: -1;
    background: #f36a0e;
    opacity: 1;
    top: 10px;
    left: 0;
}

.right-side-image{
  width: 100%;
  height: 100%;
}

.right-side-image img{
  width: 100%;
  height: 100%;
}

.service-container{
  padding: 50px 100px;
}

.my-section-right-side{
  overflow: hidden;
}

.heading-row h2{
  text-align: center;
}

.heading-row p{
  text-align: center;
}

.heading-row h2::after {
    display: block;
    width: 4.5rem;
    height: 0.125rem;
    background-color: #f36a0e;
    content: " ";
    margin: 0.5rem auto 0;
}

.shadow-box {
    box-shadow: 0px 1px 10px rgba(99, 99, 99, 0.32);
    border-radius: 8px;
}

.transition-3d-hover {
    transition: all 0.2s ease-in-out;
}

.h-100 {
    height: 100% !important;
}

.service-cards-container{
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.card {
    width: calc(33.333% - 34px); /* 3 Cards */
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e7eaf3;
    border-radius: 0.3125rem;
    box-sizing: border-box;
}

.padding-default {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.font-size-17 {
    font-size: 1.063rem;
}

.text-dark {
    color: #242424 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.pb-1, .py-1 {
    padding-bottom: 0.25rem !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.card-title {
    margin-bottom: 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

.font-size-14 {
    font-size: 0.875rem;
}

.text-gray-1 {
    color: #242424 !important;
}

.transition-3d-hover {
    transition: all 0.2s ease-in-out;
}

.text-lh-lg {
    line-height: 1.9;
}

.font-size-14 {
    font-size: 0.875rem;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.pb-1, .py-1 {
    padding-bottom: 0.25rem !important;
} 

.pt-1, .py-1 {
    padding-top: 0.25rem !important;
}

.fa, .fas {
    font-weight: 900;
}

.fa, .fas {
    font-weight: 900;
}

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-arrow-right:before {
    content: "\f061";
}

a {
    color: #f7c200;
    text-decoration: none;
    background-color: transparent;
}

.transition-3d-hover:hover, .transition-3d-hover:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/* ==========================
   Tablet (2 Cards)
========================== */
@media (max-width: 991px) {

    .service-cards-container{
        gap: 30px !important;
    }

    .card{
        width: calc(50% - 15px);
    }

    .about-section{
      flex-direction: column;
      padding: 30px 30px;
    }

    .main-patti-panel {
      flex-direction: column;
      gap: 50px;
    }

    .faq-card-wrapper {
      flex-direction: column;
    }

    .arccs-faq-section {
      padding: 50px 30px !important;
    }

    .service-container {
        padding: 50px 30px;
    }

    .choose-section {
          padding: 50px 30px !important;
    }

    .right-content{
      gap: 40px;
    }

    .column{
      gap: 40px;
    }

    .jkts2-testimonial-section {
      padding: 30px 30px !important;
    }

    .footer-actions {
      padding: 20px 30px !important;
    }

  .footer-col {
    width: 100% !important;
  }
    
  .footer-title{
    text-align: center;
  }

  .footer-links li{
    justify-content: center;
    text-align: center;
  }

  .hero-section{
      padding: 50px 30px !important;
  }

  .top-heading h1 {
    font-size: 45px;
  }

  .about-hero-section {
    padding: 10px 30px !important;
  }

  .about-section {
    flex-direction: column-reverse;
  }
    

}

/* ==========================
   Mobile (1 Card)
========================== */
@media (max-width: 767px) {

    .service-cards-container{
        gap: 40px !important;
    }

    .card{
        width: 100%;
    }

    .hero-section {
      padding: 30px 20px !important;
      height: auto;
    }

    .hero-containt-wrapper {
      align-items: flex-start;
    }

    .top-heading h1 {
      font-size: 40px;
      line-height: 1.1;
    }

    .hero-buttons {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .btn-23 {
      width: auto;
      max-width: 100%;
      min-width: 180px;
      padding: 0.9rem 2rem;
      position: relative;
    }

}

.choose-section{
    font-family: "Poppins", sans-serif;
    /* max-width:1200px; */
    margin:auto;
    background:#fff;
    /* border:2px solid #d33; */
    border-radius:22px;
    padding:50px 100px;
}

.choose-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
}

.left-content{
    width:38%;
}

.small-title{
    font-size:16px;
    letter-spacing:1px;
    color:#444;
    text-transform:uppercase;
    margin-bottom:15px;
    position:relative;
}

.small-title:before{
    content:"";
    width:38px;
    height:2px;
    background:#d72626;
    position:absolute;
    bottom:-4px;
    left:0;
}

h2{
    font-family: "Poppins", sans-serif;
    font-size:40px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:12px;
    color:#111;
}

h2 span{
    color:#266bd7;
}

.description{
    color:#555;
    font-size:15px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:340px;
}

.social-media-logo-icon{
  min-height: 60px;
  display: flex;
  align-items: center;
}

.social-media-logo-icon span i{
  width: 45px !important;
  height: 45px !important;
  background: #266bd7;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
}

.btn{
  font-family: "Poppins", sans-serif;
    display:inline-block;
    background:#266bd7;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    font-size:13px;
    font-weight:600;
    /* text-transform:uppercase; */
    border-radius:4px;
    letter-spacing:.5px;
}

.right-content{
    width:62%;
    display:grid;
    grid-template-columns:1fr 1px 1fr;
    column-gap:40px;
}

.divider{
    background:#ddd;
    width:1px;
}

.column{
    display:flex;
    flex-direction:column;
}

.feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:15px 0;
}

.feature + .feature{
    border-top:1px solid #ececec;
}

.icon{
    width:48px;
    height:48px;
    border:1px solid #266bd7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#266bd7;
    font-size:18px;
    flex-shrink:0;
}

.feature h4{
    font-family: "Poppins", sans-serif;
    font-size:20px;
    font-weight:500;
    color:#222;
    margin-bottom:8px;
}

.feature p{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

@media(max-width:992px){

.choose-wrapper{
    flex-direction:column;
}

.left-content,
.right-content{
    width:100%;
}

.right-content{
    grid-template-columns:1fr;
}

.divider{
    display:none;
}

}

.mypatti{
  background: #266bd7;
  display: flex;
  justify-content: center;
  padding: 40px 50px;
}

.main-patti-panel{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.patti{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.patti h3{
  font-size: 3rem;
  line-height: 1;
  color: #ffffff;
}
.patti p{
  color: #ffffff;
}

/* =================================card section starts here================================= */
.heading-part{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.heading-part h2{
    font-size: 1.8rem;
}

.heading-part p{
    text-align: center;
}
/* ── CLIENT LOGOS CAROUSEL ── */
#client-logos {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 48px 0;
    overflow: hidden;
}

.cl-label {
    text-align: center;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #58617a;
    font-size: 1.5rem;
    line-height: 3.3rem;
    font-weight: 400;
    padding-left: max(60px, calc((100% - 1320px) / 2));
    padding-right: max(60px, calc((100% - 1320px) / 2));
}

.cl-track-wrap {
    overflow: hidden;
    position: relative;
}

.cl-track-wrap::before,
.cl-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.cl-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.cl-track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #fff, transparent);
}

.cl-track {
    display: flex;
    gap: 48px;
    animation: cl-scroll 32s linear infinite;
    width: max-content;
    align-items: center;
}

.cl-track:hover {
    animation-play-state: paused;
}

@keyframes cl-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cl-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 160px;
    flex-shrink: 0;
    opacity: .55;
    filter: grayscale(1);
    transition: all .25s;
}

.cl-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.cl-logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light);
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--sub);
    text-align: center;
    padding: 8px;
    line-height: 1.3;
}
/* =================================card section ends here================================= */


/* ====================================testimonial section start ============================ */
.jkts2-testimonial-section {
            padding: 30px 100px;
        }

        .jkts2-container {
            margin: auto;
        }

        .jkts2-heading {
            text-align: center;
            margin-bottom: 20px;
        }

        .jkts2-subtitle {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #0077cc;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .jkts2-title {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin: 0;
        }

        .jkts2-item {
            padding: 15px;
            box-sizing: border-box;
        }

        .jkts2-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            height: 100%;
            transition: .3s;
            min-height: 330px;
        }

        .jkts2-card:hover {
            transform: translateY(-5px);
        }

        .jkts2-image {
          display: none;
            width: 80px;
            height: 80px;
            min-width: 80px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
        }

        .jkts2-content {
            position: relative;
        }

        .jkts2-quote {
            color: #0077cc;
            font-size: 26px;
            margin-bottom: 12px;
            display: inline-block;
        }

        .jkts2-content p {
            margin: 0 0 15px;
            color: #555;
            line-height: 1.7;
        }

        .jkts2-name {
            font-size: 18px;
            font-weight: 700;
            color: #222;
        }

        .jkts2-position {
            color: #888;
            font-size: 14px;
            display: none;
        }

        .jkts2-carousel .owl-nav {
            margin-top: 25px;
            text-align: center;
        }

        .jkts2-carousel .owl-nav {
            margin-top: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
        }

        .jkts2-carousel .owl-nav button {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
            width: auto;
            height: auto;
            padding: 0 !important;
            transition: all .35s ease;
        }

        .jkts2-carousel .owl-nav button span {
            display: block;
            font-size: 42px;
            line-height: 1;
            color: #222;
            font-weight: 300;
            transition: all .35s ease;
        }

        .jkts2-carousel .owl-nav button:hover {
            background: transparent !important;
        }

        .jkts2-carousel .owl-nav button:hover span {
            color: #0077cc;
            transform: translateX(4px);
        }

        .jkts2-carousel .owl-nav .owl-prev:hover span {
            transform: translateX(-4px);
        }

        .jkts2-carousel .owl-nav button.disabled {
            opacity: .35;
            cursor: not-allowed;
        }

        .jkts2-carousel .owl-nav button:focus {
            outline: none;
        }

        .jkts2-carousel .owl-nav button span {
            user-select: none;
        }

        .jkts2-carousel .owl-dots {
            text-align: center;
        }

        .jkts2-carousel .owl-dot span {
            width: 10px;
            height: 10px;
        }

        @media(max-width:768px) {

            .jkts2-card {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .jkts2-title {
                font-size: 28px;
            }

        }

/* ==============================testimonial section ends here ============================ */

/* faq section starts here  */

.arccs-faq-section *,
.arccs-faq-section *::before,
.arccs-faq-section *::after{
box-sizing:border-box;
}

.arccs-faq-section{

--panel:#ffffff;
--panel2:#fafafa;
--text:#111827;
--muted:#6b7280;
--accent:#2563eb;
--border:#e5e7eb;

background:#ffffff;
padding: 50px 100px;

}

.arccs-faq-container{
margin:auto;
}

.arccs-faq-header{
text-align:center;
}

.arccs-faq-eyebrow{
text-transform:uppercase;
letter-spacing:3px;
font-size:13px;
font-weight:600;
color:var(--accent);
margin-bottom:10px;
}

.arccs-faq-header h2{
font-size:40px;
margin:0 0 15px;
color:var(--text);
}

.arccs-faq-description{
color:var(--muted);
margin:0;
}

.arccs-faq-accordion{
display:flex;
flex-direction:column;
gap:15px;
}

.arccs-faq-item{
border:1px solid var(--border);
border-radius:16px;
overflow:hidden;
background:#fff;
transition:.3s;
}

.arccs-faq-item:hover{
border-color:var(--accent);
}

.arccs-faq-item.arccs-open{
background: #153b95;
}

.arccs-faq-trigger{

width:100%;
display:flex;
justify-content:space-between;
align-items:center;

padding:22px;

border:none;
background:none;
cursor:pointer;

font-size:17px;
font-weight:600;
font-family:inherit;
text-align:left;
color:var(--text);

}

.arccs-faq-item.arccs-open .arccs-faq-trigger{
  color:#ffffff;
}


.arccs-faq-icon{

width:22px;
height:22px;
fill:none;
stroke:var(--accent);
stroke-width:2.3;
stroke-linecap:round;
stroke-linejoin:round;
transition:.35s;

}

.arccs-faq-item.arccs-open .arccs-faq-icon{
transform:rotate(180deg);
}

.arccs-faq-panel{
display:grid;
grid-template-rows:0fr;
transition:.35s;
}

.arccs-faq-item.arccs-open .arccs-faq-panel{
grid-template-rows:1fr;
}

.arccs-faq-panel-inner{

overflow:hidden;
padding:0 22px;
line-height:1.8;
color: #ffffff;

opacity:0;
transition:.3s;

}

.arccs-faq-item.arccs-open .arccs-faq-panel-inner{
font-size: 14px;
padding:0 22px 22px;
opacity:1;

}

.faq-card-wrapper{
  display: flex;
  gap: 10px;
}

/* faq section ends here  */

.owl-prev i{
  color: #266bd7;
}
.owl-next i{
  color: #266bd7;
}


/* ==================================fooooter code start ============================== */

.site-footer {
  /* background: #f2f2f4; */
  background: url(../assets/images/footer.webp);
    background-size: cover; /* IMPORTANT */
    background-repeat:no-repeat;
    color: #000000;
    padding: 50px 0 0 0;
    font-size: 1.05rem;
    margin-top: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0px 100px;
    gap: 10px;
}
.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    margin-right: 24px;
}
.footer-logo-col {
    min-width: 260px;
    margin-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
  width: 186px;
  /* margin-top: -29px; */
  margin-bottom: 30px;
}
.footer-company {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 1rem;
}
.footer-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #2361a9;
    padding-bottom: 6px;
    color: #266bd7;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-links li i {
  margin-right: 10px;
  min-width: 20px; /* optional: helps align all icons neatly */
  font-size: 22px;
  color: #f36a0e;
}
.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffc638;
}
.footer-contact {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.01rem;
}
.footer-social {
    margin-top: 10px;
    display: none;
    /* display: flex; */
    gap: 18px;
}
.footer-social a {
    color: #0036aa;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #ffc638;
    transform: scale(1.15);
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 12px 0;
    background: #266bd7;
    color: #fff;
    font-size: 1.01rem;
    border-top: 1px solid #266bd7;
    margin-top: 40px;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #ffc638;
}
@media (max-width: 1000px) {
    .footer-main {
        flex-direction: column;
        gap: 18px;
        padding: 0 12px 18px 12px;
    }
    .footer-col, .footer-logo-col {
        margin-right: 0;
        min-width: 0;
        align-items: flex-start;
    }
    .footer-logo-col {
        margin-bottom: 18px;
    }
}


.footer-actions {
    flex-wrap: wrap;
    gap: 40px;
    display: flex;
    padding: 20px 150px;
}

.footer-actions .button{
    --btn-bg: #fff;
    --btn-fg: var(--ink);
    --btn-border: #fff;
    border-radius: 999px;
}

.footer_number_buttons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
    border: 1px solid #f36a0e;
    background: transparent;
    min-height: 48px;
    color: #f36a0e;
    letter-spacing: .01em;
    cursor: pointer;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    font-size: .9rem;
    font-weight: 600;
    transition: background .18s,color .18s,border-color .18s;
    display: inline-flex;
}

.button:hover{
  background: #266bd7;
  color: #ffffff;
  border: none;
}

.footer-actions .button-ghost {
    color: #ffffff;
    background: #266bd7;
    box-shadow: inset 0 1px 0 #ffffff38, 0 1px 2px #0c1b2a12;
    border: 1px solid #0000;
}

/* =======================================footer code ends ==================================== */


.arccs-faq-panel-inner p{
    margin:0 0 15px;
    font-size:16px;
    font-weight:600;
}

.arccs-faq-list{
    margin:0;
    padding:0;
    list-style:none;
}

.arccs-faq-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:12px;
    line-height:1.7;
}

.arccs-faq-list li:last-child{
    margin-bottom:0;
}

.arccs-faq-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#47beea;
    font-weight:700;
    font-size:16px;
}

/* ===========================
      Main Layout
=========================== */

.industries-card-description{
    display:flex;
    align-items:flex-start;
    gap:50px;
}

/* Left Section */

.industries-card-heading{
    flex:1;
    padding-right:40px;
    border-right:1px solid #d9d9d9;   /* Thin Divider */
}

.industries-card-heading h3{
    font-family:"Poppins",sans-serif;
    font-size:2rem;
    font-weight:500;
    color:#222;
    line-height:1.4;
    margin-bottom:30px;
}

/* Bullet List */

.industries-list{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 35px;
}

.industries-list li{
    position:relative;
    padding-left:28px;
    font-family:"Poppins",sans-serif;
    font-size:17px;
    font-weight:400;
    color:#444;
    line-height:1.7;
}

/* Orange Bullet */

.industries-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#f36a0e;
}

/* Right Section */

.industries-card-description-single{
    flex:1;
    display:flex;
    align-items:center;
}

.industries-card-description-single p{
    font-family:"Poppins",sans-serif;
    font-size:18px;
    font-weight:300;
    line-height:2;
    color:#555;
    margin:0;
}

/* ===========================
      Tablet
=========================== */

@media(max-width:991px){

    .industries-card-description{
        flex-direction:column;
        gap:35px;
    }

    .industries-card-heading{
        border-right:none;
        border-bottom:1px solid #d9d9d9;
        padding-right:0;
        padding-bottom:30px;
    }

    .industries-list{
        grid-template-columns:repeat(2,1fr);
    }

    .industries-card-heading h3{
        font-size:1.8rem;
    }

}

/* ===========================
      Mobile
=========================== */

@media(max-width:767px){

    .industries-card-description{
        gap:25px;
    }

    .industries-card-heading h3{
        font-size:1.5rem;
        margin-bottom:20px;
    }

    .industries-list{
        grid-template-columns:1fr;
        gap:15px;
    }

    .industries-list li{
        font-size:16px;
        padding-left:24px;
    }

    .industries-list li::before{
        width:8px;
        height:8px;
        top:9px;
    }

    .industries-card-description-single p{
        font-size:16px;
        line-height:1.8;
    }

}