
:root {
    --primary-color: #ff6200; /* flashy orange */
    --secondary-color: #333333; /* deep charcoal */
    --background-color: #FFFFFF;
    --font-color: #222222;
    --font-family: 'Inter', Helvetica, sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}


button, .btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover, .btn:hover {
    background-color: darkorange;
}

h1, h2, h3, h4 {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 4rem 0;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

img.responsive {
    max-width: 100%;
    height: auto;
}

@media(max-width: 768px){
    .flex {
        flex-direction: column;
    }
}






/*
from initial file
    */

/* 


:root {
  --primary: #f1f2f2;
  --secondary: #979a9a;
  --dark: #212121;
  --light: #F3F3F3;
}

*/

.form-control-dark {
    border-color: var(--bs-gray);
  }
  .form-control-dark:focus {
    border-color: #fff;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
  }

  
  .dropdown-toggle {
    outline: 0;
  }


  
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    color: var(--font-color);
    background-color: var(--background-color);
    font-family: Helvetica;
    -webkit-font-smoothing: antialiased;
  }

/*

.container1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

*/

  /* top header nav */

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
   
   
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 1.5rem;
    overflow-y: hidden;
    
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }





/* Parent box */


.definition-box {
  position: relative; /* needed so decorative image can be absolute */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;           /* allows stacking on small screens */
  gap: 24px;
  padding-left: 32px;
  overflow: hidden;          /* prevents visual overflow from images */
  background: linear-gradient(135deg,#171717, #4e4e4e);
  color: #f3f3f3;
}

/* decorative image container (behind content) */
.background-deco {
  position: absolute;
  left: 32px;
  bottom: 0px;
  z-index: 1;                /* behind main content */
  pointer-events: none;      /* won't intercept taps/clicks */
  opacity: 0.6;             /* subtle decorative effect */
}
.background-deco img {
  display: block;
  max-width: 360px;
  height: auto;
  width: auto;
  user-select: none;

}

/* main text block */
.definition-box .content {
  position: relative;
  z-index: 3;                /* above decorative image */
  flex: 1 1 360px;
  max-width: 720px;
  text-align: left;
  padding-left: 18px;
}
.definition-box .content h3 {
  font-size: 32px;
  font-weight: 550;
  margin: 0 0 18px 0;
  color: rgb(235, 234, 231);
}
.definition-box .content p {
  margin: 0 0 18px 0;
  line-height: 1.5;
  font-size: 17px;
}

/* portrait image on the right */
.definition-box .portrait {
  z-index: 3;
  flex: 0 0 auto;
  align-self: flex-end;
}
.definition-box .portrait img {
  display: block;
  max-width: 400px;
  max-height: 500px;
  width: 100%;
  height: auto;
   
}

/* -------------------------
   Responsive rules
   ------------------------- */

/* medium / tablet: reduce sizes a bit, keep side-by-side if possible */
@media (max-width: 900px) {
  .definition-box {
    padding: 36px 20px;
  }
  .background-deco img { max-width: 260px; }
  .definition-box .content h3 { font-size: 28px; }
  .definition-box .content p { font-size: 17px; }
  .definition-box .portrait img { max-width: 260px; }
}

/* mobile: stack vertically, center content, hide decorative image for clarity */
@media (max-width: 600px) {
  .definition-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
  }

  .definition-box .content {
    order: 1;
    max-width: 100%;
    padding-left: 0;
  }

  .definition-box .portrait {
    order: 2;
    margin-top: 12px;
  }
  .definition-box .portrait img {
    max-width: 80%;
  }

  /* hide decorative on small screens so it doesn't clutter or overlap */
  .background-deco { display: none; }
}




