:root {

    /**
     * colors
     */
  
    --ultramarine-blue-10: hsla(235, 70%, 60%, 0.1);
    --ultramarine-blue: #CE1602;
    --orange-peel_10: hsla(36, 100%, 55%, 0.1);
    --space-cadet_20: hsla(248, 32%, 23%, 0.2);
    --space-cadet_80: hsla(247, 35%, 19%, 0.8);
    --space-cadet-2: #333;
    --old-lavender: hsl(251, 9%, 46%);
    --orange-peel: hsl(36, 100%, 55%);
    --tart-orange: hsl(0, 100%, 63%);
    --light-gray: hsl(0, 0%, 80%);
    --cultured-1: hsl(0, 0%, 96%);
    --cultured-2: hsl(0, 0%, 93%);
    --coral-10: hsla(14, 95%, 66%, 0.1);
    --white_10: hsla(0deg, 0%, 100%, 0.1);
    --black_80: hsla(0, 0%, 0%, 0.8);
    --pumpkin: hsl(26, 98%, 49%);
    --white: hsl(0, 0%, 100%);
    --btn-purple:var(--ultramarine-blue); 
    --course-text-medium: #6E6E6E;
    --course-border-light: #DEDFE0;
    --course-bg-light: #F5F7F8;
    --course-bg-lighter: #F5F7FA;
  
    /**
     * typography
     */
  
    --ff-urbanist: 'Urbanist', sans-serif;
  
    --fs-1: 4rem;
    --fs-2: 3.2rem;
    --fs-3: 2.4rem;
    --fs-4: 2rem;
    --fs-5: 1.8rem;
    --fs-6: 1.4rem;
    --fs-7: 1.2rem;
  
  
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
  
    /**
     * spacing
     */
  
    --section-padding: 80px;
  
    /**
     * box shadow
     */
  
    --shadow-1: 0 8px 20px hsla(0, 0%, 0%, 0.06);
    --shadow-2: 0px 4px 10px color(srgb 0 0 0 / 5%);
  
    /**
     * border radius
     */
  
    --radius-4: 4px;
    --radius-6: 6px;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
  
  }
  

  
  
  /*-----------------------------------*\
    #RESET
  \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  img { height: auto; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  input { width: 100%; }
  
  button { cursor: pointer; }
  
  ion-icon { pointer-events: none; }
  
  address { font-style: normal; }
    .program-img-size {
      max-height: 124px;
    }
  
  html {
    font-family: var(--ff-urbanist);
    font-size: 10px;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--white);
    color: var(--old-lavender);
    font-size: 1.6rem;
    font-weight: var(--fw-500);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  :focus-visible { outline-offset: 4px; }
  
  ::-webkit-scrollbar { width: 12px; }
  
  ::-webkit-scrollbar-track { background-color: var(--cultured-1); }
  
  ::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }
  
  ::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }
  
  .inernship{
    padding: var(--section-padding); 
  }
  
  
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  .container { padding-inline: 15px; }
 
  .abs-img { display: none; }
  
  .section-subtitle {
    color: var(--ultramarine-blue);
    text-transform: uppercase;
    font-weight: var(--fw-800);
    letter-spacing: 2px;
    margin-block-end: 5px;
  }
  
  .h1,
  .h2,
  .h3 {
    color: var(--space-cadet-2);
    line-height: 1.3;
    font-weight: var(--fw-800);
  }
  
  .h1 { font-size: var(--fs-1); }
  
  .h2 { font-size: var(--fs-2); }
  
  .h3 {
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
  }
  
  .btn {
    font-weight: var(--fw-700); 
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: var(--radius-6);
    transition: var(--transition-1);
    width: 109px;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--ultramarine-blue);
    color: var(--white);
    border-color: transparent;
  }
  
  .btn-primary:is(:hover, :focus) { background-color: var(--space-cadet-2); }
  
  .btn-secondary {
    background-color: var(--white);
    color: var(--ultramarine-blue);
  }
  
  .btn-secondary:is(:hover, :focus) {
    background-color: var(--pumpkin);
    color: var(--white);
  }
  
  .w-100 { width: 100%; }
  
  .section {
    
  
  }
  
  .grid-list {
    display: grid;
    gap: 30px;
  }
  
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  
  
  /*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/
  
  .login-btn .span { display: none; }
  
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding-block: 20px;
    z-index: 4;
  }
  
  .header.active {
    background-color: var(--white);
    box-shadow: var(--shadow-2);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--ultramarine-blue);
    font-size: 2.4rem;
    font-weight: var(--fw-800);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .header-action-btn {
    background-color: var(--white);
    color: var(--ultramarine-blue);
    padding: 12px;
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-1);
  }
 
  
  .header-action-btn ion-icon { --ionicon-stroke-width: 40px; }
  
   
  
   
   
  .overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black_80);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  
  
  /*-----------------------------------*\
    #HERO
  \*-----------------------------------*/
  
  .hero { 
    height: 60vh; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .hero .container {
    display: grid;
    /* gap: 30px; */
  }
  
  .hero-title { margin-block-end: 25px; }
  
  .hero-text {
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    margin-block-end: 30px;
  }
  
  .hero-banner {
    max-width: max-content;
    margin-inline: auto;
  }
  
  section
  {
    padding: 75px;
  }

  @media  screen and (max-width: 767px)
  {
    section
    {
      padding: 20px;
    }
  }
  .how-and-who-sec{
    background: url('../vodacom_image/sec_bg.png');
    background-clip: border-box; 
     background-repeat: no-repeat;
      background-size: cover;
    height: 70vh;
    ;
  }

  .about_us_sec{
    background: url('../vodacom_image/about_is_bg.svg');
    background-clip: border-box; 
     background-repeat: no-repeat;
      background-size: cover;
    
    ;
  }
 
  @media  screen and (max-width: 940px)
  {
    .hero
    {
      height: inherit!important;
    }
  }

  /* ---------------------PAGE SCROLLER ------------------------*/

::-webkit-scrollbar {
  width: 7px;
  height: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--old-lavender);
  border: 1px solid var(--white);
  border-radius: 10px;
}



  /*-----------------------------------*\
    #CATEGORY
  \*-----------------------------------*/
  
  .category :is(.section-subtitle, .section-title) { text-align: center; }
  
  .category .section-title { margin-block-end: 60px; }
  
  .category-card {
    --title-color: var(--space-cadet-2);
    --meta-color: var(--old-lavender);
    --icon-color: var(--ultramarine-blue);
    --icon-bg: var(--white);
  
    background-color: var(--cultured-1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: var(--radius-6);
    transition: var(--transition-1);
  }
  
  .category-card .card-icon {
    background-color: var(--icon-bg);
    color: var(--icon-color);
    font-size: 30px;
    height: 60px;
    min-width: 60px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-4);
    transition: var(--transition-1);
  }
  
  .category-card .card-title { color: var(--title-color); }
  
  .category-card .card-meta {
    color: var(--meta-color);
    font-size: var(--fs-7);
    margin-block-start: 5px;
  }
  
  .category-card:is(:hover, :focus-within) {
    --title-color: var(--white);
    --meta-color: var(--white);
    --icon-color: var(--white);
    --icon-bg: var(--white_10);
  
    background-color: var(--ultramarine-blue);
  }
  
  .category-card h3{
    font-size: var(--fs-6);
  }
  



  .programme :is(.section-subtitle, .section-title) { text-align: center; }
  
  .programme .section-title { margin-block-end: 60px; }
  
  .programme-card {
    --title-color: var(--space-cadet-2);
    --meta-color: var(--old-lavender);
    --icon-color: var(--ultramarine-blue);
    --icon-bg: var(--white);
  
    background-color: var(--cultured-1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: var(--radius-6);
    transition: var(--transition-1);
    cursor: pointer;
  }
  
  .programme-card .card-icon {
    background-color: #CE1602;
    color: #fff;
    font-size: 30px;
    height: 70px;
    min-width: 70px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-4);
    transition: var(--transition-1);
  }
  .modal-header .programme-card .card-icon
  {
    height: 80px;
    min-width: 80px;
  }
  
  .programme-card .card-title { color: var(--title-color); }
  
  .programme-card .card-meta {
    color: var(--meta-color);
    font-size: var(--fs-7);
    margin-block-start: 5px;
  }
  
  .programme-card:is(:hover, :focus-within) {
     --meta-color: var(--white);
    --icon-color: var(--white);
    --icon-bg: var(--white_10);
  
    background-color: var(--ultramarine-blue);
  }
  
  .programme-card h3{
    font-size: var(--fs-6);
  }

  /**
   * How to
   */

   .how-to { padding-block: 180px; }

   .how-to .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 80px;
   }
 
   .how-to-banner {
     position: relative;
     margin-block-end: 0;
   }
 
   .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

