/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}




/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #262626;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #262626;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F5991D;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #262626;
  /* The default color of the main navmenu links */
  --nav-hover-color: #F5991D;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #262626;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #F5991D;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden !important;
}

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: var(--default-color);
  background: #FFFFFF;
  border-width: 2px 2px 5px 2px;
  border-style: solid;
  border-color: #262626;
  border-radius: 80px;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  width: 95%;
  margin: 0 auto;
  margin-top: 20px !important;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--black-color);
  background: var(--accent-color);
  font-size: 15px;
  transition: 0.3s;
  font-weight: 700;
  padding: 16px 33px 19px;
  border-width: 2px 2px 5px 2px;
  border-style: solid;
  border-color: #262626;
  border-radius: 46px;
  font-family: var(--heading-font);

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #F5991D;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #F5991D;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-style: normal;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--sec-bg);
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
  padding-top: 200px;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  position: relative;
  padding-bottom: 12px;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  text-decoration-line: underline;
}

.footer .footer-links {
  margin-bottom: 0;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #262626;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #262626;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #EAC0D8;
}

.footer .copyright p {
  margin-bottom: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;

  color: #262626;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.pp_text a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #262626;

}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 130vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/baner-1.png) center center no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.hero h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 57px);
  line-height: clamp(40px, 5vw, 70px);
  color: var(--white-color);
  letter-spacing: -2px;
}

.hero p {
  color: var(--white-color);
  margin: 5px 0 30px 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.hero .btn-get-started {
  color: var(--black-color);
  background: var(--accent-color);
  font-size: 15px;
  transition: 0.3s;
  font-weight: 700;
  padding: 16px 33px 19px;
  border-width: 2px 2px 5px 2px;
  border-style: solid;
  border-color: #262626;
  border-radius: 46px;
  font-family: var(--heading-font);
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {

  transition: 0.5s;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;

}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}



/*--------------------------------------------------------------
# Talentwaa - app website css
--------------------------------------------------------------*/




:root {
  --orange-color: #F5991D;
  --black-color: #262626;
  --white-color: #FFFFFF;
  --sub-parp: #737477;
  --green-color: #1C948A;
  --purple-color: #B54CCA;
  --sky-blue: #98CDF7;
  --border-color: #262626;
  --sec-bg: #F8F3E3;

}




.pt_120 {
  padding-top: 120px;
}

.pb_120 {
  padding-bottom: 120px;
}


.pb_60 {
  padding-bottom: 60px;
}

.pt_60 {
  padding-top: 60px;
}

.pb_40 {
  padding-bottom: 40px;
}

.mb_20 {
  margin-bottom: 20px;
}

/* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 67px;
} */

.crown_img span {
  bottom: 0;
  transform: translate(-75%, 35%);
}

.small_heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
}

.content h2 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--black-color);
  font-size: clamp(30px, 5vw, 48px);
  line-height: clamp(40px, 5vw, 59px);
  margin-bottom: 14px;


}

.content {
  padding-left: 50px;
}

.content p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--sub-parp);
}



.hw_para {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--sub-parp);
  max-width: 440px;
  margin: 0 auto;
}

.trusted_card {
  padding-left: 50px;
}


.t_bg {
  padding: 35px;
  background: var(--orange-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 4px 4px 0px 0px rgba(38, 38, 38, 1), inset 0 0 0 2px rgba(38, 38, 38, 1);
}

.trusted_text h6 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-size: clamp(15px, 5vw, 26px);
  line-height: clamp(20px, 5vw, 32px);
  color: var(--white-color);
  margin-bottom: 10px;
}


.trusted_text P {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);

}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.how_works h2,
.feature h2,
.why_choose h2,
.category_breakdown h2 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--black-color);
  font-size: clamp(30px, 5vw, 48px);
  line-height: clamp(40px, 5vw, 59px);
  margin-bottom: 14px;
}


.learning-milestone-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 60px;
}

.learning-milestone-card {
  border-radius: 15px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: 2px solid rgb(38, 38, 38);
  border-radius: 10px;
  box-shadow: 4px 4px 0px 0px rgba(38, 38, 38, 1), inset 0 0 0 2px rgba(38, 38, 38, 1);
}

.learning-milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.learning-milestone-card .icon-wrapper {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
}

.learning-milestone-card .icon-wrapper::before {
  content: url(../img/blink.png);
  /* Sparkle emoji */
  position: absolute;
  font-size: 1rem;
  opacity: 0.7;
  animation: sparkle 1.5s infinite ease-in-out;
}

