/* ------------------- BASIC RESET ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ------------------- HERO SECTION ------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 100px 80px 100px;
    background: #faf9ea;
    gap: 50px;
    flex-wrap: wrap;
}




.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #1c1c1c;
}

.hero h1 span {
    color: #257ad2;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.hero h2 {
    margin-top: 20px;
    font-size: 27px;
    line-height: 1.6;
    color: #e45e22;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Primary Button */
.btn-primary {
    background: #e45e22;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(228, 94, 34, 0.9);
    transition: 0.4s;
}

.btn-primary:hover {
    background: #257ad2;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 122, 210, 0.9);
}

/* Secondary Button */
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.insta {
    background: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Laptop Container */
.laptop-wrapper {
    position: relative;
    width: 480px;
    max-width: 100%;
}

.laptop-img {
    width: 100%;
    display: block;
}

.laptop-video {
    position: absolute;
    top: 9%;
    left: 12%;
    width: 76%;
    height: 80%;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none;
}

/* ------------------- TYPEWRITER EFFECT ------------------- */
#typewriter {
    color: #e45e22;
    font-weight: 800;
    border-right: 3px solid #e45e22;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #e45e22; }
}

/* ------------------- RESPONSIVE ------------------- */
/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1200px) {
    .hero {
        padding: 140px 40px 60px 40px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 50px 20px;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .laptop-img,
    .laptop-video {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }

    .laptop-wrapper {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 14px;
    }
}

html, body {
    overflow-x: hidden;
}

.laptop-wrapper {
    position: relative;
    width: 42%;
}

.laptop-video {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 84%;
    height: auto;
    z-index: 1;
}

.laptop-img {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .laptop-video {
        top: 8%;
        left: 6%;
        width: 88%;
    }
}


/* ------------------- HERO STATS ------------------- */

.hero-stats {
    display: flex;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat span {
    font-size: 36px;
    font-weight: 800;
    color: #e45e22;
}

.hero-stats .stat p {
    margin-top: 5px;
    font-size: 16px;
    color: #555;
}

/* -------------------Second Section styling----------------- */
.two-column-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    flex-wrap: wrap; /* Makes it responsive */
    text-align: center; /* Center-aligns content */

     border-top: 3px solid #e45e22; /* Divider line */
    margin-top: 0px; /* Optional spacing */
}

/* Heading style */
.section-heading {
    width: 100%;
    text-align: center;
    font-size: 2em; /* Adjust as needed */
    margin-bottom: 20px;
    color: #e45e22; /* You can change the color */
}

/* Left: Image */
.image-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-left: 100px;
}

/* Right: Text */
.text-section {
    flex: 1;
    min-width: 300px;
    padding-left: 100px;
    padding-right: 150px;
}

.text-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #e45e22; /* Change color as needed */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(228, 94, 34, 0.9);
}

.cta-btn:hover {
    background-color: #257ad2; /* Hover color */
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 122, 210, 0.9);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }

    .section-heading {
        font-size: 1.8em; /* Adjust heading size for smaller screens */
    }
    .image-section img{
        margin-left: 0px;
    }
    .text-section {
    padding-left: 0px;
    padding-right: 0px;
}
}


/* ----------------Third SECTION WRAPPER------------------- */
.site-preview {
    padding: 50px 0;        /* no left-right padding */
    margin: 0 60px;         /* space only left & right */
}

.sp-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID SYSTEM (NO SPACING) */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;                /* no spacing between grids */
}

/* CARD */
.sp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
}

/* WINDOW */
.sp-window {
    width: 90%;
    height: 360px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin: 0 auto;
}

/* DESKTOP PREVIEW (SCALED) */
.sp-window iframe {
    width: 2300px;
    height: 1800px;
    border: 0;
    transform: scale(0.2);
    transform-origin: top left;
    position: absolute;
    pointer-events: auto;
    top: 0;
    left: 0;
}



/* TITLE */
.sp-card-title {
    margin-top: 5px;
    width: 90%;
    padding: 12px 10px;
    text-align: center;
    border: 2px solid #e45e22;
    color: #e45e22;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 35px;
}
.sp-card-title:hover{
    border: 2px solid #257ad2;
    color: #257ad2;
}
/* RESPONSIVE FIX */
@media (max-width: 992px) {
    .site-preview {
        margin: 0 30px;   /* smaller margin on tablet */
    }

    .sp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .site-preview {
        margin: 0 15px;   /* small margin on mobile */
    }

    .sp-grid {
        grid-template-columns: 1fr;
    }
    .sp-window iframe {
        width: 2150px;        /* reduce width so right side is not cut */
        height: 2250px;
        transform: scale(0.16); /* slightly smaller scale fits better */
        transform-origin: top left;
    }
}