.how-to { padding-block-start: 120px; }

.how-to-banner {
  background-color: var(--independence);
  border-radius: var(--radius-10);
  margin-block-end: 30px;
}

.how-to-banner > .img-cover { border-radius: inherit; }

.how-to :is(.section-title, .section-subtitle, .section-text) { text-align: left; }

.how-to :is(.section-title, .section-text) { margin-block-end: 30px; }

.intern-text{
  text-align: left;

}

.intern-lists
{
  margin-left: 30px;
  font-size: 13px;
  font-weight:100;
}
.img-style{
  border-radius: 20px;
}
.apply-btn
{
  margin-top: 15px;
  min-height: 30px;
  max-width: max-content;
  font-size: 15px;
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
  padding: 10px 30px;
  border-radius: var(--radius-6);
  transition: var(--transition-1);
}


 /**
   * How to image on
   */


.how-to { padding-block: 180px; }

   .how-to .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 80px;
   }
 
   .how-to-banner {
     position: relative;
     margin-block-end: 0;
   }
 
   
 


   .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

.how-to { padding-block-start: 120px; }

.how-to-banner {
  background-color: var(--independence);
  border-radius: var(--radius-10);
  margin-block-end: 30px;
}

.how-to-banner > .img-cover { border-radius: inherit; }

