@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Colors */
  --color-primary: #1a98ff;
  --color-black: #000000;
  --color-white: #fff;
  --color-gray: #777;
  --color-border: #d0d0d0;
  --color-text-gray: #bfc7cc;
  --color-text-light-gray: #98a2a8;

  /* Backgrounds */
  --bg-primary: #1a98ff;
  --bg-black: #000000;
  --bg-white: #ffffff;
  --bg-gray: #777777;
  --bg-light-bg: #f8f9fa;
  --bg-secondary-light: #e6e6e6;
  --bg-dark-bg: #070707;
}

/* ---------------------------------- */
/* 2. Base & Typography               */
/* ---------------------------------- */

/* Base Reset & Font */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-white);
  font-family: 'Poppins', sans-serif;
  ascent-override: 90%;
  descent-override: 20%;
  line-gap-override: 0%;
  size-adjust: 100%;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
}

h2,
#Collaboration-ai h2,
#expertise h2,
#about h2 {
  font-size: clamp(24px, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0;
}

section h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0;
}

.link-text {
  font-size: 16px;
  color: #1b98ff;
  font-weight: 495;
  text-decoration: none;
}

p,
#Custom-code p,
#case-studies p,
#Training p,
#ProductLaunch p,
#Collaboration p,
#expertise p,
#about .about-info-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-black) !important;
}

#ProductLaunch p {
  margin-bottom: 25px !important;
}

#ProductLaunch p {
  max-width: 1000px;
}

@media (max-width: 1399px) {
  h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  p,
  #Custom-code p,
  #case-studies p,
  #Training p,
  #ProductLaunch p,
  #Collaboration p,
  #expertise p,
  #about .about-info-content p {
    font-size: 16px;
  }

  .section-label {
    padding: 7px 16px !important;
    font-size: 16px !important;
  }

  section h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0;
  }

  .ccs-title {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .slide-caption p {
    margin: 0;
    font-size: 17px !important;
    line-height: 24px !important;
  }

  .online-training-bg .call-btn,
  .CTA-section .call-btn {
    font-size: 18px !important;
  }

  .faq-question,
  .online-training-bg .accordion-button {
    font-size: 18px !important;
  }

  .mid-banner .Mid-Banner-info {
    font-size: 23px !important;
    font-weight: 500 !important;
  }

  a.btn,
  .btn,
  .btn-contact,
  .btn-call-action {
    padding: 9px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 17px;
  }

  #ProductLaunch p {
    max-width: 100%;
  }
}

/* ---------------------------------- */
/* 3. Utility Classes (Buttons)       */
/* ---------------------------------- */
.btn {
    padding: 10px 16px;
    border: 1px solid var(--color-gray);
    border-radius: 30px;
    background-color: var(--bg-white);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-black);
}

    button.btn:hover,
    .btn:hover {
        background: var(--bg-primary);
        color: var(--color-white);
        border: 1px solid var(--color-primary);
    }

.btn-contact {
    padding: 9px 16px;
    border: none;
    border-radius: 50px;
    background: var(--bg-light-bg);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-call-action:hover,
    .btn-contact:hover {
        /* Visual */
        background: var(--bg-primary);
        color: var(--color-white);
    }

.btn-call-action {
    /* Box Model */
    padding: 10px 16px;
    border: 1px solid var(--color-gray);
    border-radius: 30px;
    /* Visual */
    background-color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-black);
}

.btn-outline-primary:hover {
    /* Visual */
    background-color: var(--bg-white);
    border: 1px solid var(--color-gray);
}


.linkedin-btn {
  width: 49px;
  height: 49px;
  margin-left: 3px;
  border-radius: 30px;
  background-color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s;
}

/* ---------------------------------- */
/* 4. Navbar & Navigation             */
/* ---------------------------------- */

#mainNavbar {
  padding: 4px 0;
  border: 1px solid var(--color-border);
  background-color: var(--bg-white);
  transition: all 0.4s ease;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  margin-right: 8px;
  max-width: 131px;
}

.navbar-brand span {
  margin-top: -4px;
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  transition: color 0.3s;
  padding: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}
.navbar .nav-link.active {
  color: var(--color-primary)!important; 
  font-weight: 500;
  position: relative;
}

/* Scroll Effect */
.navbar.scrolled {
  width: 90%;
  height: 80px !important;
  margin: 12px auto;
  padding: 0 20px !important;
  border-radius: 50px;
  border-color: rgb(245, 245, 245) !important;
  background-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 6px 0px !important;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1236px) {
  .navbar-nav .nav-link {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .navbar-nav .nav-link {
    font-size: 20px;
  }
}
/* ---------------------------------- */
/* 5. Hero Section                    */
/* ---------------------------------- */

.hero-section {
  padding: 100px 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section h1 {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: clamp(24px, 45px, 48px);
  font-weight: 500;
  color: var(--color-black);
  line-height: 55px;
}

.hero-section p {
  /* Box Model */
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-black);
}

.ant-icon {
  /* Box Model */
  margin: 50px auto 0;
  /* Layout */
  display: block;
}

/* ---------------------------------- */
/* 6. Slider (Slick)                  */
/* ---------------------------------- */

.slider-container {
  /* Box Model */
  margin: 0 auto;
  padding: 0;
  border-radius: 15px;
  /* Visual */
  overflow: hidden;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slide-item {
  /* Visual */
  background-color: var(--bg-light-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slide-item img {
  /* Box Model */
  width: 100%;
  max-height: 180px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  /* Visual */
  object-fit: cover;
}

.slide-caption h5 {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-black);
}

.slide-caption p {
  /* Box Model */
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-black);
}

/* Slick Dots */
.slick-dots {
  /* Box Model */
  margin-top: 20px !important;
  /* Positioning */
  position: static !important;
}

.slick-dots li {
  width: auto !important;
  margin: 0 !important;
}

.slick-dots li button:before {
  font-size: 14px !important;
  color: var(--color-gray) !important;
  /* Visual */
  opacity: 0.4;
}

.slick-dots li.slick-active button:before {
  /* Visual */
  opacity: 1;
  color: var(--color-primary) !important;
}

@media (max-width: 1399px) {
  #about .about-text-muted p {
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    color: var(--color-gray) !important;
    padding-right: 193px;
  }

  .hero-section .hero-content {
    margin-top: 60px !important;
  }
  .hero-section {
    max-width: 100% !important;
    min-height: 100vh !important;
    padding: 40px 10px 0px;
  }

  .hero-section .slide-caption {
    padding-left: 0 !important;
  }

  .slide-caption h5 {
    font-size: 26px !important;
  }

  .hero-section p {
    font-size: 16px !important;
    line-height: normal !important;
  }

  .ant-icon {
    width: 110px;
    margin-top: 40px;
  }

  .slide-item img {
    width: 90%;
    max-height: 140px;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    height: auto;
    /* Visual */
    object-fit: cover;
  }
}

/* ---------------------------------- */
/* 7. Section Styles (General & Specific) */
/* ---------------------------------- */

/* General Section Padding & Backgrounds */
#case-studies,
.Training-section,
#Collaboration,
#expertise {
  /* Box Model */
  padding: 80px 10px;
  /* Visual */
  background-color: var(--bg-white);
}

  .Training-section img{
      border-radius: 15px !important;
  }

#Testimonials {
  padding: 80px 20px 30px;
}

#ProductLaunch,
#about {
  /* Box Model */
  padding: 80px 10px;
  /* Visual */
  background-color: var(--bg-light-bg);
}

#Custom-code {
  /* Box Model */
  padding: 0 20px;
  /* Visual */
  background-color: var(--bg-light-bg);
}

#Collaboration {
  /* Box Model */
  padding: 40px 10px 100px;
  /* Visual */
  background-color: var(--bg-white);
}

section img {
  /* Box Model */
  border-radius: 0px;
  /* Visual */
  object-fit: cover;
}

/* About Section */
#about .about-info-content p {
  width: 75%;
}

#about .about-info-content .about-btn {
  width: 25%;
}

#about .about-text-muted p {
  font-size: 22px;
  font-weight: 600;
  line-height: 43px;
  color: var(--color-gray) !important;
}
#about .about-text-muted p span {
  color: black !important;
}
.about-buttons .about-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
}

.about-btn img {
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about-btn span {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-section .slide-caption {
    padding-left: 25px !important;
    min-height: 200px;
    height: 100%;
    margin-bottom: 0 !important;
  }

  .hero-section {
    height: auto !important;
  }

  #about .about-info-content .about-btn {
    width: 100%;
    text-align: left !important;
    margin-bottom: 20px !important;
    padding-top: 10px;
  }

  #about .about-info-content p {
    width: 75%;
  }

  #Collaboration .flex-fill {
    padding-left: 0 !important;
  }

  #Training .flex-fill {
    padding: 0 !important;
  }
  #expertise p {
    max-width: 100%;
  }
  .hero-section h1 {
    line-height: normal;
  }
}

#expertise p {
  max-width: 600px;
}

#expertise .card {
  min-height: 370px;
  border: 1px solid var(--color-gray);
  border-radius: 20px;
  background-color: var(--bg-white);
  position: relative;
  padding: 30px;
  box-shadow: none !important;
}

