/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

/* Adobe Devanagari – Regular */
@font-face {
  font-family: "Adobe Devanagari";
  src: url("../font/AdobeDevanagari-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Adobe Devanagari – Italic */
@font-face {
  font-family: "Adobe Devanagari";
  src: url("../font/AdobeDevanagari-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Adobe Devanagari – Bold */
@font-face {
  font-family: "Adobe Devanagari";
  src: url("../font/AdobeDevanagari-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Adobe Devanagari – Bold Italic */
@font-face {
  font-family: "Adobe Devanagari";
  src: url("../font/AdobeDevanagari-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Adobe Devanagari";
  --nav-font: "Rubik", sans-serif;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

.iti {
  width: 100%;
  margin-bottom: 5px;
}

.iti__flag-container {
  pointer-events: none;
}

body {
  color: var(--default-color);
  background-image: url("../img/credai/bg/body-bg.webp");
  font-family: var(--default-font);

}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding: 0 50px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background-color: #fff;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  width: 164px;
  max-height: 51px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  font-family: "Inter", sans-serif;
  background: #A10F2F;
  font-size: 15px;
  padding: 10px 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  border-radius: 5px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #A10F2F;
}

.auto-shine-btn {
  position: relative;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;

  /* Glow */
  box-shadow:
    0 0 10px rgba(255, 152, 0, 0.6),
    0 0 25px rgba(255, 87, 34, 0.8);

  /* Glow animation */
  animation: glowPulse 3s infinite;
}

/* Moving shine */
.auto-shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent);
  transform: skewX(-25deg);
  animation: shineMove 2s infinite;
}

/* Shine animation */
@keyframes shineMove {
  0% {
    left: -80%;
  }

  40% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 10px rgba(255, 152, 0, 0.5),
      0 0 25px rgba(255, 87, 34, 0.7);
  }

  50% {
    box-shadow:
      0 0 20px rgba(255, 152, 0, 0.9),
      0 0 45px rgba(255, 87, 34, 1);
  }

  100% {
    box-shadow:
      0 0 10px rgba(255, 152, 0, 0.5),
      0 0 25px rgba(255, 87, 34, 0.7);
  }
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0 50px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border: 1px solid #a10f2f;
    border-radius: 5px;

  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu i {
    color: #a10f2f !important;
    font-size: 14px;
    padding-right: 5px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


.free-entry-section {
  background: url("../img/credai/qr-bg-1-new.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 340px;
}

/* PHONE IMAGE – FIXED AT BOTTOM LEFT */
.free-entry-phone {
  position: absolute;
  left: 220px;
  bottom: 0;
  z-index: 2;
}


/* LEFT IMAGE */
.qr-wrapper img {
  max-width: 250px;
}

/* CONTENT */
.free-entry-content {
  padding-left: 40px;
  padding-top: 70px;
}

.free-entry-content h2 {
  margin-bottom: 15px;
  color: #FFF;
  font-family: "Adobe Devanagari";
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.free-entry-content p {
  max-width: 435px;
  color: #FFF;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: justify;
}

/* MOBILE */
@media (max-width: 991px) {

  .free-entry-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .free-entry-content h2 {
    font-size: 28px;
  }

  .free-entry-content p {
    margin: 0 auto;
    font-size: 15px;
  }

  .qr-wrapper img {
    max-width: 220px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* <!--footer--> */



.custom-footer {
  background: #000;
  color: #fff;
  padding: 20px 0 20px;
  font-size: 14px;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* GET IN TOUCH COLUMN */
.get-in-touch {
  padding-left: 40px;
  /* 🔥 EXACT spacing from screenshot */
}

.get-in-touch h5 {
  margin-bottom: 20px;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

/* ICON + TEXT ROW */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

/* ICON */
.contact-row i {
  font-size: 16px;
  color: #fff;
  margin-top: 3px;
  /* aligns icon with first line */
}

/* TEXT STACK */
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-text span {
  color: var(--Black-Black-30, #77808B);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

/* COPYRIGHT */
.footer-copy {
  margin-top: 15px;
  color: #FFF;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* MOBILE */
@media (max-width: 991px) {
  .get-in-touch {
    padding-left: 15px;
  }
}


/* NEWSLETTER */
.newsletter-col {
  padding-left: 0px;
}

.newsletter-col h5 {
  margin-bottom: 20px;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.newsletter-col label {
  display: block;
  margin-bottom: 8px;
  color: #aaa;
}

.newsletter-col input {
  width: 100%;
  background: #2c2c2c;
  border: none;
  padding: 12px;
  color: #fff;
  margin-bottom: 14px;
  border-radius: 4px;
}

.newsletter-col button {
  width: 70%;
  background: #b11236;
  border: 2px solid #b11236;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-col button:hover {
  background: transparent;
  color: #b11236;
  border-color: #b11236;
}


/* MOBILE FIX */
@media (max-width: 991px) {

  .footer-copy-wrapper {
    display: block;
  }


  .get-in-touch,
  .newsletter-col {
    padding-left: 15px;
    margin-top: 30px;
  }

  .footer-copy {
    text-align: center;
    display: none;
  }
}


/* MOBILE */
@media (max-width: 991px) {
  .footer-copy-wrapper {
    text-align: center;
    margin-top: 25px;
  }
}

/* <!--end footer--> */
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #A10F2F;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  transition: all 0.4s;
  border: 2px solid #fff;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #A10F2F;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 50px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  margin-top: 50px;
  /*padding: 315px 0 0px 80px; */
  /* background: url("../img/credai/banner/web-banner.png");
  background-repeat: no-repeat;
  background-size: cover; */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%);
  pointer-events: none;
} */

.hero .hero-content {
  position: absolute;
  top: 20%;
  left: 5%;
  /* padding: 15px 0 15px 0; */
}

.hero .hero-box {
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 40px;
}

.hero .hero-content .hero-actions {
  background: none;
}

.bg-count {
  background: #a10f2f;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero .hero-box {
    padding: 20px;
  }
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}



@media (max-width: 576px) {
  .bg-count {
    padding: 5px;
  }
}

.hero .hero-content .hero-actions a {
  color: #0b0600;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.hero .hero-content .hero-actions .reg h4 span {
  color: #fff;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.hero .hero-content .hero-actions .reg h4 small {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 0fr);
  gap: 15px;
}

.time-grid-paragraph {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}


.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-item {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='49' height='49' viewBox='0 0 49 49' fill='none'%3E%3Cg opacity='0.5'%3E%3Crect width='48.4106' height='48.4106' rx='7.1192' fill='black'/%3E%3Cpath d='M0 7.1192C0 3.18737 3.18738 0 7.1192 0H41.2914C45.2232 0 48.4106 3.18738 48.4106 7.1192V24.9172H0V7.1192Z' fill='%232F2F2F'/%3E%3Cpath d='M0 25.6292H48.4106V24.9172H0V25.6292Z' fill='%23797979'/%3E%3C/g%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding: 10px;
  border-radius: 8px;
  display: inline-grid;
  color: #fff;
}

.time-item span {
  text-align: center;
  font-family: "Adobe Devanagari";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #fff;
  /* background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%); */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.time-box small {
  margin-top: 6px;
  color: #000;
  text-align: right;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}


/* 
.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(4px);
} */

.hero .hero-content .hero-stats {
  display: flex;
  gap: 48px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-actions .reg h4 span {
  font-size: 20px;
}

.hero .hero-content .hero-actions .reg h4 small {
  font-size: 14px;
}

  .time-item span {
    font-size: 18px;
  }

  .time-grid {
    display: grid;
    grid-template-columns: repeat(2, 0fr);
    gap: 5px;
  }

  .hero .hero-content .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
  font-size: 1.125rem;
  color: var(--accent-color);
}

.hero .hero-visual .floating-elements .floating-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 10px;
  left: 40%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
  top: 50%;
  right: 15px;
  animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 25%;
  left: 15px;
  animation-delay: -2s;
}

@media (max-width: 768px) {
  .hero .hero-visual .floating-elements .floating-card {
    padding: 12px 16px;
  }

  .hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.75rem;
  }

  .hero .hero-visual .floating-elements .floating-card.card-1 {
    left: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-2 {
    right: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-3 {
    left: 10px;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content-wrapper {
  padding-right: 2rem;
}


.about .section-header {
  margin-bottom: 2rem;
}

.about .section-header h2 {
  color: #005B31;
  text-align: right;
  font-family: "Adobe Devanagari";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.about .section-header h3 {
  color: #005B31;
  text-align: right;
  font-family: "Adobe Devanagari";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 102%;
  /* 35.7px */
  text-transform: uppercase;
}


.about .section-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about .lead-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 500;
}

.about .description-text {
  color: #3F3F3F;
  font-family: Inter;
  width: 85%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: justify;
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stat-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .visual-section {
  position: relative;
}

.about .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.about .main-image-container .main-visual {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .main-image-container .overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .main-image-container .overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .main-image-container .overlay-card .card-content {
  position: relative;
}

.about .main-image-container .overlay-card .card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.about .main-image-container .overlay-card .card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.about .main-image-container .overlay-card .card-content .card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .main-image-container .overlay-card .card-content .card-icon i {
  font-size: 1.125rem;
}

.about .secondary-images .secondary-img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .secondary-images .secondary-img:hover {
  transform: scale(1.05);
}

.about .features-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about .feature-box {
  display: flex;
  padding: 15px;
  min-height: 130px;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid #005B31;
  background: #992850;
  /* background: linear-gradient(180deg, rgba(255, 187, 0, 0.02) 0%, rgba(255, 187, 0, 0.20) 100%), #005B31; */
}

.about .feature-box .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.about .feature-box .feature-icon:hover {
  transform: translateY(-5px);
}

.about .feature-box h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .feature-box p {
  color: #fff;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}

.about .feature-box p span {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.modal-content {
  background: #A10F2F;
}

.modal-title {
  font-family: "Adobe Devanagari";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
  /* background-color: #005B31; */
  background: url(../img/credai/Journey-bg.webp);
  background-position: bottom center;
  border-radius: 20px;
  padding: 40px 10px 80px;
  box-shadow: 0 4px 51.9px 0 rgba(0, 0, 0, 0.13);
}

.features .tabs-wrapper .section-header h2 {
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #005B31; */
  text-align: center;
  font-family: "Adobe Devanagari";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.features .tabs-wrapper .section-header h3 {
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #005B31;
  text-align: center;
  font-family: "Adobe Devanagari";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-marquee-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
  padding: 40px 0;
}

/* marquee stays horizontal */
.logo-marquee {
  display: flex;
  width: max-content;
}

/* slide becomes a vertical grid of rows */
.logo-slide {
  display: grid;
  grid-auto-rows: auto;
  row-gap: 50px;
}

/* each row becomes a grid */
.logo-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  /* equal logo columns */
  align-items: center;
  column-gap: 30px;
  padding: 0 60px;
}

/* logo consistency */
.logo-row img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  justify-self: center;
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #D9D9D9;
  /* track color */
}

/* Horizontal scrollbar height */
.logo-marquee-wrapper::-webkit-scrollbar {
  height: 8px;
  /* 👈 adjust scrollbar thickness */
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: #005B31;
  /* gold / brand color */
  border-radius: 10px;
}

/* Thumb hover */
::-webkit-scrollbar-thumb:hover {
  background: #005B31;
}

/* ❌ REMOVE SCROLL ARROWS */
::-webkit-scrollbar-button {
  display: none;
}

.features .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.features .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .features .nav-item {
    flex: none;
  }
}

.features .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.features .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.features .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link:hover::before {
  opacity: 1;
}

.features .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link:hover .tab-content h5,
.features .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link.active::before {
  opacity: 1;
}

.features .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.features .tab-content .tab-pane {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .features .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.features .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.features .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .content-wrapper h3 {
    font-size: 24px;
  }
}

.features .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.features .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.4;
}

.features .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.features .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features .visual-content {
  position: relative;
}

.features .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%); */
  background: url(../img/credai/Journey-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 0px 0;
}



.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .image-wrapper {
  position: relative;
}

.call-to-action .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

.call-to-action .image-wrapper .main-image:hover {
  transform: translateY(-5px);
}

.call-to-action .image-wrapper .floating-card {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 280px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 3;
}

.call-to-action .image-wrapper .floating-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.call-to-action .image-wrapper .floating-card h4 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.call-to-action .image-wrapper .floating-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

.timeline {
  position: relative;
  margin: 30px 0;
}

.timeline-line {
  height: 2px;
  margin-left: 2px;
  background: #fff;
}

.timeline-dots {
  display: flex;
  justify-content: space-between;
  margin-top: -15px;
}

.timeline-dots span {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  cursor: pointer;
}

/* DOT */
.timeline-dots span::before {
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 100%;
  display: block;
}

/* YEAR TEXT */
.timeline-dots span small {
  margin-top: 6px;
  font-family: "Adobe Devanagari";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ACTIVE STATE */
.timeline-dots span.active::before {
  background: #c1143a;
  border: 5px solid #fff;
}

.timeline-dots span.active small {
  color: #FFF;

  font-family: "Adobe Devanagari";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 7.5px;
  background: linear-gradient(97deg, #ffff 1.55%, #FFF 53.6%, #fff 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-controls {
  margin-top: 20px;
}

.journey-controls button {
  background: transparent;
  color: #fff;
  font-weight: 900;
  border: none;
}

.journey-controls button i {
  font-size: 36px;
}

@media (max-width: 991px) {
  .call-to-action .image-wrapper .floating-card {
    right: auto;
    left: 20px;
    transform: translateY(-30%);
    max-width: 260px;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .call-to-action .image-wrapper .floating-card {
    left: 10px;
    max-width: 240px;
    padding: 20px;
  }

  .call-to-action .image-wrapper .floating-card h4 {
    font-size: 1rem;
  }

  .call-to-action .image-wrapper .floating-card p {
    font-size: 0.85rem;
  }
}

.call-to-action .content-area {
  padding-left: 0;
  padding: 20px;
}

.call-to-action .content-area h2 {
  font-family: "Adobe Devanagari";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.call-to-action .content-area h3 {
  font-family: "Adobe Devanagari";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.call-to-action .content-area h4 {
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.call-to-action .content-area p {
  color: #FFF;
  width: 90%;
  line-height: 30px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.call-to-action .content-area ul li {
  color: #FFF;
  width: 90%;
  line-height: 30px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  list-style: square;
}


.call-to-action .content-area>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.call-to-action .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.call-to-action .feature-list li:last-child {
  margin-bottom: 0;
}

.call-to-action .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action .feature-list li span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--default-color);
}

.call-to-action .cta-wrapper {
  margin-top: 35px;
}

.call-to-action .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action .btn-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 576px) {
  .call-to-action .image-wrapper .floating-card {
    position: relative;
    right: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  margin-top: 50px;
  padding: 50px 0;
  background-image: url('../img/credai/event-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  border-radius: 20px;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  text-transform: uppercase;
  font-family: "Adobe Devanagari";
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}


.services .intro-content .section-description {
  font-family: Inter;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  padding: 0 10px;
  color: #fff;
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 0px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*Carousel Gallery*/
.carousel-gallery {
  margin: 50px 0;
  padding: 0 30px;

  .swiper-slide {
    a {
      display: block;
      width: 100%;
      height: 280px;
      border-radius: 15px;
      overflow: hidden;
      position: relative;

      -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);
      -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);
      box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, .2);

      &:hover {
        .image {
          .overlay {
            opacity: 1
          }
        }
      }

      .image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;

        .overlay {
          width: 100%;
          height: 100%;
          background-color: rgba(20, 20, 20, .8);
          text-align: center;
          opacity: 0;

          -webkit-transition: all .2s linear;
          -o-transition: all .2s linear;
          transition: all .2s linear;

          em {
            color: #fff;
            font-size: 26px;
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            display: inline-block;
          }
        }
      }
    }
  }

  .swiper-pagination {
    position: relative;
    bottom: auto;
    text-align: center;
    margin-top: 25px;

    .swiper-pagination-bullet {
      -webkit-transition: all .2s linear;
      -o-transition: all .2s linear;
      transition: all .2s linear;

      &:hover {
        opacity: .7;
      }

      &.swiper-pagination-bullet-active {
        background-color: #fff;
        transform: scale(1.1, 1.1)
      }
    }
  }
}

/*# Carousel Gallery*/

@media (max-width: 768px) {
  .services .intro-content .section-description{
    text-align: left;
  }
  /* .call-to-action .content-area ul li {
    list-style: none;
    text-align: center;
  } */

  .journey-controls {
    justify-self: center;
  }

  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}


/* COMMON CARD */
.partner-main-card-left {
  background: #F2F2F2;
  border-radius: 22px;
  padding: 45px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  ;
}

.partner-main-card {
  border-top: 1px solid #A10F2F;
  border-bottom: 1px solid #005B31;
  border-radius: 20px;
  background: #fff;
  /* border-radius: 22px; */
  padding: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* HEADINGS */
.partner-heading {
  margin-bottom: 30px;
  color: #005B31;
  text-align: center;
  font-family: "Adobe Devanagari";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}


.logo-box-left {
  background: #fff;
  border-radius: 14px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO BOX */
.logo-box {
  /* background: #f9f9f9; */
  border-radius: 14px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

/* BIG LOGO (LEFT SIDE) */
.big-logo {
  height: 120px;
}

/* LEFT COLUMN HEIGHT BALANCE */
.left-partners {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Heading outside card (right column) */
.partner-heading.outside {
  text-align: center;
  font-weight: 700;
  color: #005B31;
  margin-bottom: 20px;
  /* padding-left: 40px; */
  font-family: "Adobe Devanagari";
  font-size: 30px;
  font-style: normal;
  text-transform: uppercase;
}

/* Keep left underline only */
.partner-heading.underline::after {
  content: "";
  width: 75%;
  height: 2px;
  background: #C3C3C3;
  display: block;
  margin: 12px auto 0;
}

/* RIGHT COLUMN INTERNAL SCROLL */
.right-partners {
  height: 100%;
  max-height: 100%;
  /* adjust as needed */
  /* overflow-y: auto; */
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  /* space for scrollbar */
}


.big-logo img {
  width: 60%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .big-logo {
    height: 120px;
  }
}

.formDiv {
  position: absolute;
  /* bottom: 12%; */
  top: 15%;
  right: 5%;
  /*  background: linear-gradient(to top, #dbbf74 0%, #ffe7ac 100%);*/
  padding: 28px;
  border-radius: 15px;
  width: 380px;
  background: #A10F2F;
}

/* .formDivLogo img{
		  width: 100px;
	  }
	   */
.formDivLogo h4 {
  font-family: "Adobe Devanagari";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 26.52px */
  text-transform: uppercase;
  background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.formDivLogo p {
  letter-spacing: 1px;
  font-size: 15px;
}

.main-form .form-btn input {
  background: #ea9d23;
  border: none;
  padding: 10px 15px;
  width: 100%;
  color: #000;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
}

.formDiv .form-control {
  padding: 12px;
  margin-bottom: 10px;
  height: 50px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.80);
}

.form-control {
  height: 50px;
  font-size: 16px;
}

.error {
  color: #fff;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

input.error-border {
  border: 1px solid red !important;
}

/* Placeholder color */
/* .formDiv .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.formDiv .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.formDiv .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.formDiv .form-control::-ms-input-placeholder {
  color: #ffffff;
} */

@media screen and (max-width: 768px) {
  .modal .btn-close {
    left: 0% !important;
  }

  .custom-footer {
    margin-bottom: 20px;
  }

  .free-entry-section {
    text-align: center;
    background-position: center;
    /* height: 480px; */
  }

  .free-entry-content {
    padding-top: 0px;
  }

  .services .intro-content .section-heading {
    font-size: 35px
  }

  .right-partners {
    height: 100%;
    max-height: none;
    /* overflow-y: auto; */
    padding-left: 10px;
    padding-right: 10px;
  }

  .partner-heading,
  .partner-heading.outside {
    font-size: 24px;
  }

  .call-to-action .content-area p {
    text-align: justify;
    width: 100%;
  }

  .timeline-dots span.active small {
    font-size: 20px;
  }

  .timeline-dots span small {
    font-size: 16px;
  }

  .timeline-dots {
    margin-top: -8px;
  }

  .timeline-dots span::before {
    width: 15px;
    height: 15px;
  }

  .call-to-action .content-area h2,
  .features .tabs-wrapper .section-header h2 {
    text-align: center;
    font-size: 35px;
  }

  .call-to-action .content-area h3,
  .features .tabs-wrapper .section-header h3 {
    text-align: center;
    font-size: 24px;
  }

  .call-to-action .content-area h4 {
    text-align: justify;
  }

  .call-to-action {
    padding: 0px 0px 30px 0 !important;
  }

  .about .section-header h2 {
    text-align: center;
    font-size: 35px;
  }

  .about .section-header h3 {
    text-align: center;
    font-size: 24px;
  }

  .about .description-text {
    width: 100%;
    text-align: justify;
  }

  section,
  .section {
    padding: 30px 0;
  }

  /* .hero-img img {
    height: 700px;
  } */
  .time-grid p {
    font-size: 14px;
  }

  .time-grid-paragraph {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 700;
    color: #000;
    text-align: center;
  }

  .hero {
    margin-top: 40px;
  }

  header .logo img {
    width: 130px !important;
  }

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .formDiv {
    margin-top: 10px;
    position: relative !important;
    width: 100% !important;
    right: 0 !important;
  }

  .bottom_button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;
    display: block;
    width: 100%;
    /* background: linear-gradient(90deg, #00392e, #005b4a 100%); */
    border-top: 1px solid #fff;
    /* background: linear-gradient(90deg, #1A4780, #1A4780 100%); */
    background-color: #a10f2f;
  }

  .formButton {
    padding: 10px 10px;
    width: 100%;
    float: left;
    padding: 10px 30px;
    text-align: center;
    display: block;
    border-right: 1px solid #fff;
  }

  .formButton a {
    width: auto;
    font-size: 18px;
    text-decoration: none;
    font-family: "Adobe Devanagari";
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    /* background: linear-gradient(97deg, #FB0 1.55%, #FFF 53.6%, #FB0 108.74%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  }

  .blink {
    animation: blink 2s infinite;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* .contactButtom {
    width: 50%;
    float: right;
    padding: 10px 30px;
    text-align: center;
    display: block;
  }

  .contactButtom a {


    width: auto;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
  } */

}

@media (max-width: 360px) {
  .hero .hero-content {
    top: 26% !important;
  }
}

@media (max-width: 526px) {
  .hero .hero-content {
    top: 27%;
  }
}

@media (min-width: 527px) and (max-width: 1024px) {
  .hero .hero-content {
    top: 35%;
  }

}

/* Floating Social Bar */
.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
}

.floating-social .social {
  width: 60px;
  height: 40px;
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b5d3b;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-social .social:hover {
  background: #0b5d3b;
  color: #ffffff;
  transform: translateX(-5px);
}

/* Optional brand hover colors */
.social.facebook:hover {
  background: #1877f2;
}

.social.instagram:hover {
  background: #e1306c;
}

.social.twitter:hover {
  background: #000000;
}

.social.youtube:hover {
  background: #ff0000;
}

.partners-section {
  background-color: #ffebb1;
  border-radius: 20px;
}

/*chatbot left align css*/

#kenytChatBubble.style1 {

  left: 0 !important;
  margin-left: 20px !important;

}

#kenytChatBubble.style1 .chatWithUsMessageWrapper {

  right: -180px !important;

}

#chatbox-container.position-right {

  left: 0 !important;

}

#chatbox-container.style1.position-right {

  margin-left: 70px !important;

}
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-2px);
  }

  20% {
    transform: translateX(2px);
  }

  30% {
    transform: translateX(-2px);
  }

  40% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

#kenytChatBubble {
  animation: shake 1.2s ease-in-out infinite;
}

.hero-img {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.register-btn {
  background: #ea9d23;
  border: none;
  padding: 10px 15px;
  width: 100%;
  color: #000;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
}

.form-group-select {
  position: relative;
}

#property,
#property1 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 45px;
  background-image: none;
  /* important for Edge */
}

/* Custom dropdown arrow */
.form-group-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.modal-header {
  align-self: center;
}

.modal .btn-close {
  position: relative;
  filter: invert(1);
  /* float: right; */
  left: 15%;
}

@media screen and (min-width: 1220px) and (max-width: 1320px) {
  .formDiv .form-control {
    padding: 12px;
    margin-bottom: 10px;
    height: 40px;
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.80);
  }

  .formDiv {
    top: 12%;
    right: 2%;
  }
}
.discl{
text-align: justify;
}