.how-to :is(.section-title, .section-subtitle, .section-text) { text-align: left; }

.how-to :is(.section-title, .section-text) { margin-block-end: 30px; }


.internship_banner{

  padding-block-start: calc(60px + var(--section-padding));

}

  
  /*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/
  
  .footer {
    background-color: var(--space-cadet-2);
    color: var(--white);
  }

  
  .footer-top {
    display: grid;
    gap: 60px;
    padding-block: 60px 50px;
  }
  
  .footer .logo { color: var(--white); }
  
  .footer .section-text { margin-block: 25px 35px; }
  
  .social-list {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-link {
    background-color: var(--white_10);
    font-size: 22px;
    padding: 14px;
    border-radius: var(--radius-4);
    transition: var(--transition-1);
  }
  
  .social-link:is(:hover, :focus) { background-color: var(--ultramarine-blue); }
  
  .footer-list-title {
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    margin-block-end: 20px;
  }
  
  .footer-link,
  .footer-item {
    display: flex;
    gap: 8px;
  }
  
  .footer-link {
    align-items: center;
    padding-block: 10px;
    transition: var(--transition-1);
  }
  
  .footer-link:not(address):is(:hover, :focus) { color: var(--ultramarine-blue); }
  
  .footer-item { align-items: baseline; }
  
  .footer-item address { flex: 1; }
  
  .footer-item ion-icon { --ionicon-stroke-width: 50px; }
  
  .footer-bottom {
    text-align: center;
    padding-block: 20px;
  }
  
  .copyright-link {
    display: inline-block;
    font-weight: var(--fw-700);
    transition: var(--transition-1);
  }
  
  .copyright-link:is(:hover, :focus) { color: var(--ultramarine-blue); }
  
  
  
  
  
  /*-----------------------------------*\
    #BACK TO TOP
  \*-----------------------------------*/
  
  .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background-color: var(--orange-peel);
    color: var(--white);
    font-size: 22px;
    padding: 12px;
    border-radius: 50%;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
  }
  
  .back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
  }
  
  
  
  
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  /**
   * responsive for larger than 300px screen
   */