#expertise .card:hover {
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
}

#expertise .card .card-body {
  padding: 0;
}

#expertise .card .card-body p {
  width: 100%;
}

#expertise .card h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  color: var(--color-black);
}

#expertise .card a {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600 !important;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
}

#expertise .card a:hover {
  color: var(--color-primary);
}

#expertise .card a img {
  margin-left: 5px;
  width: 15px !important;
}

@media (max-width: 1399px) {
  #expertise .card h5 {
    font-size: 22px;
  }

  #expertise .card .card-body p {
    font-size: 16px;
    line-height: normal;
  }
}

/* Product Launch */
#ProductLaunch div img {
  margin-bottom: 20px !important;
}

.right-studies-card .card .card-body h5 a,
.left-studies-card .card .card-body h5 a {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
  text-decoration: none;
}

.right-studies-card .card .card-body p,
.left-studies-card .card .card-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-black);
}

.right-studies-card .card .card-img-top {
  height: 240px;
  object-fit: none;
  object-position: right;
}

.right-studies-card .card .card-body span img,
.left-studies-card .card .card-body span img {
  width: 20px;
}

.right-studies-card .card .card-body,
.left-studies-card .card .card-body {
  height: 100%;
  min-height: 240px;
}

.left-studies-card .card span,
.right-studies-card .card span {
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  text-decoration: none;
}

/* Collaboration AI Section */
.Collaboration-ai-section {
  padding: 0 10px;
  background-size: cover;
  background-position: right;
}
.Collaboration-ai-section h2 {
  font-size: clamp(24px, 34px, 3.5rem) !important;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
}
.Collaboration-ai-section .Collaboration-Ant {
  width: fit-content;
  height: max-content;
}
.Collaboration-section img {
  border-radius: 15px !important;
}
.Collaboration-ai-section p {
  /*  max-width: 400px;*/
  padding-right: 15%;
  color: var(--color-black) !important;
}

/* Testimonials */
.Testimonials-section h2 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: clamp(24px, 34px, 3.5rem);
}

.Testimonials-section p.lead {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--color-gray);
}

.text-secondary {
  color: var(--color-text-light-gray) !important;
}

.quote-mark {
  font-size: 1.5rem;
  font-weight: 500;
  vertical-align: top;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-black);
}

.testimonial-quote.quote-mark::before {
  content: '“';
  color: var(--bg-primary);
}

.testimonial-quote::before {
  content: '“';
}

.testimonial-quote.quote-mark::after {
  content: '”';
  color: var(--bg-primary);
}

.testimonial-quote::after {
  content: '”';
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-primary) !important;
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-gray);
}

@media (max-width: 768px) {
  #about .about-text-muted p {
    padding-right: 0 !important;
  }
  .Collaboration-ai-section p {
    padding-right: 0;
  }
  .Collaboration-ai-section h2,
  .Testimonials-section h2 {
    font-size: 24px !important;
  }
  #ProductLaunch div img {
    width: 100%;
    max-width: 160px;
  }
  #expertise .card {
    min-height: 100%;
  }
  #expertise .card .card-body p {
    padding-bottom: 30px;
  }
  #Collaboration {
    padding-top: 0 !important;
  }
  .Collaboration-ai-section .btn,
  .case-studies-section .btn,
  .Custom-code-section .btn {
    margin-bottom: 0 !important;
  }
  .Collaboration-ai-section {
    padding-bottom: 0 !important;
  }
}

/* ---------------------------------- */
/* 8. Footer                          */
/* ---------------------------------- */

.footer-section {
  padding: 100px 10px 40px;
  color: var(--bg-light-bg);
  overflow: hidden;
  position: relative;
  filter: opacity(1px);
}

.footer-section .container > * {
  position: relative;
  z-index: 2;
}

.footer-section .small-intro {
  max-width: 820px;
  font-size: 16px;
  color: var(--color-gray) !important;
  text-align: left;
}

.footer-section h6 {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 40px;
  font-weight: 400;
  color: var(--color-white);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #777777 !important;
  font-size: 16px;
  letter-spacing: 0px;
  /* line-height: 40px; */
  font-weight: 400;
}

.footer-section a {
  font-size: 0.92rem;
  color: #777777 !important;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-section a:hover {
  color: var(--bg-white);
  transform: translateX(4px);
}

.footer-logo {
  width: auto;
  margin-bottom: 15px;
  height: auto;
  display: block;
}

.footer-copyright {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}

.app-badges p {
  font-size: 16px;
}


.socials a {
  width: auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-light-bg);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.socials a img {
  width: 80%;
}

.app-badges a {
  display: inline-block;
  margin-right: 12px;
}

.app-badges img {
  height: 50px;
  margin-right: 10px;
  filter: brightness(1.05);
  width: 100%;
}

/* Bottom line and small text */
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #777777;
  font-size: 18px;
  color: #777777;
  text-align: center;
}

.footer-bottom p {
  font-size: 18px;
  color: #777777 !important;
}

.footer-bottom a {
  font-size: 18px;
  color: var(--color-white) !important;
  text-decoration: none;
}

/* ---------------------------------- */
/* 9. Media Queries (Responsive)      */
/* ---------------------------------- */

@media (max-width: 1319px) {
  .navbar.scrolled {
    width: 95%;
  }
}

@media (max-width: 991.98px) {
  .footer-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  /* Navbar Mobile Menu */
  .navbar-collapse {
    /* Box Model */
    padding: 80px 30px 30px;
    /* Visual */
    background: var(--bg-white);
    border-color: rgb(245, 245, 245);
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(6px);
    /* Layout */
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    /* Animation */
    transition: all 0.4s ease;
    /* Positioning */
    z-index: 1000;
  }

  .navbar-collapse.show {
    right: 0;
    display: flex !important;
    /* Overrides utility classes */
  }

  .navbar.scrolled {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
  }

  .navbar-brand {
    z-index: 1200;
    position: relative;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
    background: none;
    outline: none;
    font-size: 28px;
    z-index: 1201;
    position: relative;
    cursor: pointer;
    order: 3;
  }

  .navbar-toggler .close-icon {
    display: none;
    font-size: 34px;
    line-height: 1;
  }

  .navbar-toggler.active .menu-icon {
    display: none;
  }

  .navbar-toggler.active .close-icon {
    display: inline-block;
  }

  .Collaboration-ai-section p {
    max-width: 100%;
  }
  .mobile-accordion-item .accordion-body .accordion-JobDetails {
    padding: 10px 20px;
  }

  .career-mobile-wrap .accordion-body h4 {
    padding-left: 0 !important;
  }
}

@media (max-width: 768px) {
  /* Hero Section */

  .testimonial-quote {
    font-size: 16px;
    line-height: 26px;
  }
  #about .about-text-muted p {
    font-size: 20px;
  }
  .mobile-accordion-item .accordion-button {
    padding-left: 3.5rem;
    padding-bottom: 7px;
    padding-top: 7px;
  }
  p,
  .hero-section p {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
  }
  .hero-section {
    max-width: 100% !important;
    min-height: 100% !important;
    padding: 40px 10px 0px !important;
  }
  section h3 {
    font-size: 28px;
  }

  h2,
  #Collaboration-ai h2,
  #expertise h2,
  #about h2 {
    font-size: 30px;
  }

  h5,
  .slide-caption h5,
  #expertise .card h5 {
    font-size: 22px;
  }

  /* Slider */
  .slide-item {
    /* Layout */
    flex-direction: column;

    text-align: center;
  }

  .slide-item img {
    margin-bottom: 15px;
    width: 100% !important;
  }

  /* About Section */
  #about .about-info-content p {
    width: 100%;
  }

  /* Expertise Section */
  #expertise p {
    width: 100%;
  }

  /* General Layout Tweak */
  section.py-5 > .container > .d-flex {
    flex-direction: column !important;
  }

  #about .text-center .w-100 {
    padding: 0 0.5rem;
  }
}

@media (max-width: 554px) {
  #mainNavbar {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 30px !important;
  }

  .about-btn {
    width: 100% !important;
  }

  .about-btn span {
    font-size: 0.9rem;
  }

  /* Case Studies */
  .right-studies-card .card .card-img-top {
    /* Box Model */
    height: 240px;
    /* Visual */
    object-fit: cover;
    object-position: top;
  }

  /* Collaboration AI Section */
  .Collaboration-ai-section .Collaboration-Ant {
    min-width: 100px;
    width: 100%;
  }

  /* Footer */
  .footer-section {
    padding: 60px 10px 80px;
  }

  .footer-section .small-intro {
    text-align: center;
  }

  .footer-columns .col-6 {
    margin-bottom: 20px;
  }

  .socials {
    margin-top: 8px;
  }
}

/* MAIN CONTENT      Career section css       */
/* ------------------------ */
.Career-section {
  position: relative;

  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  filter: brightness(0.5);
}

#bg-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#Career {
  padding: 80px 1rem;
}

.main-content {
  z-index: 10;
  /* min-height: 100vh; */
  padding: 1rem;
}

.career-header {
  border-radius: 35px;
  border: 1px solid rgb(255, 255, 255);
  overflow: hidden;
  white-space: nowrap;
}