.learning-milestone-card .icon-wrapper::before {
  top: 0;
  right: 0;
  transform: rotate(20deg);
  animation-delay: 0s;
}


@keyframes sparkle {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.learning-milestone-card h3 {
  margin-bottom: 15px;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.learning-milestone-card p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
  margin-bottom: 0;
}

/* Card specific colors */
.card-green {
  background-color: var(--green-color);
}


.card-orange {
  background-color: var(--orange-color);
}

.card-purple {
  background-color: var(--purple-color);
}


.card-light-orange {
  background-color: #FFA371;
}


.cloud_bg {
    background: url(../img/cloud.png) center no-repeat;
    min-height: 35dvh;
    left: 0;
    right: 0;
    top: -80px;
    position: absolute;
    z-index: 1;
    width: 100%;
    background-size: 100%;
}


.feature {
  background-color: #F8F3E3;
}

.feature .hw_para {
  max-width: 700px;
  margin: 0 auto
}



/* smart learning sec */
.activity-section,
.quiz-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.content-block {
  padding: 2rem;
  border-radius: 0.75rem;
}

.section-title {
  font-weight: 700;
  font-size: 2.8rem;
  color: #343a40;
  margin-bottom: 1.5rem;
}

.section-description {
  margin-bottom: 25px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #737477;
  text-align: start;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
 padding-left: 15px;
  text-align: start;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #F5991D;
   list-style-type: circle;
}

/* .feature-list li::before {
  content: '•';
  color: #ffc107;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.1rem;
} */

.phone-mockup {
  width: 100%;
  max-width: 440px;
  height: auto;
}


@media (max-width: 991.98px) {

  .activity-section,
  .quiz-section {
    flex-direction: column;
    text-align: center;
  }

  .content-block {
    order: 2;
  }

  .phone-mockup-col {
    order: 1;
    margin-bottom: 2rem;
  }

  .feature-list {
    padding-left: 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .activity-section .phone-mockup-col {
    order: 1;
  }

  .activity-section .content-block-col {
    order: 2;
  }

  .quiz-section .phone-mockup-col {
    order: 2;
  }

  .quiz-section .content-block-col {
    order: 1;
  }
}

.orange {
  color: var(--orange-color) !important;
}




.slider-container {
  position: relative;
  padding: 0 4rem;
  display: flex;
  justify-content: center;
}

.card-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 250px;
}

.card-item {
  flex: 0 0 auto;
  width: 195px;
  margin: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.card-image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.card-image-container.healing-heroes {
  border-color: #a7d9f7;
  background-color: #e0f2fe;
}

.card-image-container.future-builders {
  border-color: #ffb74d;
  background-color: #ffe0b2;
}


.card-item .card-title:first-child {
  background-color: var(--green-color);
}


.card-image-container.kitchen-wizards {
  border-color: #9c27b0;
  background-color: #e1bee7;
}

.card-image-container.imagination-lab {
  border-color: #ff7043;
  background-color: #ffccbc;
}

.card-image-container.artistic-explorers {
  border-color: #f7d468;
  background-color: #fff9e0;
}

.card-image-container.code-ninjas {
  border-color: #68b0f7;
  background-color: #e0f0ff;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.card-title {
  background-color: #333333;
  padding: 0.5rem 1.5rem;
  font-family: 'Nunito';
  font-style: normal;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow:
    4px 4px 0px 0px rgba(38, 38, 38, 1),
    inset 0 0 0 2px rgba(38, 38, 38, 1);
  transition: all 0.2s ease-in-out;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.card-title:hover {
  background-color: #555555;
  color: #ffffff;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-button.prev {
  left: 0;
  margin-left: 20px;
  background-color: var(--green-color);
  border: 2px solid var(--black-color);
}

.nav-button.next {
  right: 0;
  margin-right: 20px;
  background-color: var(--green-color);
  border: 2px solid var(--black-color);
}

.nav-button svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.dot {
  width: 30px;
  height: 5px;
  background-color: #C4C4C4;
  border-radius: 0px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.dot.active {
  background-color: #09A24F;
  width: 30px;
  border-radius: 0px;
  height: 5px;
}

.swiper-container {
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}


.why_choose {
  background-color: #F8F3E3;
}


.cloud_bg1 {
  background: url(../img/cloud.png) center no-repeat;
  min-height: 35dvh;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1;
  top: -40px;
  width: 100%;
    background-size: 100%;
}


@media (max-width: 767.98px) {

  /* Small devices (sm) */
  .section-header .main-title {
    font-size: 2rem;
  }

  .section-header .description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .slider-container {
    padding: 0 1rem;
  }

  .nav-button {
    width: 40px;
    height: 40px;
  }

  .nav-button.prev {
    left: 0;
    margin-left: 5px;
  }

  .nav-button.next {
    right: 0;
    margin-right: 5px;
  }

  .card-item {
    width: 180px;
    /* Adjusted width for small screens */
    margin: 0 0.5rem;
  }

  .card-image-container {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {

  /* Medium devices (md) */
  .card-item {
    width: 220px;
    /* Adjusted width for medium screens */
  }
}


.busy-parent {
  background: #1C948A;
  border: 2px solid #262626;
  border-radius: 10px;
  padding: 34px 62px 34px 42px;
  box-shadow: 4px 4px 0px 0px rgba(38, 38, 38, 1), inset 0 0 0 2px rgba(38, 38, 38, 1);
}

.ic_text h5 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 32px;
  color: #FFFFFF;
  text-align: start;

}

.ic_text p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  margin-bottom: 0;
  text-align: start;
}



.app_store_sec {
  background: #1C948A;
  border-radius: 25px;
  padding: 90px 78px 100px 88px;
  max-height: 500px;
  position: relative;
  top: 200px;
  width: 90%;
  margin: 0 auto;
  left: 0;
  z-index: 99;
  right: 0;
}

.app_text h5 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: clamp(40px, 5vw, 60px);

  color: #FFFFFF;
}

.app_text p {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;

}

.app-btn a {
  padding: 22px 35px;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* background-color: #25D366; */
  /* color: white;
  border-radius: 50%; */
  /* width: 60px;
  height: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
}

/* From Uiverse.io by Gaurang7717 */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}
.how_works {
  margin-bottom: 100px;
}
/* ends */
/*--------------------------------------------------------------
# Talentwaa - app website css ends
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
  .learning-milestone-card {
    margin-bottom: 20px;

  }
}



@media screen and (min-width: 767px) and (max-width: 1024px) {
.hero {
        width: 100%;
        min-height: 103vh;
        background: url(../img/hero-bg.png) center center no-repeat;
        background-position: 100% 100%;
                background-size: cover;
}

.cloud_bg {
  top: -110px;
}

.cloud_bg1 {
      top: -90px;
}

.app_store_sec  {
      padding: 50px 40px 80px 40px;
}

.app-btn a {
    padding: 15px 10px;
   
    font-size: 18px;
  
}
}



@media (max-width: 640px) {

  .how_works {
    margin-bottom: 0;
}

  .mobile-nav-toggle {
    margin-right: 0;
  }

  .why_choose  {
    padding-bottom: 0px;
  }

  .cloud_bg,
  .cloud_bg1 {

    min-height: 25dvh;
        top: -90px;

  }

  .t_bg {
    padding: 25px;
  }

  .footer {
    padding-top: 0px;
    margin-top: 80px;
  }

  .app-btn a {
    padding: 9px 10px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    width: 100%;
    display: inline-block;
  }

  .app_img img {
    position: relative !important;
          transform: translateY(5%) !important;
  }

  .app_store_sec {
    background: #1C948A;
    border-radius: 25px;
    padding: 50px 30px;
    max-height: 100%;
    position: relative;
    top: unset;
    width: 95%;
    margin: 0 auto;
    left: 0;
    z-index: 99;
    right: 0;
  }
  .app-flex-column
  {
      flex-direction: column !important;
  }

  .about {
    padding-top: 0px !important;
  }

  .hero {
    width: 100%;
    min-height: 105vh;
    position: relative;
    padding: 0px 0 60px 0;
    display: flex;
    align-items: center;
    background: url(../img/hero-bg.png) center center no-repeat;
    background-size: cover;
    background-position: 100% 100%;
  }

  .hero .btn-get-started {

    text-align: center;
  }

  .content {
    padding-left: 0;
  }

  .trusted_card {
    padding-left: 0;
  }

  .pb_120 {
    padding-bottom: 60px;
  }

  .pt_120 {
    padding-top: 60px;
  }

  .content-block {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  section,
body {
  overflow-x: hidden !important;
}

}


@media (min-width: 320px) and (max-width: 390px) {
  .cloud_bg {

    min-height: 30dvh;

  }

  .hero {
    width: 100%;
    min-height: 145vh;

  }


  .app_store_sec {
    padding: 35px 15px;
  }

  .app_img img {
        position: relative !important;
                transform: translateY(5%) !important;
    }

    .app_store_sec {
      max-height: max-content;
    }

    .app-btn svg {
      width: 30px;
      height: 30px;
    }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}