@media (min-width: 300px) {
  
  .login-btn .span { display:inline-block; }
  
  .login-btn {
    display:block;
    align-items: center;
    gap: 3px;
    background-color: var(--ultramarine-blue);
    color: var(--white);
    min-height: 30px;
    padding-inline: 5px;
    font-weight: var(--fw-300);
    transition: var(--transition-1);
  }

  .login-btn ion-icon { --ionicon-stroke-width: 70px; }

  .login-btn:is(:hover, :focus) { background-color: var(--space-cadet-2);}
  .micsetaLogo{
    width: 90px;
    height: 60px;
    
  }
}
   @media(max-width:800px){
    .mobile{
     display:block;
    }
    .desktop{
      display:none;
     }

  }
  @media(min-width:801px){
    .desktop{
     display:block;
    }
    .mobile{
      display:none;
     }

  }
  /**
   * responsive for larger than 575px screen
   */
  @media (min-width: 575px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 4rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 540px;
      margin-inline: auto;
    }
  
  
  
    /**
     * HEADER
     */
  
    .header .container { max-width: unset; }
  
  
  
    /**
     * ABOUT
     */
  
    .about-banner { position: relative; }
  
    .about .abs-img-1 {
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      border-radius: var(--radius-4);
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top { grid-template-columns: 1fr 1fr; }
  
    .footer-brand { grid-column: 1 / 3; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 740px; }
  
    .grid-list { grid-template-columns: 1fr 1fr; }
  
  
  
    /**
     * HEADER
     */
  
    .header .container { padding-inline: 30px; }
  
    .header-actions { gap: 15px; }
  
    .header-action-btn:not(.login-btn) { padding: 17px; }
  
    .login-btn .span { display: block; }
  
    .login-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background-color: var(--ultramarine-blue);
      color: var(--white);
      min-height: 50px;
      padding-inline: 25px;
      font-weight: var(--fw-700);
      transition: var(--transition-1);
    }
  
    .login-btn ion-icon { --ionicon-stroke-width: 70px; }
  
    .login-btn:is(:hover, :focus) { background-color: var(--space-cadet-2); }
  
  
 
    /**
     * FOOTER
     */
  
    .footer-top {
      gap: 30px;
      padding-block: 80px 70px;
    }
  
    .footer-brand { grid-column: auto; }
  
    .footer-bottom { padding-block: 30px; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 5rem;
  
      /**
       * spacing
       */
  
      --section-padding: 120px;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 960px; }
  
  
  
    /**
     * HERO
     */
  
    .hero { overflow: hidden; }
  
    .hero .container {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  
    .hero .abs-img {
      display: block;
      position: absolute;
    }
  
    .hero-banner {
      position: relative;
      padding-inline-end: 50px;
      margin-block-start: 180px;
    }
  
    .hero .abs-img-1 {
      width: 250px;
      right: -100px;
      top: -60px;
    }
  
    .hero .abs-img-2 {
      top: -180px;
      right: 80px;
    }

    .intern-banner {
      position: relative;
      padding-inline-end: 50px;
      margin-block-start: 180px;
    }
  
  
    /**
     * CATEGORY
     */
  
    .category .grid-list { grid-template-columns: repeat(3, 1fr); }
  
    .category-card { height: 100%; }

    .programme .grid-list { grid-template-columns: repeat(3, 1fr); }
  
    .programme-card { height: 100%; }
  
  
  
    /**
     * CTA
     */
  
    .cta .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 30px;
    }
  
    .cta .section-text { margin-block: 30px; }
  
    .cta-banner {
      margin-block-end: 0;
      order: 1;
    }
  
  
  
    /**
     * EVENT
     */
  
    .event-card .card-address { --fs-6: 1.6rem; }
  
  
  
    /**
     * NEWSLETTER
     */
  
    .newsletter .section-title { margin-block-end: 60px; }
  
    .newsletter-form {
      max-width: 650px;
      margin-inline: auto;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 6.8rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1180px; }
  
  
  
    /**
     * HEADER
     */
  
  
    .header { padding-block: 20px;
    background-color: #fff; }
  
    .header.active { padding-block: 20px; }
  
    .header.header-anim { animation: slide-in 1s ease forwards; }
  
    @keyframes slide-in {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(0); }
    }
  
  
  
  
  
    /**
     * HERO
     */
  
    .hero .abs-img-1 { width: max-content; }
  
    .hero .abs-img-2 { right: 120px; }
  
  
  
    /**
     * ABOUT
     */
  
    .about .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
  
    .about-banner { margin-inline-start: -30px; }
  
  
  
    /**
     * COURSE, EVENT
     */
  
    :is(.course, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top { padding-block: 120px 80px; }
  
  }

  /*-----------------------------------*\
    #SUCCESS STORIES STYLE
  \*-----------------------------------*/

  .timeline {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 700px;
    position: relative;
  }
  .timeline-content-title {
    font-weight: normal;
    font-size: 66px;
    margin: -10px 0 0 0;
    transition: .4s;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: "Pathway Gothic One", sans-serif;;
    color: #f5f5f5;
  }
  .timeline-content-desc {
    margin: 0;
    font-size: 15px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.7);
    font-family: Poppins, sans-serif;
    font-weight: normal;
    line-height: 25px;
  }
  .timeline:before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: "";
    background: rgba(255, 255, 255, 0.07);
  }
  @media only screen and (max-width: 767px) {
    .timeline:before {
      left: 40px;
    }
  }
  .timeline-item {
    padding: 40px 0;
    opacity: .3;
    filter: blur(1px);
    transition: .5s;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: flex;
    position: relative;
    transform: translateY(-80px);
  }
  .timeline-item:before {
    content: attr(data-text);
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family:    "Pathway Gothic One", sans-serif;;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    top: 70%;
    margin-top: -5px;
    padding-left: 15px;
    opacity: 0;
    right: calc(-100% - 56px );
  }
  .timeline-item:nth-child(even) {
    align-self: flex-end;
  }
  .timeline-item:nth-child(even):before {
    right: auto;
    text-align: right;
    left: calc(-100% - 56px );
    padding-left: 0;
    border-left: none;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    padding-right: 15px;
  }
  .timeline-item-active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
  .timeline-item-active:before {
    top: 50%;
    transition: .3s all .2s;
    opacity: 1;
  }
  .timeline-item-active .timeline-content-title {
    margin: -50px 0 20px 0;
  }
  @media only screen and (max-width: 767px) {
    .timeline-item {
      align-self: baseline !important;
      width: 100%;
      padding: 0 30px 150px 80px;
    }
    .timeline-item:before {
      left: 10px !important;
      padding: 0 !important;
      top: 50px;
      text-align: center !important;
      width: 60px;
      border: none !important;
    }
    .timeline-item:last-child {
      padding-bottom: 40px;
    }
  }
  .timeline__img {
    max-width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  }
  .timeline-container {
    width: 100%;
    position: relative;
    padding: 80px 0;
    background-attachment: fixed;
    background-size: cover;
  }
  .timeline-container:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 99, 99, 0.8);
    content: "";
  }
  .timeline-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  .timeline-header-title {
    color: #fff;
    font-size: 46px;
    font-family: Poppins, sans-serif;
    font-weight: normal;
    margin: 0;
  }
  .timeline-header-subtitle {
    color: #5a1077;
    font-family: "Pathway Gothic One", sans-serif;
    font-size: 16px;
    letter-spacing: 5px;
    margin: 10px 0 0 0;
    font-weight: normal;
  }
  
  .demo-footer {
    padding: 60px 0;
    text-align: center;
  }
  .demo-footer a {
    color: #5a1077;
    display: inline-block;
    font-family: Cardo;
  }