.career-search-text {
  font-size: 40px;
  line-height: normal;
  color: #ffffff;
  font-weight: 500 !important;
  width: 100%;
  padding-left: 30px;
}

.career-logo {
  width: 140px;
  height: 120px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-logo img {
  width: 80px;
}
#Career .main-content .badge {
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #ffffff;
  font-size: 18px;
  color: #ffffff !important;
  font-weight: 500;
  padding: 10px 25px;
}
.career-mobile-wrap h3,
#Career .main-content .col-md-5 h3 {
  font-size: clamp(22px, 2.2vw, 1.6rem);
  font-weight: 400;
  max-width: 300px;
  margin-bottom: 22px !important;
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #fff;
  }
}

.typing-active {
  animation: blink-caret 0.75s infinite;
}

.career-mobile-wrap .text-accent-job,
#Career .text-accent-job {
  font-size: 19px;
  color: var(--primary-blue) !important;
  font-weight: 500;
  margin-bottom: 10px !important;
}

.job-item {
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.3rem 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--color-gray);
  font-weight: 500;
}

.job-item .job-arrow {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/slicing/arrow-default.png);
  transition: background-image 0.2s;
}

.job-item.active {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
}

.job-item.active .job-arrow {
  background-image: url(/images/slicing/arrow-hover.png);
}

.job-item:hover .job-arrow {
  background-image: url(/images/slicing/arrow-hover.png);
}

.logo-ring {
  background: #fff;
}

.accordion-body {
  background-color: #ffffff !important;
  color: #000000 !important;
  padding: 0;
}

.accordion-item {
  background: none !important;
  border: 0;
}

.accordion-button {
  background: none;
  color: #fff;
  padding-left: 1.8rem;
  font-size: 18px;
  position: relative;
  box-shadow: none !important;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button:not(.collapsed) {
  background: none;
}

#job-details-card {
  background: var(--bg-white);
  transform-style: preserve-3d;
  transition: 0.3s ease;
  border-radius: 15px;
  height: 100%;
  max-height: 400px;
  min-height: 500px;
}
.job-details-card {
  overflow: hidden;
}
.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1399px) {
    .clamp-text {
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    }

@media (min-width: 1399px) {
  .job-details-card {
    height: 100% !important;
    max-height: 500px !important;
    min-height: 600px !important;
  }
}

#job-details-card h3 {
  background-color: black;
  color: #fff;
  padding: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 20px;
  font-weight: 460;
}

#job-details-card .tabs-desktop {
  padding: 20px;
}

.accordion-body strong,
#job-details-card .tabs-desktop strong {
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  font-weight: 400;
}

.accordion-body small,
#job-details-card .tabs-desktop small {
  font-size: 18px;
  line-height: 36px;
  color: #000000;
  font-weight: 500;
}

#job-details-card p {
  padding: 0 20px 0px;
  color: #000 !important;
  font-size: 16px;
}

#job-details-card li p {
    padding: 0 20px 0px 0;
    color: #000 !important;
    font-size: 16px;
    margin-bottom: 10px;
}

.career-mobile-wrap .accordion-body h4,
#job-details-card h4 {
  padding: 0 20px;
  color: #000;
  font-size: 19px;
}

.accordion-body .tabs-button {
  background-color: #1399ff;
  width: 100%;
  border-radius: 0 !important;
  font-size: 20px;
  border: none;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  padding: 10px;
}

#job-details-card .tabs-button {
  background-color: #1399ff;
  width: 100%;
  border-radius: 0 !important;
  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
  font-size: 16px !important;
  border: none;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  padding: 10px;
  position: absolute;
  bottom: 0;
}

.CTA-section .call-btn:hover,
#job-details-card .tabs-button:hover {
  background-color: #0d7ac1;
  color: #fff;
}

/* Flip Right */
@keyframes flip-right-out {
  from {
    transform: rotateY(0);
    opacity: 1;
  }

  to {
    transform: rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flip-right-in {
  from {
    transform: rotateY(-90deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0);
    opacity: 1;
  }
}

/* Flip Left */
@keyframes flip-left-out {
  from {
    transform: rotateY(0);
    opacity: 1;
  }

  to {
    transform: rotateY(-90deg);
    opacity: 0;
  }
}

@keyframes flip-left-in {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0);
    opacity: 1;
  }
}

.flip-right-out {
  animation: flip-right-out 0.3s forwards;
}

.flip-right-in {
  animation: flip-right-in 0.3s forwards;
}

.flip-left-out {
  animation: flip-left-out 0.3s forwards;
}

.flip-left-in {
  animation: flip-left-in 0.3s forwards;
}

/* ------------------------ */
/* RESPONSIVE FIXES         */
/* ------------------------ */
@media (max-width: 991px) {
  .video-background-container,
  .overlay {
    display: none;
  }
  .accordion-body small,
  #job-details-card .tabs-desktop small {
    line-height: 20px;
  }
  #Career {
    background-image: linear-gradient(
      to right,
      rgb(0, 70, 113),
      rgba(3, 145, 233, 0.797)
    );
  }

  .accordion-button:not(.collapsed)::before {
    content: '-';
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
  }

  .accordion-button::before {
    content: '+';

    position: absolute;
    left: 0rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    transition: 0.25s;
  }
}

