@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Thin.woff2') format('woff2');
  font-weight: 100;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-ExtraLight.woff2') format('woff2');
  font-weight: 200;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Light.woff2') format('woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Medium.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-SemiBold.woff2') format('woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Bold.woff2') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-ExtraBold.woff2') format('woff2');
  font-weight: 800;
}

@font-face {
  font-family: 'Lufga';
  src: url('../assets/fonts/Lufga-Black.woff2') format('woff2');
  font-weight: 900;
}



body {
  padding: 0;
  margin: 0;
  font-family: 'Lufga', sans-serif;
  counter-reset: section;
}


:root {
  --primaryColor: #0571ED;
  /* --secondaryColor: #F1A327; */
  --menuColor: #979797;
  /* --menuUnderlineColor: #F1A327; */
  --primaryWhite: #fff;
  --btnPrimary: #0571ED;
  /* --btnSecondary: #F1A327; */
  --headingColor: #22253C;
  --paraColor: #585869;

  --thin: 100;
  --extraLight: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semiBold: 600;
  --bold: 700;
  --extraBold: 800;
  --black: 900;
}


/* Color */
.menuColor {
  color: var(--menuColor);
}

.textPrimary {
  color: var(--primaryColor);
}

.textSecondary {
  color: var(--secondaryColor);
}

.bgWhite {
  background: var(--primaryWhite);
}

.textWhite {
  color: var(--primaryWhite);
}

.bgBtnPrimary {
  background: var(--btnPrimary);
}

.bgBtnSecondary {
  background: var(--btnSecondary);
}

.outlineBtnPrimary {
  border: 1px solid var(--btnPrimary);
}

.headingColor {
  color: var(--headingColor);
}

.paraColor {
  color: var(--paraColor);
}


/* Font Weight */
.thin {
  font-weight: var(--thin);
}

.extraLight {
  font-weight: var(--extraLight);
}

.light {
  font-weight: var(--light);
}

.regular {
  font-weight: var(--regular);
}

.medium {
  font-weight: var(--medium);
}

.semiBold {
  font-weight: var(--semiBold);
}

.bold {
  font-weight: var(--bold);
}

.extraBold {
  font-weight: var(--extraBold);
}

.black {
  font-weight: var(--black);
}


/* Font Size */
.text-H1 {
  font-size: 72px;
}

.text-H2 {
  font-size: 46px;
}

.text-H3 {
  font-size: 34px;
}

.text-H5 {
  font-size: 24px;
}

.text-lg {
  font-size: 20px;
}

.text-md {
  font-size: 18px;
}

.text-sm {
  font-size: 14px;
}