/*  ---------------------------------circle styling-------------------------------------*/
.circle-container {
  width: 100%;
  height: 280px;
}

#learn-more {
  fill-opacity: 0;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  border-radius: 5px;
  stroke-linejoin: round;
  transition: all 250ms ease-in;
  cursor: pointer;
}
#learn-more:hover {
  fill-opacity: 1;
}
#learn-more:hover ~ .learn-more-text {
  fill: #005fa4;
}

.learn-more-text {
  fill: #fff;
  pointer-events: none;
  font-size: 14px;
  transition: all 250ms ease-in;
}

.center {
   fill: url(#brand-gradient);
}

.pointer {
  fill: #fff;
  stroke: #3b8fc0;
  stroke-width: 2;
}

.nav-copy {
  fill: #fff;
  fill-opacity: 1;
  transition: all 250ms ease-in;
}
.nav-copy.changing {
  fill-opacity: 0;
}

.service {
  cursor: pointer;
}
.service text {
  font-size: 14px;
  text-anchor: middle;
}
.service .icon-wrapper {
  transform-origin: 50% 50%;
}
.service .icon-wrapper, .service .icon-wrapper > * {
  transition: all 250ms ease-in;
}
.service circle {
  fill: url(#brand-gradient);
}
.service circle.shadow {
  fill-opacity: 0;
  filter: url(#service-shadow);
}
.service use {
  fill: #fff;
}
.service text {
  fill: #4d4d4d;
}
.service.active .icon-wrapper, .service:hover .icon-wrapper {
  transform: scale(1.05) translateY(-1px);
}
.service.active .icon-wrapper, .service.active .icon-wrapper > *, .service:hover .icon-wrapper, .service:hover .icon-wrapper > * {
  transition: all 250ms ease-out;
}
.service.active .icon-wrapper circle.shadow, .service:hover .icon-wrapper circle.shadow {
  fill-opacity: 0.4;
}
.service.active text, .service:hover text {
  fill: #005fa4;
  font-weight: bold;
}
/*---------------------------------service section---------------------------------- */
.services-section{
  font-size: 2.5rem;
  font-weight: normal;
  color: #444;
  text-align: center;
  margin: 2rem 0;
}

.wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(33% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.flip-container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	        perspective: 1000px;
}

.front,
.back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
	background-position: center;
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	text-align: center;
	min-height: 280px;
	height: auto;
	color: #fff;
	font-size: 1.5rem;
}

.back{
  background: #cedce7;
  background: -webkit-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: -o-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
}

.front:after{
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.flip-container:hover .front,
.flip-container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.flip-container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.flip-container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.flip-container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flip-container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .inner p{
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.front .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}

@media screen and (max-width: 64rem){
  .col{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem){
  .col{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem){
  .col{
    width: 100%;
    margin: 0 0 2rem 0;
  }
}

/* ================= INDUSTRY SECTION ONLY (NO GLOBAL EFFECT) ===================================== */

.idm-industry-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(90deg, #0b0b0b, #4a1208, #0b0b0b);
}

.idm-industry-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 50px 30px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.idm-industry-header {
  text-align: center;
  margin-bottom: 50px;
}

.idm-industry-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.idm-industry-subtitle {
  color: #cccccc;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== GRID ===== */

.idm-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ===== ITEM ===== */

.idm-industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #eaeaea;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.idm-industry-item:hover {
  transform: scale(1.08);
  cursor: pointer;
}

/* ===== ICON ===== */

.idm-industry-icon {
  width: 70px;
  height: 70px;
  background: #f2f2f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000000;
  transition: transform 0.3s ease;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .idm-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .idm-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .idm-industry-title {
    font-size: 24px;
  }
}
/*---------------------------------industry we serve------------------------------*/
/*-----------------------------------testimonial---------------------------------*/
/* Testimonial Section Styles */
.tsm-testimonial-section {
  display: flex;
  padding: 80px 0px;;
  min-height: 600px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  
}

.tsm-left-column {
  flex: 1;
  position: relative;
  background-image: url('../assests/images/testi2.jpeg'); /* Placeholder for blurred office image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsm-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.tsm-heading-container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
}

.tsm-heading {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.tsm-success {
  color: #333;
}

.tsm-stories {
  color: #007bff;
}

.tsm-subtitle {
  font-size: 1.2rem;
  margin: 0;
  color: #ccc;
}

.tsm-right-column {
  flex: 1;
  position: relative;
  background: url('../assests//images/testi1.jpeg');
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.tsm-testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.tsm-testimonial-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.tsm-quote-icon {
  margin-bottom: 20px;
}

.tsm-quote-icon svg {
  width: 40px;
  height: 40px;
  color: #007bff;
}

.tsm-testimonials {
  position: relative;
  overflow: hidden;
}

.tsm-testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tsm-testimonial.active {
  display: block;
  opacity: 1;
}

.tsm-quote {
  font-size: 1.5rem;
  margin: 0 0 20px 0;
  font-style: italic;
}

.tsm-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
  margin: 0;
}

.tsm-pagination {
  margin-top: 30px;
}

.tsm-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tsm-dot.active {
  background: #007bff;
}

/* Responsiveness */
@media (max-width: 768px) {
  .tsm-testimonial-section {
    flex-direction: column;
  }

  .tsm-left-column,
  .tsm-right-column {
    flex: none;
    min-height: 300px;
  }

  .tsm-heading {
    font-size: 2rem;
  }

  .tsm-subtitle {
    font-size: 1rem;
  }

  .tsm-quote {
    font-size: 1.2rem;
  }

  .tsm-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tsm-testimonial-section {
    padding: 20px;
  }

  .tsm-heading {
    font-size: 1.8rem;
  }

  .tsm-subtitle {
    font-size: 0.9rem;
  }

  .tsm-quote {
    font-size: 1rem;
  }

  .tsm-name {
    font-size: 0.9rem;
  }

  .tsm-right-column {
    padding: 20px;
  }
}
/*----------------------------testmonial end------------------------------*/
/*----------------------------why choose us styling-----------------------------*/
/* RepIndia Section Styles */
/* RepIndia Section Styles */
.rpi-cards-container {
  background: #fefefe url('../assests/images/background.jpeg') no-repeat center;
  background-size: contain;
  padding: 0px 100px;
  min-height: 400px;
}

.rpi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rpi-heading {
  text-align: left;
  margin-bottom: 50px;
}

.rpi-subtitle {
  font-size: 1rem;
  color: #333;
  margin: 0 0 10px 0;
}

.rpi-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6600; /* Orange */
  margin: 0 0 20px 0;
}

.rpi-description {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.rpi-cards-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rpi-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  width: 22%;
  margin: 20px 0;
  position: relative;
}

.rpi-card-1 { transform: translateY(0); }
.rpi-card-2 { transform: translateY(-20px); }
.rpi-card-3 { transform: translateY(20px); }
.rpi-card-4 { transform: translateY(0); }

.rpi-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 auto 15px;
}

.rpi-badge-1 { background: #007bff; } /* Blue */
.rpi-badge-2 { background: #28a745; } /* Green */
.rpi-badge-3 { background: #6f42c1; } /* Purple */
.rpi-badge-4 { background: #dc3545; } /* Red */

.rpi-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}

.rpi-card-desc {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
  .rpi-cards-container {
    justify-content: center;
    background: none;
  }

  .rpi-card {
    width: 45%;
    margin: 10px;
  }

  .rpi-card-1, .rpi-card-2, .rpi-card-3, .rpi-card-4 {
    transform: translateY(0);
  }
  
}

@media (max-width: 480px) {
  .rpi-section {
    background: #fefefe; /* Hide background on mobile */
    padding: 40px 20px;
    text-align: center;
  }

  .rpi-heading {
    text-align: center;
  }

  .rpi-title {
    font-size: 2rem;
  }

  .rpi-description {
    font-size: 1rem;
  }

  .rpi-cards-container {
    flex-direction: column;
    align-items: center;
    background: none;
  }

  .rpi-card {
    width: 100%;
    margin: 10px 0;
  }
}
/*-----------------why choose us end---------------------------*/
/*------------------- our clients section---------------------*/
/* Our Clients Section Styles */
.ocl-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.ocl-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ocl-heading {
  text-align: center;
  margin-bottom: 40px;
}

.ocl-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}

.ocl-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.ocl-carousel-row {
  margin-bottom: 20px;
  overflow: hidden;
}

.ocl-carousel-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.ocl-row-2 .ocl-carousel-track {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ocl-logo-card {
  flex: 0 0 200px;
  height: 100px;
  background: #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.ocl-logo-card img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  
}

/* Responsiveness */
@media (max-width: 768px) {
  .ocl-logo-card {
    flex: 0 0 150px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .ocl-section {
    padding: 40px 20px;
  }

  .ocl-title {
    font-size: 2rem;
  }

  .ocl-subtitle {
    font-size: 0.9rem;
  }

  .ocl-logo-card {
    flex: 0 0 120px;
    height: 60px;
    margin: 0 5px;
  }
}
/*----------------- our clients section end---------------------------*/