.definition-box0 {
  background: linear-gradient(135deg,#171717, #4e4e4e );
  align-items: right;
  text-align: right;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-left: 0;
  margin-right: 0;
 
}



.definition-box1 {
  background: linear-gradient(135deg, #f5f5f5, #a4a4a4);
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 15px 18px;
  margin: 15px auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
 
  z-index: 3;
}




/* decorative background2 */
.background-deco2 {
  position: absolute;
  right: 0px;         /* 👈 anchored right */
  bottom: 24px;        /* 👈 anchored bottom */
  z-index: 1;          /* behind content */
  pointer-events: none;
  opacity: 0.5;       /* subtle effect */
}
.background-deco2 img {
  display: block;
  max-width: 380px;
  height: auto;
  user-select: none;
}


/* responsive behavior */
@media (max-width: 900px) {
  .background-deco2 img {
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .background-deco2 {
    display: none; /* hide on small screens */
  }
}






.button1 {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: 1px solid white;
    padding: 0.8rem 2.8rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 550;
    transition: background-color 0.3s;
}

button:hover, .btn:hover {
    background-color: rgb(255, 113, 42);
}


.fa-space-invader {
  color: #ff5a1f; /* flashy orange brand color */
  font-size: 32px;
}



/* section what */ 

.what-section {
  text-align: center;
  padding: 2rem 2rem;
  z-index: 6;
  background: #f4f4f4; /* light background to separate from How section */
}

.what-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #222;
}

/* Grid layout */
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1210px;
  margin: 0 auto;
   z-index: 6;
}

/* Cards */
.what-card {
  padding: 1.2rem;
   z-index: 6;
  border-radius: 16px;
  background: #fff;
  border: 2px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.what-card:hover {
  border-color: var(--brand-orange, #ff6600);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.what-card .icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--brand-orange, #ff6600);
  transition: color 0.3s ease;
}

.what-card:hover .icon {
  color: #d6d6d6;
}

.what-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}


.what-card:hover h3 {
  color: var(--brand-orange, #ff6600);
}


.what-card p {
  font-size: 1rem;
  color: #555;
}



/* icons */


.icons {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--brand-orange, #ff6600);
  transition: color 0.3s ease;
}




/* section how */

/* How Section */
.how-section {
  background: linear-gradient(135deg,#171717, #4e4e4e );
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #eee;
}

/* Carousel */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;                 /* slides side by side */
  transition: transform 0.5s ease-in-out;
  padding-top: 8px;
}

.carousel-slide {
  min-width: 100%;               /* one slide visible */
  min-height: 300px;
}

.carousel-card {
  display: block;
  background: #212121;
  border-radius: 16px;
  padding: 50px 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 1px;
}

.carousel-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ff7c2a;
}

.carousel-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
  text-decoration: none;
  color: #f7f7f7;
}

.carousel-card:hover {
  background: #333333;
  transform: translateY(-5px);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}



/* Bio section */



.definition-box4 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  padding: 32px;
  background: #f9f9f9; /* adjust to match your theme */
  flex-wrap: wrap;
}

.definition-box4 .portrait img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.definition-box4 .about-text {
  flex: 1 1 300px;
  text-align: left;
  margin-left: 26px;
}

.definition-box4 h2 {
  margin-bottom: 8px;
}

.definition-box4 .divider {
  color: rgb(255, 106, 0);
  margin: 0 0 24px 0;
}

/* 📱 On mobile: stack portrait above text */
@media (max-width: 768px) {
  .definition-box1 {
    flex-direction: column;
    text-align: center;
  }

  .definition-box4 .portrait img {
    margin: 0 auto 20px auto;
  }

  .definition-box4 .about-text {
    text-align: center;
  }
}


.linkedin-icon {
  color: #ff6600; /* orange, change to #000 for black or #555 for grey */
  font-size: 32px; /* adjust size */
  transition: color 0.3s;
}

.linkedin-icon:hover {
  color: #0077b5; /* LinkedIn blue on hover */
}



/* mentoring */


.mentoring-container {
  display: flex;
  align-items: center;      /* vertically align */
  justify-content: space-between; 
  color: #f3f3f3;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: 26px;
}

.mentoring-text {
  max-width: 55%;           /* text column */
  line-height: 1.7;
}

.mentoring-text p {
  margin-bottom: 20px;
}

.mentoring-text button {
  box-shadow: 1px 2px 4px rgba(0,0,0,0.16),
              2px 2px 6px rgba(0,0,0,0.11);
  margin-top: 10px;
}




/* gamification section */


.definition-box00 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;           /* allows stacking on small screens */
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-right: 32px;
  overflow: hidden; /* ensures no weird scrollbars */
  background: linear-gradient(135deg,#f0f1f1, #a3a3a3);
  color: #000000;
}


/* main text block */
.definition-box00 .content {
  position: relative;
  z-index: 3;                /* above decorative image */
  flex: 1 1 360px;
  max-width: 720px;
  text-align: left;
  padding-right: 42px;
}
.definition-box00 .content h3 {
  font-size: 32px;
  font-weight: 550;
  margin: 0 0 18px 0;
  color: rgb(51, 51, 51);
}
.definition-box00 .content p {
  margin: 0 0 18px 0;
  line-height: 1.6;
  font-size: 17px;
}

/* portrait image on the left */
.definition-box00 .portrait {
  z-index: 3;
  flex: 0 0 auto;
  align-self: flex-start;
  margin-left: 0;
}
.definition-box00 .portrait img {
  display: block;
  max-width: 400px;
  max-height: 500px;
  width: 100%;
  height: auto;
   
}

/* -------------------------
   Responsive rules
   ------------------------- */

/* medium / tablet: reduce sizes a bit, keep side-by-side if possible */
@media (max-width: 900px) {
  .definition-box00 {
    padding: 36px 20px;
  }
  .background-deco img { max-width: 260px; }
  .definition-box00 .content h3 { font-size: 28px; }
  .definition-box00 .content p { font-size: 17px; }
  .definition-box00 .portrait img { max-width: 260px; }
}