.btn-size{

  width: 50%;
  height: 50%;
  border-radius: 10px;
}


 .lists{

    list-style-type: lower-alpha;

  
}
 
.header-card-secondary {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: url('../vodacom_image/bg_impact.png');
  background-clip: border-box; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
}



 /* ------------------------------NAVBAR------------------------------ */
 .nav-bar-img
 {
   margin-left: 89px;
   display: none;
 }

 

 button:focus:not(:focus-visible) {
   outline: transparent!;
}

#main-nav .navbar-toggler {
 font-size: 16px;
 padding: 0.5rem 1rem;
 color: #212529;
 border: transparent
}

.navbar-nav
{
 font-size:13px;
}
@media screen and (min-width:992px) and (max-width:1131px){
 .navbar-nav
{
 font-size:10px;
}
}

.header-btn.btn:hover
{
 background-color: #1d335e;
}

@media (max-width: 1290px)
{
 .collapse:not(.show) {
   display: none;
 }


}


@media screen and (min-width:992) {
 .dropdown:hover .dropdown-toggle::after{
   border-top: 0;
   border-bottom: .3em solid;
 }
}
.dropdown:hover .dropdown-menu
{
 display: block;
 margin-top:0;
 margin-left: auto;
}

.dropdown .dropdown-menu
{
 display: none; 
}

 