@media (max-width: 768px) {
  .career-mobile-wrap .accordion-body .accordion-body-content {
    padding: 0 20px;
  }
  .job-item {
    font-size: 1rem;
  }

  .search-box {
    font-size: 0.9rem;
  }

  .Career-section .container,
  .Career-section .main-content {
    padding: 0 !important;
  }

  .Career-section {
    padding: 80px 0 !important;
  }

  .career-mobile-wrap h3,
  .career-mobile-wrap .badge,
  .career-mobile-wrap .text-accent-job {
    margin: 0 20px;
  }

  .accordion-button::before {
    left: 1.4rem;
  }

  .accordion-button {
    padding-left: 3.5rem;
  }

  .ccordion-body strong,
  .accordion-body small {
    font-size: 18px;
  }

  h2,
  #Collaboration-ai h2,
  #expertise h2,
  #about h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  #Career .main-content .badge {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------------------------------------------ */
/* --------------------------------------------------------------- */
/*1 about pages section css */
:root {
  --primary-blue: #1a98ff;
  --dark-blue: #183e60;
  --vibrant-blue-accent: #00bfff;
  --dark-gray: #333;
  --brand-darkest: #070707;
  --text-black: #000000;
  --bg-gradint-dark: #29669c;
  --bg-gradint-light: #005ec6b0;
  --text-white: #ffffff;
  --color-text-primary: #0f7fd5;
}

.inner-hero-banner {
  padding: 145px 0px 90px;
  height: 100%;
  background: linear-gradient(135deg, #1b253e 0%, #3c88bd 100%);
}
.about-banner-section h1 {
  font-size: 40px !important;
  line-height: 60px;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 20px !important;
}

.hero-about-img {
  background-size: contain;
  background-position-y: bottom;
  background-position-x: 96%;
  background-repeat: no-repeat;
  padding: 50px 0 0;
  height: 100%;
  min-height: 600px;
}

.inner-hero-banner .lead-firstpera {
  font-size: 22px;
  line-height: 40px;
  color: var(--text-white);
  font-weight: 600;
}

.inner-hero-banner .small-secondpera {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 30px;
  color: var(--text-white);
  font-weight: 400;
}

@media (max-width: 1399px) {
  .inner-hero-banner {
    padding-top: 120px !important;
  }

  .hero-about-img {
    padding-top: 0;
    min-height: auto;
  }

  .inner-hero-banner .lead-firstpera {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
  }

  .inner-hero-banner .small-secondpera {
    font-size: 16px;
    line-height: normal;
    font-weight: 300;
  }
}

@media (max-width: 1199px) {
  .about-banner-section h1 {
    font-size: 40px !important;
  }
}

@media (max-width: 991px) {
  .hero-about-img {
    background-image: none !important;
  }

  .inner-hero-banner {
    padding: 150px 10px 100px;
  }
  .about-banner-section h1 {
    font-size: 30px !important;
  }
  .hero-about-img {
    background-image: none;
    padding-top: 0px;
  }
}

@media (max-width: 768px) {
  .inner-hero-banner .lead-firstpera {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .inner-hero-banner .lead-firstpera {
    font-size: 20px;
    line-height: 27px;
  }

  .inner-hero-banner .small-secondpera {
    font-size: 16px;
    line-height: 27px;
  }
}

/* --------------------------------------------------------------- */
/* 2 Mid-Banner section css*/
.Empowering-section {
  position: relative;
  top: -117px;
}

.mid-banner {
  /* background-size: 100% 100%; */
  background-repeat: no-repeat;
  background-position: left;
  background-attachment: scroll;
  background-color: black;
}

.mid-banner .Mid-Banner-info {
  font-size: 23px;
  line-height: normal;
  color: var(--text-white) !important;
  font-weight: 550;
  margin-bottom: 0 !important;
}

.mid-banner .Mid-Banner-info.text-secondary-emphasis {
  color: var(--primary-blue) !important;
}
.CTA-section .mid-banner .mid-info h3 {
  font-size: 28px;
  font-weight: 550;
}

.online-training-bg .call-btn,
.CTA-section .call-btn {
  background-color: var(--primary-blue);
  width: 100% !important;
  border-radius: 0 !important;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  border: none;
  text-transform: uppercase;
  color: var(--bg-black);
  font-weight: 600;
}

@media (max-width: 991px) {
  .mid-banner {
    background-size: cover;
    background-position: 95%;
  }
  .CTA-section .mid-banner .mid-info h3 {
    font-size: 24px;
  }
  .mid-banner .Mid-Banner-info {
    font-size: 20px !important;
  }
  .bg-What-we-deliver {
    padding-top: 60px !important;
  }
}

@media (max-width: 768px) {
  .mid-banner .mid-info {
    padding: 10px;
  }
  .CTA-section {
    padding: 0px 0px !important;
  }

  .mid-banner {
    background-position: center;
    overflow: hidden;
  }

  .mid-banner .Mid-Banner-info {
    font-size: 18px;
  }

  .Empowering-section {
    top: -80px;
  }
  section {
    padding: 60px 10px !important;
  }
}

@media (max-width: 554px) {
  .Empowering-section {
    overflow: hidden;
  }
}

/* --------------------------------------------------------------- */
/* <!-- 3. Core Values Section css --> */
.core-section {
  padding: 10px;
}

.section-label {
  padding: 6px 16px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  font-size: 16px;
  color: var(--text-black);
  font-weight: 500;
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid rgb(0, 0, 0);
}

.core-section .core-title {
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--text-black);
  font-weight: 500;
}

.core-section .core-text,
.core-section .core-subtitle {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
}

.core-section .core-icon img {
  margin-bottom: 20px;
}

.core-section .core-heading {
  font-size: 22px;
  line-height: 36px;
  color: var(--text-black);
  font-weight: 500;
}
.career-card .career-title {
  font-size: 28px;
}
@media (max-width: 1399px) {
  .core-section .core-title {
    font-size: 24px;
    font-weight: 500;
  }

  .core-section .core-text {
    line-height: 22px;
  }

  .core-section .core-text,
  .core-section .core-subtitle {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 400;
  }

  .core-section .core-heading {
    font-size: 22px;
    line-height: normal;
  }

  .core-section .core-icon img {
    margin-bottom: 18px;
    width: 18%;
  }
}

@media (max-width: 575px) {
  .section-label {
    font-size: 15px !important;
  }
  .ccs-title,
  .core-section .core-heading {
    font-size: 20px;
  }
  .bg-What-we-deliver {
    padding: 60px 10px 0 !important;
  }
  .bg-What-we-do,
  .bg-Who-we-are,
  .bg-free-training,
  .Corporate-Training {
    padding: 0px 10px !important;
  }
  .career-card .career-title {
    font-size: 24px;
  }
  .product-chatbox-section h2 {
    font-size: 22px;
  }
}

/* --------------------------------------------------------------- */
/*4 about page 4 section */
.career-grid-section {
  background: var(--bg-white);
  padding: 0 0px !important;
  overflow: hidden;
}

.career-grid-section .career-image-wrapper {
    height: 100%;
}

    .career-grid-section .career-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.bg-Who-we-are {
  background-position-x: right !important;
}

.career-content-wrapper {
    width: 100%;
    position: relative;
    max-width: 600px;
    padding: 80px 40px;
}

@media (max-width: 576px) {
    .career-content-wrapper {
        margin: auto;
        padding: 80px 12px;
    }
}

@media (min-width: 576px) {
    .career-content-wrapper {
        max-width: 540px;
        margin: auto;
    }
}

/* Mediumught Medium devices (≥768px) */
@media (min-width: 768px) {
    .career-content-wrapper {
        max-width: 720px;
        margin: auto;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .career-content-wrapper {
        /*        margin-left: 80px;*/
        max-width: 480px;
    }
}

@media (min-width: 1200px) {
    .career-content-wrapper {
        max-width: 570px;
    }
}

.career-grid-section .career-title {
  font-size: 24px;
}
/* Subtitle */
.career-subtitle {
  color: var(--color-primary) !important;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
}

/* List */
.career-list {
  list-style: none;
  padding-left: 0;
}

.career-list li {
  font-size: 17px;
  line-height: 38px;
  color: var(--text-black);
  font-weight: 450;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Image Box */
.career-image-box {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  min-height: 420px;
}

@media (max-width: 1399px) {
  .career-list li {
    font-size: 17px;
    line-height: 40px;
  }

  .career-subtitle {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

/* =======================
   MOBILE RESPONSIVE FIX
========================= */
@media (max-width: 991px) {
  .bg-Who-we-are,
  .bg-What-we-do {
    background-image: none !important;
  }
}

@media (max-width: 768px) {
  .career-subtitle,
  .career-list li {
    font-size: 18px;
  }

  .career-list li {
    padding: 10px 0;
    line-height: normal;
  }

  .career-grid-section {
    padding: 0 10px;
  }

  .faq-section {
    padding: 60px 10px !important;
  }

  #Testimonials {
    padding: 80px 10px 30px;
  }
}

/* ---------------------------------------------------------------------------- */
/* FAQ section css */
.faq-section {
  padding: 80px 20px;
}

.faq-badge {
  padding: 6px 16px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  font-size: 16px;
  color: var(--text-black);
  font-weight: 500;
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid rgb(0, 0, 0);
}
.faq-section .faq-title {
  font-size: 24px;
  font-weight: 400;
}
.faq-item {
  padding: 15px 0;
}

.faq-item .faq-icon {
  width: 16px;
}

.faq-question {
  font-size: 18px;
  color: var(--text-black);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hover color */
.faq-question:hover {
  color: var(--color-gray);
}

/* Active State Color */
.faq-item.active .faq-question {
  color: var(--color-gray);
  font-weight: 500;
}

.faq-answer {
  font-size: 14.5px;
  color: var(--text-black);
  margin-top: 15px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-answer.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1399px) {
  .faq-question {
    font-size: 18px !important;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* ------------------------------------- */
/* teams section css  */
.team-section {
  background-size: cover;
}

.team-img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.team-content h4 {
  margin: 0;
  font-size: 22px;
  color: var(--color-text-primary);
  font-weight: 500;
}

.team-desi {
  font-size: 18px;
  color: var(--text-white);
  font-weight: 500;
}

.team-content p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-white) !important;
  margin: 10px 0;
}

@media (max-width: 991px) {
  .team-section {
    padding: 60px 10px;
    background-position: center;
  }

  .team-card {
    width: 100%;
    text-align: left !important;
    padding: 20px 0 !important;
  }

  .team-card img.team-img {
    width: 100%;
    height: auto;
    order: -1;
    margin-bottom: 15px;
  }

  .team-content h4 {
    font-size: 20px;
  }

  .team-desi {
    font-size: 16px;
  }

  .team-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .faq-badge {
    font-size: 16px;
  }
}

/* -------------------------------------------------------------- */
.ui-ux-banner {
  background-size: auto;
  background-position-y: bottom;
  background-position-x: right;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-service-category {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: var(--primary-blue);
}

.banner-service-list {
  list-style: none;
  padding: 0;
}

.banner-service-list li {
  padding: 0.3rem 0;
  font-size: 18px;
  position: relative;
}

@media (max-width: 1399px) {
  .ui-ux-section {
    height: auto;
    padding: 80px 10px;
  }

  .banner-service-category {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 0 !important;
  }

  .banner-service-list li {
    padding: 0.2rem 0;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .ui-ux-banner {
    background-image: none !important;
  }

  .ai-automation-bg-img,
  .ui-ux-banner {
    background-image: none;
    padding-top: 20px;
  }

  .online-training-bg .call-btn a {
    padding-left: 0px !important;
  }
}

@media (max-width: 768px) {
  .banner-service-category {
    font-size: 22px;
  }

  .banner-service-list li {
    font-size: 16px;
  }
}

/* approach-section css */
.approach-section {
  padding: 80px 10px 20px;
}

.approach-section .core-icon {
  width: auto;
  height: auto;
  /* margin-bottom: 10px; */
}

.approach-section .core-icon img {
  width: 90px;
}

/* CTA CSS */
.online-training-bg .call-btn a,
.CTA-section .call-btn a {
  text-decoration: none;
  color: var(--text-black);
  text-transform: uppercase;
  display: block;
  padding: 15px 0;
}

.online-training-bg .call-btn a {
  padding-left: 190px;
}

@media (max-width: 1399px) {
  .online-training-bg .call-btn a,
  .CTA-section .call-btn a {
    font-size: 16px;
  }
}

/* <!-- What We Deliver Section --> */
.career-grid-img {
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
  background-size: 50% 101%;
}

@media (max-width: 991px) {
  .bg-What-we-deliver.bg-free-training,
  .what-we-deliver .bg-What-we-deliver {
    background-image: none !important;
  }

  .what-we-deliver {
    padding-top: 50px !important;
  }
}

/* -------------------- */

/* Portfolio Section - Updated Styles */
.portfolio-section {
  padding: 80px 0 40px;
  background: #fff;
}

.portfolio-filters {
  margin: 4rem 0 1.5rem;
}
.portfolio-section .section-header .section-title {
  font-size: 28px;
}
@media (max-width: 768px) {
  .portfolio-section {
    padding-top: 0 !important;
  }
  .portfolio-section .section-header .section-title {
    font-size: 24px;
  }
}
.filter-btn {
  background: #f8f9fa;
  border: 0;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin: 0 0.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 170px;
  height: 42px;
  margin-bottom: 10px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
  transform: translateY(-2px);
}

.portfolio-item-wrapper {
  display: none;
  opacity: 0;
  margin-bottom: 2rem;
}

.portfolio-item-wrapper[data-category='website'] {
  display: flex;
  opacity: 1;
}

.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 1.6rem;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(30, 58, 95, 0.95) 0%,
    rgba(30, 58, 95, 0.7) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay-new {
  opacity: 1;
}

.overlay-content {
  color: #fff;
  width: 100%;
}

.project-category {
  display: inline-block;
  background: rgba(33, 150, 243, 0.9);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.project-description {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.view-project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #2196f3;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-project-btn:hover {
  background: #1976d2;
  transform: scale(1.1) rotate(45deg);
}

/* Why Choose Section */
.why-choose-section {
  padding: 0px 0 80px;
}

.why-choose-section .why-list {
  margin-top: 2rem;
}
.why-choose-section .section-title {
  font-size: 26px;
  max-width: 700px;
}
.why-choose-section .why-list p {
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 0;
  font-weight: 400;
}

.why-choose-section .link-primary {
  color: var(--color-primary) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-choose-section .link-primary:hover {
  color: var(--color-text-light-gray) !important;
}

@media (max-width: 991px) {
  .why-choose-section {
    /* margin-top: 0px !important; */
    margin-bottom: 0px !important;
    padding-top: 0 !important;
  }
  .why-choose-section .why-list p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 5px;
  }
  .why-choose-section .section-title {
    max-width: 100%;
    font-size: 22px;
  }
  .why-choose-section {
    padding: 0px 10px 80px;
  }

  .portfolio-section {
    padding: 80px 10px 40px;
  }

  .case-card .card-title-blue {
    font-size: 20px !important;
  }

  .case-card .slide-info p {
    font-size: 17px !important;
  }
}

@media (max-width: 574px) {
  .filter-btn {
    font-size: 16px;
    font-weight: 500;
    min-width: 130px;
    height: 40px;
    margin: 5px 2px;
    padding: 0;
  }

  .case-card .slide-info {
    padding: 20px 10px !important;
  }
}

/* ui-ux-testimonial-bg */
/* Background */
.clint-testimonial-bg {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

/* Static Side Images */
.clint-testimonial-bg .side-img {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

/* Paragraph Box */
.clint-testimonial-bg .para-box {
  padding: 40px 70px;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 20;
}
.whats-new-section .whats-new-title {
  color: var(--text-white);
  font-size: 48px;
}
@media (max-width: 991px) {
  .whats-new-section h1,
  .testimonial-title {
    font-size: 36px;
  }
  .whats-new-section .whats-new-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .clint-testimonial-bg .para-box {
    padding: 20px 30px;
  }
  .whats-new-section .whats-new-title {
    font-size: 30px;
  }
}

@media (max-width: 574px) {
  .clint-testimonial-bg {
    background-size: 100% 100%;
  }

  .clint-testimonial-bg .para-box::before,
  .clint-testimonial-bg .para-box::after {
    background-image: none;
  }

  .clint-testimonial-bg .para-box {
    padding: 0;
  }
}

/* whats-new-section */
.whats-new-section {
  background: linear-gradient(135deg, #1b253e 0%, #3c88bd 100%);
  padding: 70px 10px 30px !important;
  color: var(--text-white) !important;
}

.whats-new-section h3,
.whats-new-section button {
  color: var(--text-white) !important;
}

#Custom-code.whats-new-section div p {
  font-size: 16px;
  line-height: 30px;
  color: var(--text-white) !important;
  font-weight: 400;
}

.call-button {
  padding: 8px 25px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text-white);
  font-weight: 500;
  border: 1px solid white;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  #Custom-code.whats-new-section div p {
    font-size: 16px;
    line-height: normal;
  }
}
.case-studies-section h3,
.Custom-code-section h3 {
  font-size: clamp(22px, 3.8vw, 36px);
}
/* Training page css*/
/* Training-banner */
.training-hero-banner {
  background-color: var(--bg-white);
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.training-hero-banner h1 {
  font-weight: 600;
}

.main-title {
  font-size: clamp(2rem, 5vw, 10rem);
  font-weight: 650;
  line-height: 1.1;
  margin-bottom: 20px;
}

.animated-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.animated-word {
  font-size: clamp(2rem, 10vw, 110px);
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}

.animated-word.typing-active {
  border-right: 3px solid #007bff;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #007bff;
  }
}

.blue-text {
  color: #1b98ff;
  margin-right: 20px;
}

.black-text {
  color: #212529;
}

@media (min-width: 1440px) {
  .Corporate-Training,
  .bg-free-training {
    display: flex;
    align-items: center;
  }

  .Corporate-Training .row,
  .bg-free-training .row {
    padding: 60px 0;
  }
}

/* Free training */
@media (max-width: 991px) {
  .online-training-img,
  .bg-free-training {
    background-image: none !important;
  }

  .training-hero-banner {
    height: auto;
    padding: 150px 10px 60px !important;
  }
}

.ccb-cta-item {
  /* Visual */
  background-color: var(--bg-light-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.ccb-cta-img {
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.ccb-cta-img img {
  width: 100%;
  padding: 15px;
  object-fit: scale-down;
}

.ccs-title {
  font-size: 24px;
  line-height: 36px;
  color: var(--text-black);
  font-weight: 500;
}

/* Online Training */
.online-training-bg .accordion-button::before,
.online-training-bg .accordion-button::after {
  display: none !important;
}

/* Accordion header */
.online-training-bg .accordion-button {
  padding: 1px 0 1px 0px;
  background: transparent;
  color: #1a98ff;
  font-size: 18px;
  border: none;
  box-shadow: none;
}

.online-training-bg .accordion-button:not(.collapsed) {
  background: transparent;
}

.online-training-bg .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 25px;
  padding-left: 25px;
  position: relative;
}

.online-training-bg .left-border-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgb(255, 255, 255);
  border-radius: 0px;
}

.online-training-bg .left-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: #1a98ff;
  border-radius: 0px;
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.6);
  transition: height 7s ease-in-out;
}

.online-training-bg .accordion-button:focus,
.online-training-bg .accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.online-training-bg .accordion-button:not(.collapsed) {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.online-training-bg .accordion-item {
  border: none !important;
}

.online-training-bg .accordion-body {
  color: #ffffff !important;
  padding-left: 0;
  padding-top: 10px;
  background: none !important;
  padding-bottom: 10px;
}

.online-training-bg .accordion-body p {
  color: var(--text-white) !important;
  margin-bottom: 0 !important;
}

.online-training-bg .call-btn {
  width: 50% !important;
  text-align: center;
}

@media (max-width: 991px) {
  .online-training-bg {
    background-image: none !important;
    background: linear-gradient(135deg, #1b253e 0%, #3c88bd 100%) !important;
  }

  .online-training-bg .container {
    padding: 0 20px;
  }

  .online-training-bg .call-btn {
    width: 100% !important;
    text-align: center;
  }

  .Corporate-Training {
    background-image: none !important;
  }
}

/* Upskill-faq css*/
#upskill-accordion {
  padding: 0px 20px;
  background-color: var(--bg-white);
}

.upskill-item .accordion-body p {
  color: var(--text-black) !important;
}

.upskill-item .left-border-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #cff4fc;
}

.upskill-item .left-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: #1a98ff;
  border-radius: 0px;
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.6);
  transition: height 0.6s ease;
}

.upskill-item .accordion-button {
  background: none;
  font-weight: 500;
  color: #1a98ff;
}

.upskill-item .accordion-button:not(.collapsed) {
  background: none;
  color: #1a98ff;
  box-shadow: none;
}

.upskill-item .accordion-body {
  color: var(--bg-black);
}

.upskill-item .accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 1399px) {
  .upskill-item .accordion-button {
    font-size: 20px !important;
  }
}

/* ------------------------------ */
/* AI Automation Section CSS */
.ai-automation-hero {
  padding-bottom: 0;
  height: 100%;
}

.ai-automation-bg-img {
  background-size: contain;
  background-position-x: 95%;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 .ui-ux-section h1,
 .ai-automation-hero h1 {
  font-size: 40px;
} 
.ui-ux-section.inner-hero-banner .lead-firstpera,
.ai-automation-hero .lead-firstpera {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.ui-ux-section .small-secondpera,
.ai-automation-hero .small-secondpera {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: normal;
  color: var(--text-white);
  font-weight: 400;
}
@media (max-width: 991px) {
  .ai-automation-bg-img {
    background-image: none !important;
  }
  .ai-automation-hero .lead-firstpera {
    font-size: 18px;
  }
  .ai-automation-hero {
    padding: 150px 10px 100px;
    height: auto;
  }
}

/* benefits section */
.benefits-list {
  list-style-type: none;
  padding: 0;
}

.benefit-title {
  font-size: 20px;
  line-height: 36px;
  color: #1399ff;
  font-weight: 500;
}

.benefit-item {
  font-size: 16px;
  color: #000000;
}

/* training testimonial css */

/* <!-- -------------------ai-request-section ---------------- --> */
.ai-product-section {
  background-size: cover;
  height: 100vh;
  padding: 50px 20px 20px;
  display: flex;
  align-items: end;
}

.ai-card {
  background: #fff;
  border-radius: 22px;
  width: 100%;
}
.ai-product-section .ai-card h1 {
  font-size: 48px;
  color: var(--text-black);
  font-weight: 450;
  margin-bottom: 0px !important;
}
a.btn {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
}

.btn-primary {
  background-color: #1399ff;
  border-color: #1399ff;
  color: #fff;
}

.btn-outline-dark {
  border-color: #333;
  color: #333;
}

.btn-primary:hover,
.btn-outline-dark:hover {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .ai-product-section .ai-card h1 {
    font-size: 27px !important;
    margin-bottom: 10px !important;
  }
  .ai-card {
    padding: 20px 0px !important;
  }
  .ai-product-section a.btn {
    font-size: 12px !important;
  }
}
@media (max-width: 768px) {
  .ai-product-section {
    height: auto;
  }
  .Custom-code-section h3{
    margin-top: 20px;
  }
}
/* ----------- case study css------------- */
.case-study-section {
  padding: 80px 10px;
  background-color: var(--bg-white);
}

/* MAIN CARD */
.case-card {
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 25px 35px 35px;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  height: 100%;
}
.case-study-section .core-title {
  font-size: 28px;
  max-width: 700px;
}
/* VIDEO STYLE */
.case-card .card-content img {
  width: 95%;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Title Blue */
.case-card .card-title-blue {
  color: #00a3ff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
}

.card-button-blue {
  color: #00a3ff;
  text-decoration: none;
  position:relative;
  bottom:20px;
}

/* ROUND BUTTON */
.case-card .toggle-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  border: none;
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.case-card .toggle-btn img {
  width: 26px;
  height: 26px;
  transition: transform 0.4s ease;
}

.toggle-btn.btn-active {
  background: #1399ff;
  /* change to any color */
}

.toggle-btn img.rotate {
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.case-card .slide-info {
 position: absolute;
left: 0;
bottom: -550px;
width: 100%;
background: #111;
padding: 25px;
padding-bottom: 29px;
border-top-left-radius: 22px;
border-top-right-radius: 22px;
transition: bottom 0.4s ease;
color: #ddd;
/* min-height: 480px; */
    /* min-height: 100%; */
/* overflow-y: auto; 
overflow-x: hidden; */
height: 100%;
}
 .case-card .slide-info .info-content{
     height:100%;
     overflow:hidden;
  }

.CardDescription-clump {
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
    .case-card .slide-info::-webkit-scrollbar {
        width: 0;
        display: none;
    }

.case-card .slide-info p {
  color: var(--text-white) !important;
}

.case-card .slide-info.active {
  bottom: 0;
}

 /* @media (max-width: 1399px) {
    .case-card .slide-info {
        min-height: 460px;
    } */

@media (max-width: 991px) {
  .case-card .slide-info {
    bottom: -590px;
  }
  .case-study-section .core-title {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .case-card {
    padding: 20px 10px 30px;
    min-height: auto;
    height: 480px;
  }
}

/* MAIN SECTION */
.testimonial-section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10px;
  background-size: cover !important;
  background-position: center !important;
}

/* CONTAINER */
.content-wrapper {
  width: 100%;
  position: relative;
}

/* LEFT + RIGHT BRACKETS */
.content-wrapper .bracket {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
  max-width: 50px;
}

.content-wrapper .left-bracket {
  left: 0;
}

.content-wrapper .right-bracket {
  right: 0;
}

/* SLIDER MIDDLE BOX */
.content-wrapper .testimonial-slider {
  padding: 20px 0px 10px;
  /* EXACT padding like your UI */
  text-align: left;
  /* Your text is LEFT aligned */
  position: relative;
  z-index: 5;
}

.content-wrapper .slick-dotted.slick-slider {
  margin-bottom: 5px;
}

.content-wrapper .slide {
  display: none;
  color: #fff;
  transition: 0.5s ease;
}

.content-wrapper .slide.active {
  display: flex;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}

/* QUOTE TEXT */
.content-wrapper .testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding-left: 40px;
  padding-right: 25px;
}

.clint-testimonial-bg .slick-initialized .slick-slide {
  display: flex !important;
  flex-direction: column !important;
  gap: 35px;
}

/* AUTHOR BOX */
.content-wrapper .author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  gap: 12px;
  justify-content: flex-start;
}

.content-wrapper .author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.content-wrapper .author-box h4 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.content-wrapper .author-box span {
  display: block;
  margin-top: -3px;
  font-size: 13px;
  opacity: 0.8;
  color: #fff;
}

.content-wrapper .slick-dots li {
  margin: 0 0px;
}

.content-wrapper .slick-dots li button:before {
  font-size: 13px !important;
  color: #ffffff;
  opacity: 0.5;
}
.clint-testimonial-bg .testimonial-title {
  font-size: 45px;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 1399px) {
  .clint-testimonial-bg .slick-initialized .slick-slide {
    gap: 10px;
  }
}

@media (max-width: 1199px) {
  .content-wrapper .testimonial-slider {
    padding: 0px 0px 0px;
    /* EXACT padding like your UI */
    text-align: left;
    /* Your text is LEFT aligned */
    position: relative;
    z-index: 5;
  }

  .content-wrapper .testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
    width: 100%;
    padding-left: 40px;
    padding-right: 25px;
    max-height: 200px;
    margin-bottom: 0px;
    height: 170px;
  }

  .content-wrapper .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .clint-testimonial-bg .slick-initialized .slick-slide {
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .content-wrapper .author-box {
    height: auto;
  }

  .content-wrapper .testimonial-slider {
    padding: 0px 0px 20px;
  }

  .content-wrapper .bracket {
    display: none;
  }

  .content-wrapper .testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
    height: 100%;
    max-height: 100%;
  }

  .content-wrapper .author-box {
    margin-top: 20px;
  }

  .slick-initialized .slick-slide,
  .content-wrapper .slide.active {
    gap: 0px !important;
  }
  .clint-testimonial-bg .testimonial-title {
    font-size: 40px !important;
  }
}

@media (max-width: 480px) {
  .content-wrapper .testimonial-quote {
    font-size: 16px;
  }
}

/* Prodect2 page css */
.product-hero-section {
  padding: 150px 10px 80px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  transition: padding-top 0.3s ease;
  /* Smooth transition */
}

.product-chatbox-section {
  padding: 60px 20px 60px !important;
}

.product-chatbox-section h2 {
  font-weight: 600;
}

.product-hero-section .main-content {
  padding: 20px;
  width: 100%;
}

.product-hero-section .logo-text {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  margin-top: 30px;
}

.product-hero-section .logo-chatbox {
  color: black;
}

.product-hero-section .logo-ai {
  color: #1a98ff;
}

.product-hero-section .main-content div a {
  font-weight: 600;
}

.product-hero-section .btn-blue {
  background-color: #1a98ff;
  border-color: #1a98ff;
}

@media (max-width: 576px) {
  .product-chatbox-section {
    padding: 60px 20px 20px !important;
  }
  .clint-testimonial-bg .testimonial-title {
    font-size: 30px !important;
  }
}

@media (max-width: 1399px) {
  .product-hero-section .logo-text {
    font-size: clamp(4rem, 12vw, 5.8rem);
  }
}

@media (max-width: 500px) {
  .product-hero-section .logo-text {
    font-size: 50px;
  }

  .product-hero-section {
    padding: 120px 10px 40px;
  }

  .product-hero-section .main-content {
    padding: 0px;
  }
}

.career-list li span img {
  width: 16px;
  margin-right: 2px;
}

/* SECTION BACKGROUND */
.video-area-section {
  padding: 80px 10px 0;
  background: linear-gradient(135deg, #0b2a4a 0%, #1e74c6 100%);
  color: #fff;
}

/* HEADING */
.video-area-section .area-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

/* SUBTITLE */
.video-area-section .area-subtitle {
  margin-top: 10px;
  font-size: 17px;
  color: #fff !important;
  margin-bottom: 50px;
}

/* LAPTOP WRAPPER */
.video-area-section .laptop-wrapper {
  position: relative;
}

/* LAPTOP IMAGE */
.video-area-section .laptop-img {
  width: 100%;
  display: block;
}

/* VIDEO POSITION INSIDE LAPTOP */
.laptop-video {
  position: absolute;
  top: 6.2%;
  left: 12%;
  width: 77%;
  height: 84.5%;
  overflow: hidden;
}

/* VIDEO STYLE */
.laptop-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .area-title {
    font-size: 28px;
  }
}

.ai-tag {
  background: #000;
  color: white;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
  margin: 3.5px 1.6px;
}

.ai-tag:hover {
  background: #1a98ff;
}

/* Active Blue Tag */
.ai-tag.active {
  background: #1a98ff;
  /* Blue */
  color: #fff;
}

/* --- Price Section Section --- */
.pricing-table {
  display: flex;
  width: 100%;
  margin: 80px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.pricing-table .pricing-column {
  background-color: var(--color-white);
  border: 2px solid #eeeeee;
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: none;
}

.pricing-table .pricing-column:last-child {
  border-right: 2px solid #eeeeee;
}

.pricing-table .plan-header h3 {
  font-size: 28px;
  color: var(--color-black);
  font-weight: 500;
  margin: 0 0 10px 0;
}

.pricing-table .plan-header p {
  font-size: 1p6x;
  line-height: 28px;
  color: var(--color-black);
  font-weight: 400;
  min-height: 90px;
  margin-bottom: 40px;
}

.pricing-table .plan-header p span {
  color: var(--color-primary);
}

.pricing-table .price {
  display: block;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 20px;
  line-height: 1;
}

 @media (min-width : 1400px){
    .pricing-table .price {
     display: block;
     position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
    line-height: 1;
    height: 50px;
        }
  }

.pricing-table .price .currency {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 500;
  margin-right: 5px;
  vertical-align: super;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 12px;
  z-index: 10;
}

.pricing-table .price .amount {
  font-size: 40px;
  color: var(--color-black);
  font-weight: 500;
  line-height: 1;
  margin-left: 27px;
}

.pricing-table .price .duration {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 400;
  margin-left: 5px;
  line-height: 1.5;
}

.pricing-table .cta-button {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
  margin-bottom: 30px;
  text-decoration: none;
}

.pricing-table .primary-button {
  border-radius: 30px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.pricing-table .primary-button:hover {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
}

.pricing-table .free-button {
  border-radius: 30px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
}

.pricing-table .free-button:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.pricing-table .features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-table .features li {
  font-size: 15px;
  padding: 8px 0;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px auto;
  padding-left: 30px;
}

.pricing-table .features li.checked {
  font-size: 16px;
  letter-spacing: 0px;
  color: var(--color-black);
  font-weight: 500;
  background-image: url('../images/slicing/check.png');
}

.pricing-table .features li.unchecked {
  opacity: 0.502;
  background-image: url('../images/slicing/cancel-price.png');
}

@media (max-width: 991px) {
  .pricing-table {
    flex-direction: column !important;
    gap: 0px;
  }
  .pricing-table {
    margin: 0px auto 0px;
  }
  .pricing-section {
    padding: 0px 10px 40px !important;
  }
  .product-chatbox-section {
    padding: 60px 10px 40px !important;
  }

  .pricing-table .pricing-column {
    padding: 25px;
    border: 2px solid #eeeeee;
    border-bottom: none;
  }

  .pricing-table .plan-header p {
    min-height: auto;
  }

  .pricing-table .pricing-column:last-child {
    border-bottom: 2px solid #eeeeee;
  }
}

.product-banner-section {
  width: 100%;
  min-height: 100%;
  height: 100vh;
  background-size: 100% 100%;
  padding: 77px 20px 80px;
  /* display: flex;
  align-items: center; */
  background-position-x: right;
  background-position-y: 70px;
   overflow: hidden;
}

/* Center column */
.product-banner-section .banner-center {
  min-height: 100%;
  /* border-left: 1px solid white;
  border-right: 1px solid white; */
  position: relative;
}

/* Video wrapper */
.product-banner-section .video-wrapper {
  /* width: 100%; */
  max-width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  /* border-radius: 12px; */
  height: 90vh;
       border-left: 1px solid white;
     border-right: 1px solid white;
     padding: 0 12px;
}

/* Video */
.product-banner-section .video-wrapper video {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  min-height: 100%;
}
@media (max-width: 1399px) {
  .product-banner-section .video-wrapper video {
    min-height: 98%;
  }
}
/* Mobile */
@media (max-width: 991px) {
  .product-banner-section {
    padding: 100px 20px 18px !important;
    height: auto;
    background-position-x: left !important;
    background-size: auto;
  }
  .product-banner-section .video-wrapper {
    height: auto;
    aspect-ratio: auto;
  }
  .product-banner-section .video-wrapper video {
    min-height: 100%;
  }
  .product-banner-section .banner-center {
    min-height: 100%;
  }
}

/* ------------------------------------------- */
/* AI-mobile-section */
.ai-mobile-section {
  background: #fff;
}

/* Text above each phone */
.mobile-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 25px;
}

.mobile-content {
  padding: 0 20px;
}

/* Phone Image inside frame */
.mobile-frame img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mobile-frame img {
    width: auto;
  }

  .mobile-content {
    padding: 0 10px !important;
  }
}

.top-bar {
  background-color: black;
  color: white;
  padding: 8px 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: fixed;
  top: 77px;
  /*    left: 0;*/
  z-index: 1030;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.top-bar.topbar-scrolled {
  top: 92px;
}

@media screen and (max-width: 992px) {
  .top-bar.topbar-scrolled {
    top: 79px;
  }
}

@media screen and (max-width: 557px) {
  .top-bar {
    top: 69px;
  }
}

.top-bar p {
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
}

.top-bar p .top-text-highlight {
  color: #1a98ff;
}

.top-bar p a {
  color: gray;
}

.top-bar .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}

/* MOU Page css*/
#mou-heroSection {
  padding: 110px 10px 80px;
  height: 100vh;
}

.mou-details-Section {
  padding: 80px 10px 80px !important;
}

.partner-institutions {
  padding: 80px 10px 80px;
}

.partner-institutions .team-content h5 {
  color: var(--color-text-primary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1px;
}

.partner-institutions .team-content p {
  font-size: 16px;
  color: #000000 !important;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 25px;
  font-weight: 300;
}

.partner-institutions .blue-title {
  color: #1a98ff;
}

.partner-institutions .team-desi {
  color: #000000;
  font-size: 18px;
}

.partner-institutions .career-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1a98ff !important;
  margin-top: 20px;
}

.partner-institutions .career-list li {
  font-size: 16px;
  color: #000000 !important;
  margin-bottom: 0px;
  font-weight: 300 !important;
}

.partner-institutions .team-img {
  height: auto;
}
.mou-details-Section .career-list li {
  font-size: 18px;
  line-height: 38px;
  font-weight: 400;
}

@media (max-width: 991px) {
  #mou-heroSection {
    padding: 150px 10px 80px;
    height: auto;
  }
  .mou-details-Section {
    padding-top: 40px !important;
  }
}

.contact-page {
  height: 100vh;
  overflow: hidden;
  max-height: 1000px;
}

.contact-page.contact-left {
  height: 100%;
  overflow: hidden;
  /* No scroll on left */
}

.contact-page .contact-right {
  height: 100%;
  overflow: hidden;
  /* Keep form inside */
}

.contact-page .contact-form-box {
  height: 100%;
  /* ONLY form scrolls */
  padding-right: 10px;
}

.contact-page .left-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-page .left-section img {
  max-width: 120px;
}

.contact-page .left-top-section {
  padding: 40px 30px 30px;
}

.contact-page .right-section {
  background-color: #eeeeee;
}

.contact-page .content-block {
  flex: 1;
  padding: 0 25px;
}

.contact-page .content-block .title {
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  font-family: 'Poppins';
}

.contact-page .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding-left: 20px;
}

.contact-page .feature-item img {
  width: 59px;
  height: 51px;
}

.contact-page .footer-section {
  background: #0b0b0b;
  color: white;
  padding: 35px 30px;
  border-radius: 12px;
  margin-top: 40px;
  font-size: 15px;
}

.contact-page .right-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-height: fit-content;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.contact-page .video-wrapper video {
  object-fit: cover;
  max-width: 200px;
  height: 100%;
}

.contact-page .feature-item .feature-title {
  font-size: 20px;
}
.contact-page .feature-item p {
  font-size: 16px;
}
.contact-page .bottom-contact-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-bottom: 0;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
}

.contact-page .contact-content-container {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  gap: 20px;
  background: url(./images/slicing/contact_bg.png) no-repeat right/100% 100%;
}

.contact-page .contact-column {
  flex: 1;
  max-width: 45%;
}

.contact-page .contact-column h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'Poppins';
  line-height: 25px;
}

.contact-page .contact-column p {
  color: #ffffff !important;
  font-family: 'Poppins';
  margin-bottom: 0;
}

.contact-page .contact-details {
  margin-top: 15px;
}

.contact-page .highlight-green {
  color: #00ff00;
  font-weight: 400;
}

.contact-page .highlight-red {
  color: #ff005c;
  font-weight: 400;
}

.contact-page .contact-details a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}

.contact-page .contact-details a:hover {
  text-decoration: underline;
}

.contact-page .branch-container {
  display: flex;
  align-items: stretch;
  background-color: #1a98ff;
  width: 100%;
  padding: 10px 30px;
}

.contact-page .branch-label {
  padding: 5px 15px;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  color: black;
}

.contact-page .branch-button {
  color: black;
  padding: 5px 15px;
  font-size: 1rem;
  margin: 0 5px;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
  background-color: #42adff;
}

.contact-page .left-top-section .content-block .feature-item p {
  font-size: 17px !important;
  padding-right: 40px;
}

.contact-page .branch-button:first-of-type {
  border-left: none;
}

.contact-page .right-section form input,
.contact-page .right-section form textarea {
  /*  background-color: #ffffff;*/
  border: 1px solid #cccccc;
  /*  border-radius: 0;*/
}

.contact-page .right-section form input::placeholder,
.contact-page .right-section form textarea::placeholder {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: 'Poppins';
}

.contact-page .contact-button {
  border-radius: 30px;
  background-color: #1399ff;
  border: 0;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  font-family: 'Poppins';
  text-align: center;
}
.left-content-section .title {
  font-size: 26px !important;
  padding-left: 15px;
  font-weight: 600;
  line-height: 32px;
}
.right-form-wrapper h5 {
  font-weight: 600 !important;
}
@media (max-width: 1399px) {
  .contact-page {
    height: 100vh;
    overflow: auto;
  }
  .contact-page .left-top-section .feature-item p {
    font-size: 14px !important;
    padding-right: 0px;
  }
  .contact-page .contact-column h2 {
    font-size: 15px !important;
  }
  .left-content-section .title {
    font-size: 22px !important;
    padding-left: 15px;
  }
  .contact-page .feature-item img {
    width: 40px;
    height: 34px;
  }
  .contact-page .left-top-section {
    padding: 20px 25px 30px;
  }
  .contact-page .feature-item {
    margin-bottom: 25px;
  }
  .contact-page .contact-content-container {
    gap: 0;
    padding: 20px 25px;
    justify-content: left;
  }
  .contact-page .contact-details a {
    font-size: 13px;
  }
  .contact-page .contact-details {
    margin-top: 10px;
  }
  .contact-page .branch-container {
    padding: 5px 25px;
  }
  .contact-page .contact-column {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .contact-page .video-wrapper {
    width: 100%;
    height: 120px;
    padding-left: 30px;
  }
  .contact-page .video-wrapper {
    width: 100%;
    height: 120px;
    padding-left: 30px;
  }
  .contact-page .left-content-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact-page .video-wrapper video {
    max-width: 100%;
    /* height: 100%; */
    width: 100%;
  }
  .contact-page .video-wrapper video {
    max-width: 535px;
    /* height: 100%; */
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-page .video-wrapper {
    padding-left: 10px;
    margin-bottom: 20px;
  }

  .contact-page .feature-item,
  .contact-page .left-top-section {
    padding: 15px;
  }

  .contact-page .left-section img {
    padding-left: 20px !important;
    margin-top: 20px;
  }

  .contact-page .feature-item img {
    padding: 0 !important;
    width: 59px;
    height: 51px;
  }

  .contact-page .content-block {
    padding: 20px !important;
  }

  .contact-page .contact-content-container {
    padding: 15px !important;
    flex-direction: column;
  }

  .contact-page .contact-column {
    max-width: 100% !important;
    margin-bottom: 10px;
  }

  .contact-page .contact-column h2 br {
    display: none;
  }

  .contact-page .branch-container {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  .contact-page .branch-container .branch-label,
  .contact-page .branch-container .branch-button {
    width: 100%;
    text-align: center;
  }

  .contact-page .right-form-wrapper {
    padding: 20px !important;
    width: 100% !important;
  }
}

/* section id  */
section {
  scroll-margin-top: 110px; /* same as navbar height */
}

/* new form css 26-12-2025 */
/* Parent form-control div */
form .form-control {
  position: relative;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Floating label */
.floating-label {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: 'Poppins';
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

/* Input & textarea inside div */
form .form-control input,
form .form-control textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  background: transparent;
  /*    border-radius: 5px;*/
  font-weight: 400;
  font-family: 'Poppins';
}
form .form-control {
  border-radius: 0;
  border: 0;
}

form .form-control input,
form .form-control textarea:focus-within {
  outline: none !important;
}

form .form-control input,
form .form-control textarea:focus {
  outline: none !important;
}

/* File input reset */
/* Hide "No file chosen" text */
.file-control input[type='file'] {
  color: transparent;
}

/* Keep button text visible */
.file-control input[type='file']::file-selector-button {
  color: #fff;
  background: #0d6efd;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

/* Hover effect */
.file-control input[type='file']::file-selector-button:hover {
  background: #ffffff;
}

/* Input / textarea focus par label hide */
.form-control:focus-within .floating-label {
  opacity: 0;
  visibility: hidden;
}

.hide-label {
  opacity: 0;
  visibility: hidden;
}

.file-control:focus-within .floating-label {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (min-width: 1600px) {
  .product-banner-section {
    padding: 100px 20px 0;
    height: auto;
    min-height: 100%;
  }
  .product-banner-section .video-wrapper {
    height: 100%;
  }
  .training-hero-banner,
  #mou-heroSection {
    height: 100vh;
    max-height: 1100px;
  }
  .ai-automation-hero {
    height: 100vh;
    max-height: 1100px;
  }
  .training-hero-banner {
    min-height: 1000px;
  }
  .navbar.scrolled {
    width: max-content;
  }
  .navbar.scrolled .navbar-nav {
    padding-right: 30px;
  }
}
.list-disc {
  list-style-type: disc;
    color: black;
}

.list-numbers {
  list-style-type: number;
    color: black;
}
.slide-caption {
  padding: 20px 0;
}

.banner-list {
    background: #1b98ff;
    padding: 5px 10px;
    max-width: 70%;
    border-radius: 4px;
}


/*New page css */
.cloudapp-hero .hero-content {
    padding-top: 180px;
}

    .cloudapp-hero .hero-content .cloud-icon h1 {
        font-size: 45px;
        font-weight: 505 !important;
        letter-spacing: -1px;
        color: #fff;
    }

    .cloudapp-hero .hero-content .cloud-icon img {
        width: 100%;
    }

@media(max-width:575px) {
    .cloudapp-hero .hero-content .cloud-icon img {
        width: auto;
        margin-bottom: 20px;
    }

    .cloudapp-hero .hero-content {
        padding-top: 100px;
    }
}
/* ===== TABS ===== */
.link-tag {
    margin-top: 60px;
    gap: 20px;
}

    .link-tag .nav-link {
        color: #fff;
        padding: 0 0 15px;
    }

    .link-tag .nav-link.active {
        background: transparent;
        border-bottom: 3px solid #1a98ff;
        color: #fff;
    }

.Scale-services-section {
    padding: 80px 0;
}

    .Scale-services-section .scale-title {
        max-width: 600px;
    }

@media (max-width: 768px) {
    .Scale-services-section .scale-title {
        max-width: 100%;
    }
}

/* related services css */
.related-services-section h3 {
    font-size: 28px;
}
.related-services-section img {
    height: 200px;
    width: 100%;
    object-fit: fill;
}

@media screen and (max-width: 992px) {
    .related-services-section img {
        height: auto;
    }
}

.ant-tabs-nav {
    gap: 20px !important;
}

.ant-tab-link {
    position: relative;
    text-align: left;
    padding: 0px 20px;
    font-weight: 500;
    color: #333 !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

    .ant-tab-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5%;
        height: 90%;
        width: 3px;
        background-color: #ddd;
    }


    .ant-tab-link.active {
        color: #1a98ff !important;
    }

        .ant-tab-link.active::before {
            background-color: #1a98ff !important;
        }

.related-services-section .tab-pane p {
    color: #000 !important;
}

.related-services-section .tab-pane h6 {
    margin-top: 15px;
    color: #1a98ff;
    font-size: 20px;
}

.benefits-core-section {
    padding: 0px 0 80px
}

    .benefits-core-section.core-section .card-body .core-text {
        color: #777777 !important;
    }

    .benefits-core-section.core-section .card-body .core-heading {
        margin-bottom: 0;
    }

    .benefits-core-section.core-section .core-icon img {
        width: 30px;
        margin-bottom: 0;
        padding-top: 7px;
    }

@media (max-width: 1399px) {
    .benefits-core-section.core-section .core-icon img {
        width: 30px;
        margin-bottom: 0;
    }
}

/* Privacy Policy Section css*/
.privacy-policy-hero {
    background: #edecf0;
    padding: 170px 0 100px;
}

    .privacy-policy-hero .policy-hero-text img {
        width: 90px;
    }

@media(max-width: 768px) {
    .privacy-policy-hero {
        padding: 150px 0 80px !important;
    }
}


#expertise .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #expertise .card:hover {
       transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
    }

@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 270deg;
}


.service-item {
    position: relative;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}

    .service-item::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px; /* border thickness */
        border-radius: 16px;
        --angle: 270deg;
        background: conic-gradient( from var(--angle), transparent 0deg, transparent 300deg, #1a98ff 330deg, transparent 360deg );
        z-index: 0;
        opacity: 0;
        pointer-events: none;
        /* Keep only border */
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
    .service-item::after {
        content: "";
        position: absolute;
        inset: 2px;
        background: #fff;
        border-radius: 14px;
        z-index: 0;
    }
    .service-item > * {
        position: relative;
        z-index: 2;
    }
    .service-item:hover::before {
        opacity: 1;
        animation: snake-border 3.2s linear infinite;
    }

@keyframes snake-border {
    from {
        --angle: 270deg;
    }

    to {
        --angle: 630deg;
    }
}