/* mobile: stack vertically, center content, hide decorative image for clarity */
@media (max-width: 600px) {
  .definition-box00 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
  }

  .definition-box00 .content {
    order: 1;
    max-width: 100%;
    padding-left: 0;
  }

  .definition-box00 .portrait {
    order: 2;
    margin-top: 12px;
  }
  .definition-box00 .portrait img {
    max-width: 80%;
  }

  /* hide decorative on small screens so it doesn't clutter or overlap */
  .background-deco { display: none; }
}








/* HLC section */


.learning-text {
  flex: 1;
  text-align: left;
  padding-left: 46px; /* keep spacing on the left */
  z-index: 2;
  font-size: 17px;
  color: #333333;
  margin-top: -66px;
}

.learning-text span {
  font-size: 32px;
  font-weight: 550;
}

.learning-image-right {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.learning-image-right img {
  display: block;
  width: 460px;
  height: auto;
  margin: 0;
  padding: 0;
}

.learning-decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.learning-decoration img {
  display: block;
  width: 300px;
  height: auto;
  opacity: 0.6;
}



/* ready to start */

.ready-container {
  display: flex;
  align-items: flex-start;   /* text aligned top */
  justify-content: flex-start;
  gap: 30px;
  margin: 0;
  padding: 10px 0;
  
}

.ready-portrait img {
  display: block;
  width: 182px;
  height: auto;
  flex-shrink: 0;
}

.ready-content {
  flex: 1;
}

/* Mobile: stack portrait above text */
@media (max-width: 768px) {
  .ready-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ready-portrait img {
    margin-bottom: 20px;
  }
}




  /* Pricing tables */


  
h1.demo-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 2px;
}

h1.demo-title a {
  font-size: 16px;
  font-weight: 300;
}

.pricing-table {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 1200px;  
  margin: 0 auto;
  background: #ffffff00;
  margin-bottom: 6px;
  
}

.pricing-table .ptable-item {
  width: 33%; 
  padding: 0 12px;  
  margin-bottom: 30px;
  
}


@media (max-width: 992px) {
  .pricing-table .ptable-item {
    width: 25%;  
  }
}

@media (max-width: 768px) {
  .pricing-table .ptable-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .pricing-table .ptable-item {
    width: 100%;
  }
}

.pricing-table .ptable-single {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.pricing-table .ptable-status ,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
  position: relative;
  width: 100%;
  text-align: center;
}

.pricing-table .ptable-single {
  background: #f6f8fa;
}

.pricing-table .ptable-single:hover {
  box-shadow: 0 0 10px #999999;
}

.pricing-table .ptable-header {
  margin: 0 24px; 
  padding: 20px 0 32px 0; 
  width: auto;
  background: #4a4a4a;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #f6f8fa;
}

.pricing-table .ptable-header::before {
  right: 50%;
  border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
  left: 50%;
  border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
  background: #FF6A1F;
}

.pricing-table .ptable-status {
  margin-top: 0px; 
}

.pricing-table .ptable-status span {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 34px;
  padding: 5px 0;
  text-align: center;
  color: #000000;
  font-size: 14px;
  font-weight: 660;
  letter-spacing: 1px;
  background: #FFB701;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #FF6A1F;
}

.pricing-table .ptable-status span::before {
  right: 50%;
  border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
  left: 50%;
  border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
  color: #ffffff;
  font-size: 22px;  
  font-weight: 300;
  letter-spacing: 2px;
}

.pricing-table .ptable-price h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
  position: absolute;
  font-size: 18px;
  font-weight: 300;
  margin-top: 16px;
  margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 300;
}

.pricing-table .ptable-body {
  padding: 16px 0;  
}

.pricing-table .ptable-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table .ptable-description ul li {
  color: #464547;
  font-size: 15px; 
  font-weight: 300;
  letter-spacing: 1px;
  padding: 6px; 
  border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li:last-child {
  border: none;
}

.pricing-table .ptable-footer {
  padding-bottom: 30px;
}

.pricing-table .ptable-action a {
  display: inline-block;
  padding: 10px 20px;
  color: #FF6A1F;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  background: #000000;
}

.pricing-table .ptable-action a:hover {
  color: #000000;
  background: #fc712b;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
  color: #000000;
  background: #FF6A1F;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
  color: #FF6A1F;
  background: #000000;
}




.pricing-table .ptable-item1 {
  width: 25%; 
  padding: 0 12px;  
  margin-bottom: 30px;
  
}


@media (max-width: 992px) {
  .pricing-table .ptable-item1 {
    width: 25%;  
  }
}

@media (max-width: 768px) {
  .pricing-table .ptable-item1 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .pricing-table .ptable-item1 {
    width: 100%;
  }
}



/* optim footer */

@media (max-width: 520px) {
    .footer ul li {
        margin: 5px 8px; /* smaller spacing */
        font-size: 14px;
    }
    .footer p {
        font-size: 14px;
    }
}


html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

img, svg {
  max-width: 100%;
  height: auto;
}






/* Improve font loading behavior for Font Awesome */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff") format("woff");
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff") format("woff");
  font-weight: 400;
}