@media screen and (max-width:1299px) and (min-width:1125px) {
 #navbar-responsive a, .btn {
   letter-spacing: 0.8px;
   font-size: x-small;
 }
}
 

 #navbar-responsive a, .btn {
  letter-spacing: 0.4px;
  font-size: xx-small;
  width: auto;
  font-weight: 600;
 }

 #main-nav .collapse
 { 
   margin: 10px;
 }
 

 
/* -- Logo on small devices */
@media  screen and (min-width:992px) and (max-width:1388px)  {

nav sup { 
 display: none;
}
}
 

.text-lg-1 {
  font-size: 40px !important;
}

.text-lg-2{
  font-size: 20px !important;
}

 
@media screen and (width <= 768px) {
  .text-lg-1 {
    font-size: 20px !important;
  }
  
  .text-lg-2{
    font-size: 10px !important;
  }
}

.course-card {
  position: relative; /* Ensure the card acts as a context for the popup */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  background: white;
  height: 100%;
  z-index: 1; /* Default stacking order for non-hovered cards */
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 10%);
  z-index: 5; /* Bring the hovered card to the foreground */
}

.course-img {
  height: 160px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ultramarine-blue);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.category-badge {
  background: color(blue alpha(0.1));
  color: var(--bs-primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.course-stats {
  font-size: 0.8rem;
  color: #6c757d;
}

.btn-enroll {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.filters {
  background: color(rgba(240, 238, 238, 0.61));
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px color(rgba(0, 0, 0, 0.05));
}

.course-popup {
  display: none;
  position: absolute;
  z-index: 10; /* Ensure the popup is above other elements */
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 20%);
  width: 300px;
  top: 0;
  left: 105%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: visible; /* Ensure content is not clipped */
}

.course-card:hover .course-popup {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.course-card ~ .course-card {
  z-index: 0; /* Ensure neighboring cards remain in the background */
}

.cart-icon {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--ultramarine-blue);
  color: black;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}



.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color(rgba(0, 0, 0, 0.5));
  z-index: 1000;
}

.modal-content {
  position: relative;
  background: white;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.button-group {
  display: flex;
  gap: 10px;
}

.btn-add-cart {
  flex: 1;
}


 /* Navbar styles */
 .navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary-color) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.navbar .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
}

.btn-login {
  color: #333;
  background: transparent;
}