@media (max-width: 767px) {
  .text-H1 {
    font-size: 40px;
  }

  .text-H2 {
    font-size: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-H1 {
    font-size: 62px;
  }

  .text-H2 {
    font-size: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1439px) {
  .text-H1 {
    font-size: 46px;
  }

  .text-H2 {
    font-size: 38px;
  }
}


/* Utilize Class */
.fontOpenSans {
  font-family: "Open Sans", sans-serif;
}

.resetUl {
  list-style: none;
}

.pt-2xl {
  padding-top: 60px;
}

.pb-2xl {
  padding-bottom: 60px;
}

.mt-2xl {
  margin-top: 60px;
}

.mb-2xl {
  margin-bottom: 60px;
}

.btnAll {
  display: inline-block;
  border-radius: 50px;
}

.btn-xl {
  padding: 14px 24px;
}

.btn-lg {
  padding: 8px 36px;
}


@media (max-width: 767px) {
  .btn-xl {
    padding: 8px 10px;
  }
}

/* Utilize Class End */


/* Header */
.navbar .navbar-brand, .footerLogo {
  width: 100px;
  height: auto;
}

.navbar-nav .nav-item:not(:last-child) {
  margin-right: 36px;
}

.navbar-nav .nav-link {
  font-weight: var(--medium);
  color: var(--menuColor);
  padding: 0 !important;
  position: relative;
}

.navbar-nav .nav-link.active {
  color: var(--primaryColor);
}

.hamburgerBar {
  display: inline-block;
  height: 2px;
  background: var(--primaryColor);
  border-radius: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburgerBar:nth-child(1) {
  width: 20px;
  top: -6px;
}

.hamburgerBar:nth-child(2) {
  width: 12px;
}

.hamburgerBar:nth-child(3) {
  width: 20px;
  top: 6px;
}


@media (max-width: 991px) {
  .navbar-nav .nav-link {
    display: inline-block;
  }
}

/* Header End */


/* Hero Section */
/* In your style.css */
.heroSection {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Ensures it takes up space even if children are absolute */
    display: flex;
    align-items: center;
}
.heroBtmSection {
    background-color: #ffffff; /* Ensure it's not transparent */
    z-index: 10;
    position: relative; /* Required for z-index to work */
}

.heroSection .heroBg {
  border-radius: 30px 30px 0 0;
}

.heroSection .heroCont {
  background: #F7F8FD;
  border-radius: 20px;
  max-width: 98%;
  margin: auto;
  padding: 50px 0;
}

.headUpTitle {
  background: #DEE5F8;
  padding: 6px 24px 6px 6px;
  border-radius: 50px;
}

.headUpTitle .icon {
  background: var(--primaryColor);
  color: #FFEF26;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroCont .leftCont .title {
  font-size: 54px;
  background: var(--secondaryColor);
  display: inline-block;
  border-radius: 50px;
  padding: 0 24px;
  transform: rotate(-4deg);
  margin-top: 18px;
}

.heroCont .leftCont .desc {
  max-width: 500px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.heroCont .leftCont .btn-xl {
  border: 1px solid var(--primaryColor);
}

.fadeWrapper::before,
.fadeWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.fadeWrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f7f8fd 0%, #f7f8fdab 50%, #f7f8fd00 100%);
}

.fadeWrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f7f8fd 0%, #f7f8fdab 50%, #f7f8fd00 100%);
}

.heroCont .rightCont {
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  margin-left: auto;
}


@media (max-width: 767px) {
  .heroSection .heroCont {
    padding: 50px 0 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .heroSection {
    height: 140vh;
  }

  .heroCont .leftCont .title {
    font-size: 46px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .heroSection {
    height: 54vh;
  }
}

@media (min-width: 992px) and (max-width: 1439px) {
  .heroCont .leftCont .title {
    font-size: 38px;
  }

  .heroCont .leftCont .desc {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .heroCont .rightCont {
    margin-right: 0;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .heroSection {
    height: 80vh;
  }
}

/* Hero Section End */


/* Hero Btm Section */
.heroBtmSection .desc {
  max-width: 720px;
}

.numsArea .iconArea {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 3px 7px 40px 0 #0000002e;
  padding: 30px;
}

/* Hero Btm Section End */


/* Left Img Section */
.leftImgSection {
  background: #F7F8FD;
  border-radius: 20px;
  max-width: 98%;
  margin: auto;
}

.leftImgSection .leftCont {
  border-radius: 20px;
  overflow: hidden;
}

.strengthCard {
  padding: 30px;
  border-radius: 30px;
}

.strengthCard.bgStyle {
  background: var(--primaryWhite);
}

.strengthCard .cardIcon {
  font-size: 30px;
  background: var(--primaryWhite);
  color: var(--primaryColor);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strengthCard.bgStyle .cardIcon {
  background: #F7F8FD;
}


@media (max-width: 767px) {
  .leftImgSection {
    padding-top: 14px;
  }

  .strengthCard {
    text-align: center;
  }

  .strengthCard .cardIcon {
    margin: auto;
  }
}

/* Left Img Section End */


/* Learning and Strength Section */
.timelinePathSection {
  position: relative;
}

.timelinePathSection .svgPathImg {
  position: relative;
  margin-bottom: -50px;
  z-index: -1;
}

.timelinePathSection .svgPathImg img {
  position: relative;
  top: 32px;
  right: 30px;
}

.timelinePathSection .timelineCard,
.smTimelinePathSection .timelineCard {
  background: var(--primaryWhite);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 3px 7px 40px 0px #0000001a;
  position: absolute;
}

.smTimelinePathSection .timelineCard {
  position: relative;
  width: 100%;
}

.smTimelinePathSection .timelineCard:not(:last-child) {
  margin-bottom: 32px;
}

.smTimelinePathSection .timelineCard .tooltipArrow {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.smTimelinePathSection .timelineCard::after {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  background: var(--primaryColor);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryWhite);
  font-weight: var(--semiBold);
}

.timelinePathSection .timelineCard .tooltipArrow {
  position: absolute;
  bottom: -12px;
  right: 48px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--primaryWhite);
  filter: drop-shadow(0 6px 8px rgba(15, 23, 42, 0.06));
}

.timelinePathSection .timelineCard:nth-child(2) {
  bottom: 33%;
  left: -34px;
}

.timelinePathSection .timelineCard:nth-child(3) {
  top: 10%;
  left: 7%;
}

.timelinePathSection .timelineCard:nth-child(4) {
  bottom: 18%;
  right: 7%;
}

.timelinePathSection .timelineCard:nth-child(4) .tooltipArrow {
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid var(--primaryWhite);
}

.timelinePathSection .timelineCard:nth-child(5) {
  top: 4%;
  right: 2%;
}

.timelinePathSection .timelineCard:nth-child(5) .tooltipArrow {
  left: -27px;
  bottom: 28px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid var(--primaryWhite);
}

.timelinePathSection .timelineCard .listCont li {
  color: var(--paraColor);
  font-size: 14px;
}

.timelinePathSection .timelineCard .listCont li:not(:last-child) {
  margin-bottom: 3px;
}


@media (max-width: 767px) {
  .smTimelinePathSection .timelineCard {
    max-width: 74%;
    margin-left: auto;
  }

  .smTimelinePathSection .timelineCard .tooltipArrow,
  .smTimelinePathSection .timelineCard .tooltipArrow {
    left: -12px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid var(--primaryWhite);
  }

  .smTimelinePathSection .timelineCard::after {
    left: -31%;
  }

  .verticalSvgPath {
    left: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 768px) {

  .smTimelinePathSection .timelineCard:nth-child(2),
  .smTimelinePathSection .timelineCard:nth-child(4) {
    margin-left: auto;
  }

  .smTimelinePathSection .timelineCard:nth-child(1) .tooltipArrow,
  .smTimelinePathSection .timelineCard:nth-child(3) .tooltipArrow {
    right: -12px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid var(--primaryWhite);
  }

  .smTimelinePathSection .timelineCard:nth-child(2) .tooltipArrow,
  .smTimelinePathSection .timelineCard:nth-child(4) .tooltipArrow {
    left: -12px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid var(--primaryWhite);
  }

  .smTimelinePathSection .timelineCard:nth-child(1)::after,
  .smTimelinePathSection .timelineCard:nth-child(3)::after {
    right: -76px;
  }

  .smTimelinePathSection .timelineCard:nth-child(2)::after,
  .smTimelinePathSection .timelineCard:nth-child(4)::after {
    left: -76px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .smTimelinePathSection .timelineCard {
    max-width: 290px;
  }
}

@media (max-width: 991px) {
  .learningSection .strenghtArea {
    margin: 0 20px;
  }

  .strengthCard {
    padding: 30px;
  }
}

@media(min-width: 992px) {
  .smTimelinePathSection .timelineCard {
    max-width: 410px;
  }
}

/* Custom dotted line for the process section */
.border-dotted {
    border-top: 2px dotted #0d6efd !important;
}

/* Typography matching the image */
h1, h2, h3, h5 {
    color: #0b1c3f; /* Deep Navy from image */
}

.text-primary {
    color: #0d6efd !important; /* Main Blue */
}

/* Section Padding */
.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Learning and Strength Section End */

/*service section */
/* Default state for the cards */
.strengthCard {
    background-color: #F8F9FA; /* Light grey/off-white default */
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out; /* Smooth transition for the color change */
    padding: 30px;
    border-radius: 12px;
}

/* Hover state: change background to pure white and add a soft shadow */
.strengthCard:hover {
    background-color: #ffffff !important;
    border-color: #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft professional shadow */
    transform: translateY(-5px); /* Optional: slight lift effect like the reference image */
}

/* Ensure the 'Active' or 'bgStyle' card is white by default if needed */
.strengthCard.bgStyle {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Icon styling inside the card */
.cardIcon i {
    font-size: 2rem;
    color: #0d6efd; /* Your Primary Blue */
}
/*service section end*/

/* Value Section Styling */
.valueCard {
    background-color: #f9fbff; /* Very light blue/grey tint */
    padding: 40px;
    border-radius: 4px;
    height: 100%;
    border-bottom: 3px solid transparent; /* Hidden by default */
    transition: all 0.3s ease;
}

.valueCard:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #0d6efd; /* Your Primary Blue active on hover */
    transform: translateY(-5px);
}

.valueCard span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .sticky-top {
        position: relative !important;
        top: 0 !important;
    }
}

:root {
    --primary-blue: #283891;
    --accent-red: #f0473d;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
}

/* Base Heading Styles */
.headingColor { color: var(--primary-blue) !important; }
.textPrimary { color: var(--primary-blue) !important; }
.textAccent { color: var(--accent-red) !important; }

/* Primary Button */
.bgBtnPrimary {
    background-color: var(--primary-blue) !important;
    border: 1px solid var(--primary-blue) !important;
    transition: 0.3s;
}
.bgBtnPrimary:hover {
    background-color: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
}

/* Section Backgrounds */
.bg-light-gray { background-color: var(--bg-light); }

.strengthCard {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--primary-blue); /* Blue top bar */
    transition: 0.3s ease-in-out;
}

.strengthCard:hover {
    border-top-color: var(--accent-red); /* Changes to Red on hover */
    box-shadow: 0 10px 20px rgba(40, 56, 145, 0.1);
    transform: translateY(-5px);
}

.cardIcon i {
    color: var(--primary-blue);
}

.testimonialCard {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue); /* Navy Blue accent */
    margin: 15px;
    transition: 0.3s;
}

.testimonialCard:hover {
    border-left-color: var(--accent-red); /* Changes to Red on hover */
}

.borderPrimary {
    border: 1px solid var(--primary-blue);
}

.testimonialNav button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.testimonialNav .prevBtn:hover {
    background-color: var(--primary-blue);
    color: white !important;
}

.testimonialNav .nextBtn:hover {
    background-color: var(--accent-red) !important;
}

.pricingCard {
    padding: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.pricingCard:hover {
    transform: translateY(-10px);
}

/* Featured Card Style (Navy Blue Background) */
.pricingCard.featured {
    background-color: var(--primary-blue);
    border: none;
    transform: scale(1.05);
}

.pricingCard.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Custom Buttons for Pricing */
.outlineBtnBlue {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

.outlineBtnBlue:hover {
    background: var(--primary-blue);
    color: #fff;
}

.bgBtnRed {
    background-color: var(--accent-red);
    color: #fff;
    font-weight: 600;
    border: none;
}

.bgBtnRed:hover {
    background-color: #d63c34; /* Slightly darker red */
    color: #fff;
}

.pricingList li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* FAQ Accordion Styling */
.custom-accordion .accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    padding: 20px;
    font-size: 1.1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* When the accordion is closed */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: var(--primary-blue);
    box-shadow: none;
}

/* The arrow/icon color */
.custom-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(32%) sepia(85%) thres(0%) saturate(6159%) hue-rotate(349deg) brightness(97%) contrast(92%); /* This approximates your #f0473d Red */
}

/* Hover effect */
.custom-accordion .accordion-button:hover {
    background-color: #fcfcfc;
    color: var(--accent-red) !important;
}

.custom-accordion .accordion-body {
    border-top: 1px solid #f0f0f0;
    line-height: 1.7;
}

/* Consultation Section Styling */
.bgPrimary {
    background-color: var(--primary-blue) !important;
}

.consultationCard {
    background-image: linear-gradient(45deg, rgba(40, 56, 145, 0.9), rgba(40, 56, 145, 1));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bgBtnRed {
    background-color: var(--accent-red) !important;
    border: none;
    transition: 0.3s ease;
}

.bgBtnRed:hover {
    background-color: #ffffff !important;
    color: var(--accent-red) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.border-white {
    border: 2px solid #ffffff !important;
    transition: 0.3s ease;
}

.border-white:hover {
    background-color: #ffffff;
    color: var(--primary-blue) !important;
}

/* Button sizing */
.btn-xl {
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Footer Styles */
.footerLinks li {
    margin-bottom: 12px;
}

.footerLinks a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footerLinks a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.borderPrimary {
    border: 1px solid var(--primary-blue);
}

.socialIcon {
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.socialIcon:hover {
    background-color: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

.textAccent {
    color: var(--accent-red) !important;
}


.heroSection {
    position: relative;
    /* Remove any fixed 'height' or 'max-height' if you have them */
    height: auto; 
    min-height: 100vh; /* Optional: ensures it fills the screen but allows growth */
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    background-color: #ffffff;
    z-index: 1;
}

/* Ensure the container clears all floated elements from Owl Carousel */
.heroCont::after {
    content: "";
    display: table;
    clear: both;
}

/* Space out the Brand Carousel specifically */
.heroCarousel {
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Brand Logo Carousel Styles */
.brandLogoSection {
    background-color: #ffffff;
}

.brandLogoCarousel .item {
    padding: 10px 20px;
}

.brand-logo-img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brandLogoCarousel .owl-stage {
    display: flex;
    align-items: center;
}



