body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #fafbff;
  color: #222121;
  
}


/* Topbar base styling */
.topbar {
  background-color: rgb(59, 153, 156);
  color: #fff;
  padding: 5px 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  gap: 20px;
}

/* Navigation base */
nav {
  background: rgb(248, 248, 255);
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 25px;
  flex-wrap: wrap;
}

.logo {
  height: 110px;
  margin-right: 4rem;
}

nav ul {
  display: flex;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  align-items: center;
}

nav li a {
  color: rgb(0, 151, 143);
  text-decoration: none;
  font-weight: 900;
  margin: 0;
}

nav li a:hover {
  text-decoration: underline;
  color: #8ae5f3;
}

/* Hamburger toggle hidden on desktop */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: rgb(0, 151, 143);
  font-size: 2.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.928);
  overflow: hidden;
  padding: 10px 2px;
  z-index: 9999;
  top: 100%;
  left: -10%;
  
  width: 15vw;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  transition: background 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a::after {
  content: " ▼";
  font-size: 12px;
}

.dropdown:hover > a::after {
  content: " ▲";
}

.right-btn {
  margin-left: 30px;
}

.login-btn, .apply-btn {
  background: rgb(59, 153, 156);
  color: #fff;
  border: none;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
}
.login-btn:hover, .apply-btn:hover {
  background: rgb(83, 238, 238);
}