.btn-sm {
  color: #000;
  border: 1px solid #ccc;
  margin-left: 10px;
}

  /* Hover state */
  .btn-sm:hover {
    background-color: var(--ultramarine-blue); /* Change to your preferred color */
    color: #fff;
    border-color: var(--ultramarine-blue); /* Same as background color */
  }
  
.btn-signup {
  background-color: var(--btn-purple);
  color: white;
  margin-left: 10px;
}

.btn-signup:hover {
  background-color: #00b4d1;
}

/* Hero section */
.hero  .global-section{
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
  background-color: white;
}

.hero .small-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.hero .color-text {
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 0;
  color: var(--primary-orange);
}

.hero h1 {
  font-size: 2.0rem;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto 0;
}

.btn-signup-hero {
  background-color: #00c7e6;
  color: white;
  font-weight: 500;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn-signup-hero:hover {
  background-color: #00b4d1;
  color: white;
}

.btn-signup-hero i {
  margin-left: 8px;
}

.no-credit-text {
  font-size: 0.9rem;
  color: #999;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero h1 {
      font-size: 2.2rem;
  }
  
  .navbar .btn {
      margin: 5px;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
      font-size: 2rem;
  }
  
  .hero .color-text {
      font-size: 2rem;
  }
}

 
.courses-section {
  background-color: var(--course-bg-lighter);
}

.explore-section {
  padding: 4rem 0;
}

.explore-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--course-text-dark);
}

.explore-section .category-card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  overflow: hidden; 
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--course-text-dark);
  padding: 0px!important;
}

.explore-section .category-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.explore-section  .category-img {
  object-fit: cover;
  border-radius: 10px;
}

.explore-section .category-info {
  padding: 1rem;
}

.explore-section .category-info h3 {
  font-size: 12px;
  margin-bottom: 0.25rem;
}

.explore-section  .category-info p {
  font-size: 0.875rem;
  color: var(--course-text-medium);
  margin-bottom: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
      text-align: center;
      padding: 3rem 0;
  }
  
  .hero-content {
      margin: 0 auto 2rem;
  }
  
  .hero-title {
      font-size: 2rem;
  }
}

.footer {
  background-color: black;
}

.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
  color: white;
  transition: opacity 0.2s;
}

.footer .social-icon svg {
  width: 16px;
  height: 16px;
}

.footer .social-icon:hover {
  opacity: 0.8;
}

.copyright {
  color: var(--course-text-medium);
  font-size: 0.875rem;
}

.rounded-20
{
  border-radius: 20px;
}

.rounded-25
{
  border-radius: 25px;
}

.rounded-20
{
  border-radius: 20px
}

.hero 
{
background-clip: border-box;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}


.course-image-container {
  height: 200px; /* Fixed height for all course image containers */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .course-image {
    width: 100%;
    height: 200px; /* set a fixed height */
    object-fit: contain;
    background: #f8f9fa;
    display: block;
}

  
.get-involved-btn {
  background-color:var(--ultramarine-blue);
  color: #fff;
  font-weight: 500;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
}


.get-involved-btn:hover {
  background-color:#000;
  transform: translateY(-2px);
}


  .card-bg {
    position: relative;
    background-color: #fff;
    min-height: 400px; /* Adjust as needed */
    overflow: hidden;
  }
  
  /* Diagonal background container */
  .diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensures clicks pass through to content */
    overflow: hidden;
    border-radius: 20px; /* Match your rounded-20 class */
  }
  
  /* Primary diagonal (darker purple) */
  .diagonal-primary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88%;
    height: 80%;
    background-color:var(--ultramarine-blue);
    clip-path: polygon(100% 30%, 50% 100%, 100% 100%);
  }
  
  /* Secondary diagonal (lighter purple) */
  .diagonal-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color:#000;
    clip-path: polygon(100% 0, 30% 100%, 100% 100%);
  }
  
  .btn-add-cart{
    background-color:#000;
    border: none;
      padding: 10px 24px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s;
  
  }
  
  .btn-add-cart:hover {
    background-color:var(--ultramarine-blue);
    transform: translateY(-2px);
  }
  
