html{
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000000;
  background-color: #ffffff;
}
.iti {
  width: 100%;
  display: flex;
}


.iti__country-list{
color: #000;
}
.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.heading_container h2 {
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 55px;
  height: 5px;
  background-color: #ff2953;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*header section*/
.hero_area {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: linear-gradient(
      90deg,
      #423a62db 0%,
      rgba(224, 83, 6, 0.57) 100%
    ),
    url(../images/hero-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.sub_page .hero_area {
  height: auto;
}

.sub_page .who_section.layout_padding {
  padding-top: 0;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  margin: 10px 30px;
  padding: 0;
  padding-bottom: 3px;
  color: #ffffff;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 15px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #ffffff;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active a::after,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover a::after {
  display: block;
  background-color: #ff2953;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user_option a {
  color: #ffffff;
  margin: 10px 30px;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.navbar-brand img {
  width: 200px;

  position: relative;
  z-index: 3;
}

.custom_nav-container {
  z-index: 99999;
  padding: 15px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 55px;
}

/*end header section*/
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;

  &.no-slider {
    justify-content: center;
  }
}

.slider_section #carouselExampleIndicators {
  width: 100%;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .box {
  margin: 125px 0;
}

.slider_section .detail-box {
  text-align: center;
}

.slider_section .detail-box h1,
.slider_section .detail-box h2,
.slider_section .detail-box h3 {
  text-transform: uppercase;
  font-weight: bold;
}

.slider_section .detail-box h2 {
  font-size: 2.5rem;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
}

.slider_section .detail-box a:hover {
  background-color: #ffffff;
  color: #000000;
}

.slider_section #carouselExampleIndicators .carousel-indicators {
  position: unset;
  margin: 0;
  margin-top: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #carouselExampleIndicators .carousel-indicators li {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 100%;
  opacity: 1;
}

.slider_section #carouselExampleIndicators .carousel-indicators li.active {
  border: 4px solid #ffffff;
}

.us_section {
  background-image: linear-gradient(
      90deg,
      rgba(22, 26, 66, 0.9) 0%,
      rgba(22, 26, 66, 0.9) 100%
    ),
    url(../images/about-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.us_section .us_container {
  padding-top: 25px;
}

.us_section .us_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 25px 10px 0 10px;
}

.us_section .us_container .box .img-box {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.us_section .us_container .box .img-box img {
  max-width: 100%;
}

.us_section .us_container .box .detail-box h5 {
  font-weight: bold;
}

.time_management_section {
  background-image: linear-gradient(
      90deg,
      #dc3545 0%,
      rgba(22, 26, 66, 0.9) 100%
    ),
    url(../images/methods-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
}

.time_management_section h2 {
  font-weight: bold;
}

.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.btn-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  border-radius: 0;

  transition: all 0.3s;

  text-transform: uppercase;
}

.btn-box a:hover {
  background-color: #ffffff;
  color: #000000;
}

.planning_section {
  background-image: linear-gradient(
      90deg,
      rgba(57, 59, 70, 0.95) 0%,
      rgba(57, 59, 70, 0.95) 100%
    ),
    url(../images/planning-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.planning_section .box {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.planning_section .box .name h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.planning_section .box .img-box {
  border-radius: 15px;
  overflow: hidden;
}

.planning_section .box .img-box img {
  width: 100%;
}

.planning_section .box .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 225px;
  padding: 12px 45px;
  background-color: #ffffff;
  border-radius: 50px;
  margin-top: -25px;
}

.contact_section {
  position: relative;
  background-color: #27223f;
  color: #ffffff;
}

.contact_section .heading_container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.contact_section .heading_container h2::before {
  text-align: left;
  left: 0;
  -webkit-transform: none;
  transform: none;
}

.contact_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact_section .img-box img {
  width: 100%;
}

.contact_section .form_container {
  padding: 45px 0 45px 15px;
}

.contact_section input {
  width: 100%;
  border: none;
  background-color: #ffffff;
  outline: none;
  color: #000000;

  padding: 12px;
}
.contact_section input#phone{
  padding-left: 46px !important;
}
.contact_section input::-webkit-input-placeholder {
  color: #2a2a2c;
}

.contact_section input:-ms-input-placeholder {
  color: #2a2a2c;
}

.contact_section input::-ms-input-placeholder {
  color: #2a2a2c;
}

.contact_section input::placeholder {
  color: #2a2a2c;
}

.contact_section input.message-box {
  padding: 45px 12px;
}

.contact_section #form-button {
  padding: 10px 65px;
  outline: none;
  border: none;
  color: #ffffff;
  background: #ff2953;
  margin: 0 0 0 auto;
  text-transform: uppercase;
}

.info_section {
  background-color: #252233;
}

.info_items {
  width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info_items .item {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.info_items .item .img-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.info_items .item .detail-box {
  margin-top: 5px;
  color: #fff;
}

.info_items {
  position: relative;
}

.info_items a {
  position: relative;
}

/* footer section*/
.footer_section {
  background-color: #fbfdfd;
  padding: 20px;
  font-weight: 500;
}

.footer_section p {
  color: #292929;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #292929;
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */
.productivity_section {
  background: #5e6a7ec7;
}

.step-list {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.step-item {
  display: flex;
  align-items: start;
  gap: 8px;
}
.productivity-tip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.productivity-detail-box {
  display: flex;
  flex-direction: column;
  & h3 {
    margin-bottom: 30px;
  }
}

.testimonial-box {
  padding: 40px;
  border-radius: 24px;
  background-color: #5d5d8a;
  & img {
    width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
  }
}
.card-header {
  padding: 0;
}
.card-header .btn {
  width: 100%;
  text-align: start;
  text-decoration: none;
  padding: 16px;
}
.techs-box {
  background-color: #5d5d8a;
  padding: 40px;
  border-radius: 24px;
  color: white;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.tech-img-wrap {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;

  & img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
  }
}

.faq-btn {
  color: #000000;
  background-color: #20203d7a;
  transition: all 300ms;

  &:hover {
    color: white;
    background-color: #20203dbb;
  }
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.input-wrap textarea {
  height: 200px;
  width: 100%;
  resize: none;
  padding: 12px;
}
.productive_section {
  background-image: linear-gradient(
      90deg,
      rgba(57, 59, 70, 0.95) 0%,
      rgba(57, 59, 70, 0.95) 100%
    ),
    url(../images/productivity-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.info_items a .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer_links,
.footer_links a,
.info_items,
.info_items a {
  color: #fff;
  transition: all 300ms;
}

.footer_links a:hover,
.info_items a:hover {
  color: #ff6347;
}
.courses-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.courses-card {
  height: 100%;
  padding: 24px;
  border-radius: 18px;
  background-color: #fff;
  color: #252233;

  & h5 {
    text-align: center;
    margin-bottom: 14px;
  }

  & p {
    margin-bottom: 0;
  }

  & img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.sub_pages {
  position: relative;
  background-color: #27223f;
  color: #ffffff;
  padding: 80px 0;
}
.check-list {
  list-style: none;

  & li {
    display: flex;
    gap: 8px;
  }
}

.mangement-works-list {
  display: flex;
  gap: 36px;
}

.mangement-works-item {
  color: #000000;
}

.mangement-works-card {
  padding: 16px;
  border-radius: 18px;
  background-color: #fbfdfd;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(255, 255, 255, 0.07) 0px 2px 4px, rgba(255, 255, 255, 0.07) 0px 4px 8px,
    rgba(255, 255, 255, 0.07) 0px 8px 16px,
    rgba(255, 255, 255, 0.07) 0px 16px 32px,
    rgba(255, 255, 255, 0.07) 0px 32px 64px;
}
.work-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.works-card-icon-wrap {
  width: 100px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;

  & img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
  }
}
.main-courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
}
.courses-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.course-item {
  background-color: #ffffffb6;
  padding: 20px;
  border-radius: 18px;
  color: #292929;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
}

.benefit-box {
  padding: 24px;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(255, 255, 255, 0.07) 0px 2px 4px, rgba(255, 255, 255, 0.07) 0px 4px 8px,
    rgba(255, 255, 255, 0.07) 0px 8px 16px,
    rgba(255, 255, 255, 0.07) 0px 16px 32px,
    rgba(255, 255, 255, 0.07) 0px 32px 64px;
}

/* Correct nth-child selector - target .benefit-item first */
.benefit-item:nth-child(1) .benefit-box {
  border: 13px solid rgba(255, 0, 0, 0.507);
}

.benefit-item:nth-child(2) .benefit-box {
  border: 13px solid rgba(0, 128, 0, 0.507);
}

.benefit-item:nth-child(3) .benefit-box {
  border: 13px solid rgba(26, 41, 107, 0.568);
}

.benefit-item:nth-child(4) .benefit-box {
  border: 13px solid rgba(175, 129, 44, 0.589);
}

.methods-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 24px;
}
.methods-list-card {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  height: 100%;
  
}
.methods-img-box {
  width: 100%;
  height: 280px;

  overflow: hidden;
  margin-bottom: 30px;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.custom-list {
  list-style: none;
  display: flex;

  flex-direction: column;
  gap: 12px;
}
.productivity-grid{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-txt-wrap{
  padding: 20px;
}

.contact-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-card:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px, rgba(0, 0, 0, 0.14) 0px 6px 6px;
}

.contact-card i {
  display: block;
  margin-bottom: 10px;
}

.contact-card p{
  margin: 0;
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: 90%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 10001;
  display: none;
  /* Initially hidden */
  transition: all 0.3s ease-in-out;
}

/* Animation for Smooth Appearance */

/* Cookie Content */
.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Message Styling */
.cookie-message {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Policy Link */
.cookie-policy-link {
  color: #da7426be;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.cookie-policy-link:hover {
  color: #d45f06;
}

/* Button Container */
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Button Styles */
.cookie-btn {
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Accept Button */
.accept-btn {
  background-color: #594b81be;
  color: #fff;
  border: none;
  text-wrap: no-wrap;
}

.accept-btn:hover {
  background-color: #594b81;
}

/* Decline Button */
.decline-btn {
  background-color: #47404052;
  color: #333;
  border: 1px solid #ccc;
}

.decline-btn:hover {
  background-color: #474040a4;
}

/* Keyframes for Smooth Appearance */

/* Responsive Design */
@media (max-width: 576px) {
  .cookie-popup {
    max-width: 90%;
    padding: 15px;
  }

  .cookie-message {
    font-size: 13px;
  }

  .cookie-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.filled-btn a{
  background-color: #2522337a;
  transition: all 300ms;
  color: #fff;
}
.filled-btn a:hover {
  background-color: #252233;
    color: #fff;
}

.contact_info a{
   color: #fff;
   transition: all 300ms;

   &:hover{
    color: #c0826a;
   }
}