/* Responsive styles */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    padding: 10px 15px;
    gap: 8px;
  }
  
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo {
    height: 124px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .navbar-toggle {
    display: block;
    margin-top: -100px;
    margin-right: 30px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding-left: 0;
    margin: 0;
  }

  nav ul.open {
    display: flex;
  }

  nav li a {
    font-weight: 700;
    font-size: 1.1rem;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 0;
  }

  /* Disable hover dropdown on touch devices */
  .dropdown:hover .dropdown-content {
    display: none;
  }

  .right-btn {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
  }

  .login-btn, .apply-btn {
    margin-left: -33px;
    margin-right: 166px;
    width: 50%;
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
}


.hero {

  background-image: url('employee-selection-staffing-concept-recruiting-260nw-1982179730.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-attachment: fixed;
  padding: 100px  ;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.cta-btn {
 
  background-color: rgb(59, 153, 156);
  color: #eeedeb;
  padding: 13px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.25s;
}
.cta-btn:hover { background: rgb(83, 238, 238); color: #fff; }
.features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  background: rgb(59, 153, 156);
  padding: 32px 0;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  box-sizing: border-box;
}

.feature-card {
  background: linear-gradient(120deg, #73d1d2 60%, #f7d0e2 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  padding: 24px 36px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  flex: 1 1 300px; /* Flexible width with minimum 300px */
  max-width: 230px;
  box-sizing: border-box;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .features {
    padding: 20px 10px;
    gap: 12px;
  }

  .feature-card {
    flex: 1 1 100%; /* Take full width on small screens */
    max-width: 100%;
    padding: 20px 15px;
    font-size: 1rem;
  }
}


.courses {
  padding: 44px 2%;
  background: #a3abb6;
  text-align: center;
}
.course-list {
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}
.course-list.a{
  color: #000000;
  text-decoration: none;
}


.course {
  background: linear-gradient(120deg, #bddcfa 60%, #f7d0e2 100%);
  color: #000000;
  border-radius: 18px;
  padding: 21px 40px;
  font-size: 1.12rem;
  font-weight: 500;
  min-width: 200px;
  margin: 0 6px 12px 6px;
  box-shadow: 0 2px 6px rgba(13,60,161,0.05);
}


.aboutus-main-section {
  background: #f6f9fb;
  padding: 50px 0;
}
.aboutus-content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.aboutus-image-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  min-width: 270px;
}
.aboutus-gallery-img {
  width: 340px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(45,86,148,0.08);
}
.aboutus-text-content {
  flex: 2 1 510px;
  min-width: 320px;
  background: #fff;
  padding: 26px 32px 26px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(42,76,120,0.06);
}
.aboutus-text-content h2 {
  font-family: 'Russo One', Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 2.27rem;
  color: #25365e;
  text-align: center;
  font-weight: 700;
  text-shadow:0 4px 14px #50619118 ;
}
.aboutus-text-content h4 {
  padding: 10px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #000102;
}
.aboutus-text-content p {
  padding: 5px;
  font-size: 1.09rem;
  line-height: 1.55;
  color: #00050a;
}
.aboutus-text-content ul {
  margin-top: 12px;
  padding-left: 19px;
}
.aboutus-text-content li {
  margin-bottom: 11px;
  font-size: 1.03rem;
  color: #030407;
}

/* Responsive Design */
@media (max-width: 950px) {
  .aboutus-content-wrap {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .aboutus-image-gallery {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    min-width: unset;
  }
  .aboutus-gallery-img {
    width: 160px;
    height: 110px;
  }
  .aboutus-text-content {
    padding: 20px 12px;
    min-width: unset;
  }
}
@media (max-width: 590px) {
  .aboutus-main-section {
    padding: 22px 0;
  }
  .aboutus-content-wrap {
    gap: 20px;
  }
  .aboutus-gallery-img {
    width: 90px;
    height: 60px;
    border-radius: 12px;
  }
  .aboutus-text-content h2 { font-size: 1.45rem; }
  .aboutus-text-content h4 { font-size: 1.04rem;}
  .aboutus-text-content { padding: 13px 4px;}
}

/* Base RCM Section Styles */
















@media (max-width:920px) {
  .rcmtrain-section {
    min-height: 72vh;
  }
  .rcmtrain-contentbox {
    flex-direction: column;
    gap: 28px;
    width: 98vw;
    max-width: 520px;
    border-radius: 22px;
    padding: 17px 8px;
    min-height: 390px;
  }
  .rcmtrain-img {
    width: 210px;
    height: 210px;
    border-width: 4px;
  }
  .rcmtrain-title { font-size: 2rem;}
  .rcmtrain-desc { font-size: 1.09rem; }
}

@media (max-width:540px) {
  .rcmtrain-contentbox {
    padding: 7px 2px;
    gap: 13px;
    max-width: 96vw;
  }
  .rcmtrain-img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }
  .rcmtrain-title { font-size: 1.18rem;}
  .rcmtrain-desc { font-size: 0.98rem;}
}





.courses-section {
  background: #f5fafd;
  padding: 48px 0 55px 0;
  text-align: center;
}

.courses-header {
  max-width: 920px;
  margin: 0 auto 45px auto;
  font-size: 1.35rem;
  font-weight: 500;
  color: #4b567b;
}

.courses-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.course-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px #5264b614;
  padding: 24px 26px;
  max-width: 320px;
  min-width: 290px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
   transition: transform 0.3s ease; /* Smooth transition */
}
.course-card:hover {
  transform: scale(1.02); /* Scale up by 5% on hover */
  z-index: 10; /* Optional: bring hovered card above others */
  cursor: pointer;
}
.course-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
  background: #daeafd;
}

.course-meta {
  font-size: 0.95rem;
  color: #728098;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.course-rating {
  color: #ff9800;
  font-size: 1.1rem;
  margin-bottom: 7px;
}

.course-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #12254c;
  margin: 10px 0 8px 0;
}

.course-details {
  font-size: 0.85rem;
  color: #3e506e;
  line-height: 1.6;
}

@media (max-width: 950px) {
  .courses-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .course-card {
    max-width: 98vw;
  }
}
.stats-dark-section {
  width: 100%;
  background:rgb(49, 145, 148);
  margin: 0;
  padding: 0;
}
.stats-dark-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  padding: 45px 0;
  border-radius: 0;
}
.stats-item {
  flex: 1;
  font-size: 70px;
  text-align: center;
  border-right: 1px solid #223f5b;
  padding: 0 10px;
}
.stats-item:last-child {
  border-right: none;
}
.stats-large {
  font-size: 3.2rem;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
}
.stats-label {
  margin-top: 8px;
  font-size: 1.3rem;
  color: #ff7b38;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
}
.testimonials-section {
  padding: 55px 0 28px 0;
  background: #fff;
  text-align: left;
}
.testimonials-title {
  color: #fc8019;
  font-size: 2rem;
  margin-bottom: 14px;
  font-family: inherit;
  font-weight: 700;
  margin-left: 80px;
}
.testimonials-lead {
  color: #465575;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 820px;
  margin-top: 8px;
  margin-bottom: 0;
  margin-left: 80px;
}
@media (max-width: 900px) {
  .stats-dark-bar {
    flex-direction: column;
    padding: 38px 0;
  }
  .stats-item {
    border-right: none;
    border-bottom: 1px solid #223f5b;
    padding-bottom: 18px;
    margin-bottom: 10px;
  }
  .stats-item:last-child {
    border-bottom: none;
  }
  .stats-large {
    font-size: 2.2rem;
  }
  .stats-label {
    font-size: 1.08rem;
  }
}
.testimonial-hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.testimonial-bg {
  width: 100%;
  min-height: 280px;
  background: url('testimonial-bg.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-overlay {
  width: 100%;
  height: 100%;
  background: rgba(20,41,100,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text {
  color: #fff;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 45px 10px;
}

.blog-header-section {
  background: #fff;
  padding: 55px 0 40px 0;
  text-align: center;
}
.blog-tag {
  color: blue;
  font-size: 2.22rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.blog-title {
  color: #21375b;
  font-size: 2.85rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .testimonial-text { font-size: 1.05rem; padding: 30px 6px; }
  .blog-title { font-size: 2rem; }
}
.newsletter-banner {
  padding: 60px 0 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.newsletter-bg {
  background: linear-gradient(105deg, #338bee 75%, #338bee 100%);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75vw;
  max-width: 900px;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.newsletter-bg::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  background: url('newsletter-shape.png') right center/contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  border-radius: 70px;
}
.newsletter-text {
  position: relative;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Segoe UI', Arial, sans-serif;
  z-index: 2;
  text-align: left;
  padding-left: 32px;
}

@media (max-width: 700px) {
  .newsletter-bg {
    width: 96vw;
    height: 90px;
    border-radius: 40px;
  }
  .newsletter-text {
    font-size: 1.45rem;
    padding-left: 12px;
  }
}
.footer-section {
  background: rgb(59, 153, 156);
  color: #dde7f2;
  margin-top: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 38px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 0 30px 0;
}
.footer-about {
  flex: 1.2;
  min-width: 265px;
  padding-left: 24px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
  margin-left: 15px;
}
.footer-about-text {
  font-size: 16px;
  margin-bottom: 18px;
  color: #e2eaf6;
  flex :1;
  margin-left: 15px;
  margin-right: 60px;
}
.footer-social {
  display: flex;
  gap: 13px;
  margin-left: 15px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-image: url('footerimage.jpeg');
  padding: 6px;
  transition: background 0.15s;
}
.footer-social a img:hover {
  background: #358ef3;
}
.footer-columns {
  display: flex;
  flex: 3;
  gap: 42px;
  min-width: 530px;
  flex-wrap: wrap;
  
}
.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 155px;
  max-width: 210px;
  margin-left: 10px;
  justify-content:start;
  align-items: start;
}

.footer-col-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;

  
  
}
.footer-col a {
  color: #dde7f2;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  transition: color 0.13s;
}
.footer-col a:hover {
  color: #46aef2;
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;

  background-color:  rgb(91, 164, 161);
  color: #fbfdff;
  font-size: 1rem;
  letter-spacing: 0.015em;
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    padding: 40px 10px 26px 10px;
  }
  .footer-columns {
    flex-wrap: wrap;
    gap: 28px;
    min-width: 0;
    max-width: 100vw;
  }
  .footer-about {
    padding-left: 0;
  }
  .footer-logo {
    width: 120px;
  }
}
 
 
.staffing-hero{
  position: relative;
  background-image: url(stafffing\ banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;          /* Cover entire area */
  background-position: center center; /* Center the image */
  width: 100vw;                    /* Full viewport width */
  height: 100vh;                   /* Full viewport height */
  padding: 0;                     /* Remove padding for full screen */
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;                  /* Flex for vertical centering */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;                   /* Text color visible on background */
  text-shadow: 0 2px 6px rgba(0,0,0,0.7); /* Text shadow for contrast */
}

/* Mobile responsive tweaks */
@media (max-width: 768px) {
  .staffing-hero {
    height: 26vh;               /* Slightly less height on mobile for better fit */
    padding: 15px 20px;         /* Some padding but minimal */
    color: white;
  }
}

@media (max-width: 400px) {
  .staffing-hero {
    height: 35vh;
    padding: 25px 10px 20px 10px;
  }
}













.staffing-hero-inner {
  max-width: 650px;
  margin: 0 auto;
}
.staffing-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #00106d;
  margin-bottom: 12px;
}
.staffing-highlight {
  color: #050505;
}
.staffing-hero p {
  color: #020202;
  font-size: 1.23rem;
  margin: 0;
}

.staffing-features {
  background: #fff;
  padding: 65px 0 75px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 34px;
}
.features-header h2 {
  font-size: 2.1rem;
  color: #1a2438;
  font-weight: 800;
  margin-bottom: 8px;
}
.features-header p {
  color: #576c95;
  font-size: 1.18rem;
}
.features-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: #f7fafd;
  border: 1px solid #eaf1fa;
  border-radius: 15px;
  box-shadow: 0 1px 7px #ddefff15;
  padding: 44px 30px 30px 30px;
  text-align: center;
  transition: box-shadow 0.18s;
}
.feature-icon {
  font-size: 2.4rem;
  color: #fc8019;
  margin-bottom: 13px;
  display: block;
}
.feature-card h3 {
  margin: 0 0 7px 0;
  color: #263248;
  font-size: 1.15rem;
  font-weight: 700;
}
.feature-card p {
  color: #40506e;
  font-size: 1.02rem;
  margin: 0;
}
.feature-card:hover {
  box-shadow: 0 6px 16px #338bee19;
}

.staffing-cta {
  background: #7a8592;
  color: #fff;
  padding: 64px 10px;
  text-align: center;
}
.staffing-cta h2 {
  font-size: 2rem;
  margin-bottom: 13px;
}
.staffing-cta p {
  margin-bottom: 22px;
  font-size: 1.18rem;
}
.staffing-btn {
  background: #218686;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  padding: 13px 45px;
  font-size: 1.15rem;
  font-weight: 700;
  transition: background .13s, color .13s;
  display: inline-block;
  box-shadow: 0 1px 7px #b3daf48a;
}
.staffing-btn:hover {
  background: #aab8b9;
  color: #fff;
}

@media (max-width: 950px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 650px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 34px 16px 22px 16px;
  }
  .staffing-hero h1 { font-size: 1.6rem; }
}
 
    .soon-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 30px #b3daf413;
      padding: 54px 34px 38px 34px;
      max-width: 390px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .soon-icon {
      font-size: 3.6rem;
      color: #338bee;
      margin-bottom: 14px;
    }
    .soon-title {
      font-size: 2.3rem;
      font-weight: 900;
      color: #1c2647;
      margin: 0 0 12px 0;
    }
    .soon-message {
      font-size: 1.18rem;
      color: #6677a0;
      margin-bottom: 30px;
      line-height: 1.5;
    }
    .soon-btn {
      padding: 12px 33px;
      background: #338bee;
      color: #fff;
      font-size: 1.11rem;
      font-weight: 700;
      border-radius: 9px;
      text-decoration: none;
      box-shadow: 0 1px 7px #b3daf44b;
      transition: background .14s;
      margin-top: 14px;
      display: inline-block;
    }
    .soon-btn:hover { background: #1560a4; }
    @media (max-width: 750px) {
      .soon-card { padding: 40px 14px 26px 14px; }
      .soon-title { font-size: 1.4rem; }
    }
  


    .carousel-item img {
        height: 550px;
        width: 550px;
        object-fit: cover;
        /* object-position: center; */
      

    }
  
      
 
 .carousel-caption h1{
  color: rgb(5, 5, 5);
   margin-bottom: 30px;
 }
 .carousel-caption p{
  color: rgb(10, 10, 10);
   margin-bottom: 30px;
 }
 .carousel-caption{
 margin-bottom: 80px;
 width: 70%;
 }

.carousel-indicators button{
  padding-top: 100rem;
  background-color:rgb(255, 255, 255) !important;
  border-radius: 20%;
  padding-bottom: 20px;
 }



 .carousel-control-prev-icon{
  background-color:rgb(0, 0, 0);
  border-radius: 50%;
  font-size: 0.85rem;
  padding: 10px;
   margin-left: -7rem;
 }
 .carousel-control-next-icon{
  background-color:black;
  border-radius: 50%;
  font-size: 0.85rem;
  margin-right: -7rem;
 }

 
/* Tablets (992px and below) */
@media (max-width: 992px) {
  .carousel-item img {
    height: 400px;
  }

  .carousel-caption {
    width: 80%;
    margin-bottom: 50px;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-control-prev-icon {
    margin-left: -3rem;
  }

  .carousel-control-next-icon {
    margin-right: -3rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .carousel-item img {
    height: 320px;
  }

  .carousel-caption {
    width: 90%;
    margin-bottom: 30px;
    text-align: center;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 8px;
    margin: 0;
  }
    .carousel-indicators{
      margin-bottom: -7px;
    }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
  .carousel-item img {
    height: 135px;
  }

  .carousel-caption {
    width: 95%;
    margin-bottom: 20px;
  }

  .carousel-caption h1 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.8rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    display: none; /* hide arrows for very small screens */
  }
}

 body {
    font-family: Arial, sans-serif;
    background-color: #060606;
    margin: 0;
    padding: 0;
  }

  /* --- Testimonial Section --- */
  section {
    padding: 50px 20px;
    background-color:rgb(255, 255, 255);
  }

  section h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2em;
  }

  .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .testimonial-card {
    background: #fefefe;
    width: 300px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #2e27ae;
  }

  .testimonial-card h3 {
    color: #5e7ce1;
    margin-bottom: 8px;
    font-size: 1.2em;
  }

  .testimonial-card .rating {
    color: #f1c40f;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
  }

  @media (max-width: 768px) {
    .testimonial-card {
      width: 90%;
    }
  } 



  .aboutus-glass-section {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(110deg,#d6eafe 0%, #efe0dc 100%);
  overflow: hidden;
  padding: 0;
}
.aboutus-glass-bgdecor {
  position: absolute;
  left: -10vw; top: -60px;
  background: radial-gradient(circle at 40% 33%, #9dd6fa77 35%, transparent 75%),
              radial-gradient(circle at 80% 80%, #ffeb3b44 30%, transparent 65%);
  width: 110vw;
  height: 110vh;
  z-index: 1;
  filter: blur(9px);
  pointer-events: none;
}
.aboutus-glass-card {
  z-index: 2;
  width: 98vw;
  max-width: 1100px;
  display: flex;
  gap: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 45px 42px;
  background: rgba(255,255,255,0.72);
  border-radius: 45px;
  border: 3px solid;
  border-image: linear-gradient(120deg,#63a4ff 40%,#e4d0c0 90%) 1;
  box-shadow: 0 12px 52px 8px #4975ff19;
  backdrop-filter: blur(11px);
  position: relative;
}
.aboutus-glass-imgbox {
  flex: 1 1 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.aboutus-glass-img {
  width: 350px; height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 9px solid #ecf5ff;
  box-shadow: 0 10px 50px #3974e91b;
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
  background: #eff9ff;
}
.aboutus-glass-imgbox:hover .aboutus-glass-img {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: 0 22px 90px rgba(45,114,242,0.21);
  border-color: #36d4ff;
}

.aboutus-glass-floaticon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.85;
  background: #fffafbaa;
  padding: 6px 15px;
  border-radius: 17px;
  box-shadow: 0 2px 13px #45a4ff33;
  user-select: none;
  pointer-events: none;
}

.aboutus-glass-icon1 { left:-18px; top: 16%; }
.aboutus-glass-icon2 { right: -10px; top: 68%; }
.aboutus-glass-icon3 { left: 105px; bottom: -25px; font-size: 2rem; }

.aboutus-glass-content {
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.aboutus-glass-title {
  font-size: 39px;
  color: #0d0e0e;
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 1.12;
  letter-spacing: 1px;
  position: relative;
  margin-left: 40px;
  padding-top: 60px;
}
.aboutus-glass-highlight {
  display: inline-block;
  font-size: 29px;
  padding: 5px 15px;
  border-radius: 11px 7px 23px 7px;
  color: #0e0e0e;
  margin-bottom: 7px;
  font-weight: 600;
  text-align: center;

  
  
}
.aboutus-glass-lead {
  color: #080c0f;
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.6;
  min-height: 76px;
  margin-left: 40px;
}

.aboutus-glass-extra {
  display: inline;
  border-radius: 8px;
  padding: 3px 7px;
  size: 16px;
  font-weight: 400;
 
 
}

.aboutus-glass-btn {
  background: linear-gradient(90deg,#4db7ff 43%,#6bffe7 90%);
  color: #0b243b;
  border-radius: 19px 3px 19px 3px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.1px;
  padding: 13px 31px;
  box-shadow: 0 2px 16px #099bff21;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.17s;
  margin-left: 163px;
}
.aboutus-glass-btn:hover {
  background: linear-gradient(100deg,#38acf7 35%,#a3ffe7 90%);
  color: #0c5192;
  box-shadow: 0 6px 30px #1880ce21;
}

/* Responsive */
@media (max-width:1010px){
  .aboutus-glass-card { flex-direction: column; gap:32px; padding:22px 6px; min-width: 90vw;}
  .aboutus-glass-img { width:130px; height:130px; border-width:5px;}
  .aboutus-glass-title { font-size:1.42rem;}
  .aboutus-glass-content {gap:12px;}
}
@media (max-width:540px){
  .aboutus-glass-section { min-height:420px;}
  .aboutus-glass-img { width:78px; height:78px; border-width:2.3px;}
  .aboutus-glass-title { font-size:1.18rem;}
  .aboutus-glass-lead { font-size:0.91rem;}
}








/*full stack css*/

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f8fafc;
  color: #191c2b;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Russo One', 'Segoe UI', Arial, sans-serif;
  margin: 0 0 18px 0;
}

h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 3px 16px #22262644;
}
h2 {
  font-size: 2.1rem;
  color: #2d375e;
}
h3 {
  color: #42f7df;
  font-size: 1.14rem;
}


body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #eefdff;
  color: #242e3b;
  margin: 0;
  padding: 0;
}

/* Hero layout */
.mobtest-hero {
  background: #eafdff;
  padding: 62px 0 44px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobtest-hero-inner {
  display: flex;
  max-width: 1050px;
  margin: 0 auto;
  align-items: center;
  gap: 54px;
  padding: 0 20px;
  flex-wrap: wrap;
  width: 100%;
}
.mobtest-hero-imgbox {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobtest-hero-img {
  width: 310px;
  border-radius: 24px;
  box-shadow: 0 4px 30px #81d4fa66, 0 1px 8px #0001;
}
.mobtest-hero-content {
  flex: 2 1 330px;
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px 32px 36px;
  box-shadow: 0 8px 32px #1ca0d80a;
}

.mobtest-hero-content h1 {
  font-family: 'Russo One', 'Segoe UI', Arial, sans-serif;
  color: #2596f7;
  font-size: 2.1rem;
  margin: 0 0 18px 0;
  letter-spacing: 1.5px;
}
.mobtest-hero-content ul {
  color: #232b44;
  font-size: 1.06rem;
  margin-bottom: 18px;
  padding-left: 19px;
}
.mobtest-hero-content ul li b {
  color: #2256b3;
}
.mobtest-hero-content p {
  font-size: 1.09rem;
  color: #222;
  margin-top: 10px;
}

/* Responsive */
@media (max-width:900px) {
  .mobtest-hero-inner {
    flex-direction: column;
    gap: 26px;
    padding: 0 9px;
    align-items: stretch;
  }
  .mobtest-hero-img {
    width: 90vw;
    max-width: 330px;
  }
  .mobtest-hero-content {
    padding: 21px 11px;
  }
}

@media (max-width:540px) {
  .mobtest-hero {
    padding: 19px 0 7px 0;
  }
  .mobtest-hero-img {
    width: 97vw;
    min-width: 70vw;
  }
  .mobtest-hero-content h1 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .mobtest-hero-content {
    padding: 13px 3vw;
  }
}





 .apply-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px #338bee18;
      padding: 44px 30px 36px 30px;
      max-width: 410px;
      width: 95vw;
      
      margin: 30px 0;
    }
    .apply-title {
      font-size: 2.1rem;
      color: #21315e;
      font-weight: 900;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }
    .apply-desc {
      color: #687bad;
      margin-bottom: 23px;
      font-size: 1.09rem;
    }
    .apply-form {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 4px;
    }
    .apply-form label {
      text-align: left;
      font-size: 1rem;
      color: #384a62;
      margin-bottom: 2px;
      font-weight: 600;
    }
    .apply-form input,
    .apply-form select,
    .apply-form textarea {
      padding: 10px 10px;
      font-size: 1.07rem;
      border-radius: 7px;
      border: 1.2px solid #c7e3ff;
      background: #f8fbff;
      outline: none;
      width: 100%;
      transition: border .15s;
    }
    .apply-form input:focus,
    .apply-form select:focus,
    .apply-form textarea:focus {
      border-color:rgb(59, 153, 156);
    }
     
    /* /*automation  */
    body {margin:0; font-family:'Montserrat', Arial, sans-serif; background:#fff;}
.info-section {
  display: flex; flex-wrap:wrap; align-items:center; justify-content:space-between; max-width:1180px; margin:0 auto; padding:48px 16px;
}
.info-image-col {
  flex: 0.95 1 340px; min-width:270px; text-align:left; z-index:5; display: flex; flex-direction:column; align-items:center;
}
.img-badge-container {
  position:relative; display:inline-block; width:100%; min-width:240px; max-width:440px;
}
.info-main-img {
  width:100%; max-width:440px; border-radius:16px; object-fit:cover; z-index:1;
  height: 370px;
  margin-top:8px; box-shadow:0 6px 24px #0002; background:#fff;
  animation:slide-in-left 1.12s cubic-bezier(.35,2,.29,.9);
  display:block;
}
@keyframes slide-in-left {
  from { transform: translateX(-120px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.badge-card-on-img {
  position:absolute;
  left:28px; bottom:-42px; /* Position to tightly overlap the bottom edge of image */
  background:#102e4e;
  color:#fff;
  padding:22px 58px 13px 32px;
  border-radius:7px;
  font-size:1.16rem;
  display:flex; align-items:center; gap:16px;
  box-shadow:0 2px 18px #0002;
  z-index:22;
}
.badge-icon {
  width:45px; height:45px; background:#1c9a96; border-radius:100px;
  display:flex; align-items:center; justify-content:center; font-size:2.1em;
}
.badge-data {
  display:flex; flex-direction:column; align-items:flex-start; line-height:1.1;
}
.badge-data .count {font-size:2.17em; font-weight:800; margin-bottom:5px;}
.badge-data .desc {font-size:1em;}
.info-section-right {
  flex: 1.22 1 390px; min-width:290px; padding-left:32px; z-index:5;
}
.sub-title {
  letter-spacing: 2px; color:#1c9a96; font-weight:700; font-size:1.19em;
  margin-bottom:14px; text-transform:uppercase;
}
.main-head {
  font-size: 2.68em; font-weight:900; margin-top:0; margin-bottom:17px;
  letter-spacing: 1px; color:#171717;
}
.main-text {
  font-size:1.07em; color:#526275; line-height:1.7; margin-bottom:21px;
}
.call-btn {
  margin-top:35px; background:#24b049; color:#fff; border:none; border-radius:7px;
  font-weight:700; padding:11px 38px; cursor:pointer; font-size:1.19em;
  box-shadow:0 3px 10px #24b04944; display:inline-flex; align-items:center; gap:11px;
  transition:background 0.18s;
}
.call-btn:hover {background:#17982f;}
@media(max-width:900px){
  .info-section{flex-direction:column; padding:25px 2vw;}
  .info-section-right{padding-left:0;}
  .info-main-img{max-width:98vw;}
  .img-badge-container{max-width:350px;}
  .badge-card-on-img{padding:15px 18vw 9px 13px; left:12vw; right:12vw; bottom:-32px;}
}
@media(max-width:600px){
  .main-head{font-size:1.29em;}
  .img-badge-container{max-width:98vw;}
  .badge-card-on-img{padding:7px 12vw 5px 7px; font-size:1em; left:5vw; bottom:-18px;}
  .info-main-img{max-width:80vw;}
  .badge-icon{width:34px;height:34px;font-size:1.2em;}
}

body {font-family:"Montserrat",Arial,sans-serif; background:#f6f6f6; margin:0;}
.training-highlights {width:100%;background:#f6f6f6;padding:40px 0 70px 0;}
.highlights-header {text-align:center;}
.highlight-subhead {
  color:;font-weight:#1c9a96;letter-spacing:2px;
  text-transform:uppercase;font-size:1.13em;margin-bottom:12px;
}
.highlight-main {
  font-size:2.9em;font-family:'Montserrat',Arial,sans-serif;
  font-weight:900;letter-spacing:2px;margin:0 0 38px 0;line-height:1.18;
  color:#191919;
}
.highlights-cards {
  display:flex;gap:32px;justify-content:center; flex-wrap:wrap;
}
.highlight-card {
  background:#fff;
  border-radius:13px;
  box-shadow:0 4px 28px #0001;
  padding:20px 16px 26px 16px;
  max-width:350px;
  min-width:240px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:32px;
  position:relative;
}
.card-icon-title {
  display:flex;align-items:center;justify-content:center;gap:13px;margin-bottom:12px;
}
.highlight-icon {
  width:48px;min-width:44px;height:48px;object-fit:contain;
}
.card-title {
  font-size:1.32em;
  font-weight:700;
  color:#232425;
  letter-spacing:1px;
  font-family:'Montserrat',Arial,sans-serif;
}
.card-img {
  width:100%;border-radius:13px;object-fit:cover;
  max-height:172px;
  margin:0 0 12px 0;
  box-shadow:0 2px 12px #0001;
}
.card-desc {
  margin-top:3px;
  color:#586273;
  font-size:1.09em;
  text-align:left;
  font-weight:400;
  line-height:1.7;
}

/* Responsive Design */
@media (max-width:1100px){
  .highlights-cards {gap:20px;}
  .highlight-main {font-size:2.1em;}
}
@media (max-width:800px){
  .highlights-cards {flex-direction:column;align-items:center;}
  .highlight-card {max-width:95vw;}
}
@media (max-width:560px){
  .highlights-header {padding-left:8px;}
  .highlight-main{font-size:1.08em;}
  .highlight-card{min-width:90vw;padding:9px 4vw;}
  .card-img{max-height:120px;}
}

body { font-family:'Montserrat',Arial,sans-serif; background:#f6f6f6; margin:0;}
.why-choose-section {
  width:100%; padding:44px 0 70px 0; background:#fff; position:relative; z-index:1;
}
.choose-header { text-align:center; margin-bottom:9px; }
.choose-subhead {
  color:#1c9a96; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  font-size:1.09em; margin-bottom:10px;
}
.choose-title {
  font-size:2.5em; font-family:'Montserrat',Arial,sans-serif; font-weight:900;
  letter-spacing:2px; margin:0 0 32px 0; line-height:1.17; color:#212121;
}
.choose-cards-row {
  display:flex; flex-wrap:nowrap; gap:26px; justify-content:center; max-width:1120px; margin:0 auto 18px auto;
}
.choose-card {
  background:#fff;
  border-radius:13px;
  box-shadow:0 2px 28px #0001;
  padding:28px 22px 23px 22px;
  max-width:340px;
  min-width:220px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-bottom:10px;
  position:relative;
  opacity:0;
  z-index:10;
}
.choose-icon {
  font-size:2.15em;
  margin-bottom:9px;
}
.choose-card-title {
  font-size:1.18em;
  font-weight:700;
  color:#282828;
  margin-bottom:8px;
  letter-spacing:0.7px;
}
.choose-card-text {
  font-size:1.09em;
  color:#5c6670;
  line-height:1.65;
}

@media(max-width:1100px){
  .choose-title{font-size:1.6em;}
  .choose-cards-row{gap:13px;}
}
@media(max-width:850px) {
  .choose-cards-row{flex-direction:column;align-items:center;}
  .choose-card{max-width:96vw;margin-bottom:15px;}
}

/* Animation classes - slide from each direction */
.slide-left {animation:slideInLeft 1.04s cubic-bezier(.31,1.15,.46,.87) forwards;}
.slide-right {animation:slideInRight 1.15s cubic-bezier(.31,1.10,.46,.92) forwards;}
.slide-top {animation:slideInTop 1.09s cubic-bezier(.31,1.15,.46,.87) forwards;}
.slide-bottom {animation:slideInBottom 1.12s cubic-bezier(.31,1.10,.46,.93) forwards;}
@keyframes slideInLeft {
  from { transform:translateX(-90px); opacity:0; }
  to { transform:translateX(0); opacity:1; }
}
@keyframes slideInRight {
  from { transform:translateX(110px); opacity:0; }
  to { transform:translateX(0); opacity:1;}
}
@keyframes slideInTop {
  from { transform:translateY(-70px); opacity:0; }
  to { transform:translateY(0); opacity:1;}
}
@keyframes slideInBottom {
  from { transform:translateY(70px); opacity:0; }
  to { transform:translateY(0); opacity:1;}
}


body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fafafb;
  margin: 0;
}

.benefits-section {
  background:#1c9a96;
  padding: 44px 0 53px 0;
  text-align: center;
}

.benefits-header {
  margin-bottom: 30px;
}

.benefits-prehead {
  color: #ececec;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.06em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.benefits-title {
  color: #fff;
  font-size: 2.2em;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  margin: 0 0 32px 0;
  line-height: 1.19;
}

.benefits-card-rows{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-card {
  background: #fff;
  color: #191919;
  box-shadow: 0 8px 18px #0001;
  border-radius: 6px;
  font-size: 1.15em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  min-width: 140px;
  max-width: 200px;
  padding: 24px 15px 19px 15px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.8px;
  transition: box-shadow 0.18s, transform 0.27s;
}
.benefit-card:hover {
  box-shadow: 0 18px 28px #0002;
  transform: translateY(-7px) scale(1.035);
}

@media(max-width:900px){
  .benefits-title{font-size:1.25em;}
  .benefits-card-rows{gap:16px;}
}
@media(max-width:650px){
  .benefits-card-rows{flex-direction:column;align-items:center;}
  .benefit-card{min-width:70vw;max-width:97vw;}
}

.benefits-bottom-img {
  width:100%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-bottom-img img {
  margin-top: 0;
  width: 100vw;
  max-height: 240px;
  object-fit: cover;
  display:block;
}


body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f6f6f6;
  margin: 0;
}

.benefits-section {
  width: 100%;
  padding: 43px 0 70px 0;
  background: #f6f6f6;
}

.benefits-header {
  text-align: center;
  margin-bottom: 24px;
}

.benefits-prehead {
  color: #1c9a96;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.benefits-title {
  font-size: 2.4em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #191919;
  margin: 0 0 22px 0;
  line-height: 1.18;
}

.benefits-card-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card {
  background: #1c9a96;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px #0001;
  min-width: 220px;
  max-width: 260px;
  width: 100%;
  padding: 22px 20px 19px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.1s cubic-bezier(.31,1.1,.46,.87) forwards;
}
.benefit-card .card-title {
  font-size: 1.12em;
  font-weight: 700;
  margin-bottom: 9px;
}
.benefit-card .card-desc {
  font-size: 1.01em;
  line-height: 1.69;
  color: #fff;
  font-weight: 400;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(60px);}
  to {opacity:1; transform:translateY(0);}
}

@media (max-width:900px){
  .benefits-title{font-size:1.2em;}
  .benefits-card-row{gap:13px;}
}
@media (max-width:650px){
  .benefits-card-row{flex-direction:column;align-items:center;}
  .benefit-card{min-width:80vw; max-width:97vw;}
}


/*regression*/
body {
  font-family:'Montserrat',Arial,sans-serif;
  background:#fafafb;
  margin:0;
}
.regression-section {
  width:100%;
  padding:44px 0 70px 0;
  background:#fff;
  text-align:center;
}
.regression-title {
  font-size:2.3em;
  font-family:'Montserrat',Arial,sans-serif;
  font-weight:900;
  letter-spacing:2px;
  margin:0 0 28px 0;
  color:#191919;
}
.regression-cards-row {
  display:flex;
  flex-wrap:nowrap;
  gap:26px;
  justify-content:center;
  max-width:1200px;
  margin:0 auto 18px auto;
}
.regression-card {
  background:#fff;
  border-radius:11px;
  box-shadow:0 4px 24px #0001;
  padding:26px 20px 19px 22px;
  max-width:350px;
  min-width:230px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-bottom:10px;
  position:relative;
  opacity:0;
  z-index:10;
}
.card-icon {
  font-size:2.1em;
  margin-bottom:9px;
}
.card-card-title {
  font-size:1.11em;
  font-weight:700;
  color:#222;
  margin-bottom:8px;
  letter-spacing:0.8px;
}
.card-desc {
  font-size:1.07em;
  font-weight:400;
  color:#5c6670;
  line-height:1.65;
  text-align:left;
}

/* Animation classes - slide from each direction */
.slide-left {animation:slideInLeft 1.04s cubic-bezier(.31,1.15,.46,.87) forwards;}
.slide-right {animation:slideInRight 1.15s cubic-bezier(.31,1.10,.46,.92) forwards;}
.slide-top {animation:slideInTop 1.09s cubic-bezier(.31,1.15,.46,.87) forwards;}
.slide-bottom {animation:slideInBottom 1.12s cubic-bezier(.31,1.10,.46,.93) forwards;}
@keyframes slideInLeft {
  from { transform:translateX(-90px); opacity:0; }
  to { transform:translateX(0); opacity:1; }
}
@keyframes slideInRight {
  from { transform:translateX(110px); opacity:0; }
  to { transform:translateX(0); opacity:1;}
}
@keyframes slideInTop {
  from { transform:translateY(-70px); opacity:0; }
  to { transform:translateY(0); opacity:1;}
}
@keyframes slideInBottom {
  from { transform:translateY(70px); opacity:0; }
  to { transform:translateY(0); opacity:1;}
}

@media(max-width:1100px){
  .regression-title{font-size:1.25em;}
  .regression-cards-row{gap:13px;}
}
@media(max-width:900px){
  .regression-cards-row{flex-direction:column;align-items:center;}
  .regression-card{max-width:96vw;margin-bottom:16px;}
}



/*cloud*/
body { 
  font-family:'Montserrat',Arial,sans-serif; background:#f6f6f6; margin:0;
}
.intro-cloud-section {
  width:100%;padding:44px 0 45px 0; background:#fff;
}
.intro-cloud-inner {
  display:flex; justify-content:center; align-items:center; gap:60px;
  max-width:1240px; margin:0 auto; flex-wrap:wrap;
}
.intro-image-col {
  position:relative; flex-basis:410px; flex-shrink:0; display:flex; flex-direction:column; align-items:center; min-width:250px;
}
.img-abs-bg {
  position:absolute;left:12px;top:15px;z-index:0;width:94%;height:210px;opacity:0.17;
}
.intro-main-img {
  width:330px; max-width:38vw; border-radius:7px;
  object-fit:cover; z-index:1; margin-top:0;
  background:#fff;
  box-shadow: 0 6px 16px #0002;
  position:relative;
}
.intro-badge {
  position:absolute; left:18px; bottom:6px; background:#183a5b;
  color:#fff; border-radius:7px; box-shadow:0 2px 16px #0002;
  padding:20px 30px 15px 22px; display:flex; align-items:center;gap:15px;
  min-width:210px; z-index:2;
}
.badge-icon {
  font-size:2.3em;background:#fdb845;width:45px;height:45px;display:flex;justify-content:center;align-items:center;border-radius:50%;
}
.badge-data {
  display:flex; flex-direction:column; align-items:flex-start;line-height:1.13;
}
.badge-count {font-size:2.15em;font-weight:800;}
.badge-label{font-size:1.02em;}
.intro-text-col {
  flex:1;min-width:260px;max-width:560px;padding-left:0;margin-top:0;
  display:flex;flex-direction:column;justify-content:center;
}
.intro-prehead {
  color:#e7a03c;font-weight:700;letter-spacing:2px;font-size:1.11em;text-transform:uppercase;margin-bottom:13px;
}
.intro-title {
  font-size:2.1em;font-weight:900;margin:0 0 18px 0;letter-spacing:1px;color:#171717; font-family:'Montserrat',Arial,sans-serif;
}
.intro-desc {
  font-size:1.12em;color:#526275;line-height:1.7;
}

/* Animations */
.slide-left {animation:slideInLeft 1.19s cubic-bezier(.31,1.2,.46,.95) forwards;}
.slide-right {animation:slideInRight 1.22s cubic-bezier(.31,1.04,.46,.87) forwards;}
@keyframes slideInLeft {
  from { transform:translateX(-110px); opacity:0; }
  to { transform:translateX(0); opacity:1; }
}
@keyframes slideInRight {
  from { transform:translateX(110px); opacity:0; }
  to { transform:translateX(0); opacity:1; }
}
.intro-image-col, .intro-text-col { opacity:0; }
/* On page load, JS will add 'animated' class to trigger animation */
.intro-image-col.animated, .intro-text-col.animated { opacity:1; }

/* Responsive */
@media(max-width:950px){
  .intro-cloud-inner{gap:24px;}
  .intro-title{font-size:1.23em;}
  .intro-main-img{width:69vw;max-width:300px;}
}
@media(max-width:720px){
  .intro-cloud-inner{flex-direction:column;align-items:center;}
  .intro-image-col, .intro-text-col {max-width:97vw;width:100%;align-items:center;}
  .intro-badge{left:5%;right:5%;min-width:120px;}
  .intro-main-img{width:87vw;}
}




/* client css */
clients-section {
      padding: 44px 0 38px 0;
      text-align: center;
      background: #fff;
      overflow-x: hidden;
      margin: 50px;
    }
    .clients-title {
      font-size: 2em;
      font-weight: 500;
      color: #222;
     text-align: center;
      margin-bottom: 32px;
      letter-spacing: 1.2px;
    
    }
    .slider-viewport {
      width: 100vw;
      overflow: hidden;
      margin: 0 auto 18px auto;
      position: relative;
    }
    .clients-logos-track {
      display: flex;
      align-items: center;
      gap: 36px;
      
      width: max-content;
      animation: logo-scroll-ltr 60s linear infinite;
    }
    .clients-logos-track.reverse {
      animation: logo-scroll-rtl 60s linear infinite;
    }
    .client-logo {
      flex: 0 0 160px;
      width: 160px;
      max-width: 18vw;
      min-width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 7px;
      box-shadow: 0 0 7px #b7b7b72a;
     
    }
    .client-logo img {
      max-width: 100%;
      max-height: 65px;
      object-fit: contain;
      display: block;
    }

    /* Animation for left to right (slides left) */
    @keyframes logo-scroll-ltr {
      0% { transform: translateX(0);}
      100% { transform: translateX(-50%);}
    }
    /* Animation for right to left (slides right) */
    @keyframes logo-scroll-rtl {
      0% { transform: translateX(-50%);}
      100% { transform: translateX(0);}
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .client-logo { flex-basis: 110px; width:110px; }
      .clients-logos-track { gap: 18px; }
    }
    @media (max-width: 700px) {
      .client-logo { flex-basis: 60px; width: 58px; min-width: 36px; max-width: 90px; height: 39px;}
      .client-logo img {max-height: 28px;}
      .clients-title { font-size: 1.1em;}
      .clients-logos-track, .clients-logos-track.reverse {gap: 7px;}
      .slider-viewport { width: 100vw;}
    }
/* client css */

/* our cofounder css */
