body {
      font-family: 'Quicksand', sans-serif;
      background-color: #ffffff;
      color: #111;
    }
    .navbar-custom {
      background-color: #ffffff;
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #3f48cc;
    }
    .navbar-custom h1 {
      color: #3f48cc;
      margin: 0;
    }
    .social-buttons a {
      margin-left: 0px;
      color: #3f48cc;
      font-size: 1.2rem;
      text-decoration: none;
    }
    .menu-buttons a {
      margin-left: 0px;
      color: #3f48cc;
      font-size: 1.05rem;
      text-decoration: none;
    }
    
    .hero {
      background: linear-gradient(135deg, #3f48cc, #ed1c24);
      color: white;
      font-size: 18px;
      padding: 0px 10px 1px 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .info-section {
      padding: 40px 20px;
    }
    .info-section .buttons {
      margin-top: 20px;
    }
    .study-materials-section {
      background-color: #f4f4f4;
      padding: 40px 20px;
    }
    .program-section {
      background-color: #f4f4f4;
      padding: 40px 20px;
    }
    .latest-posts-section {
      background-color: #f4f4f4;
      padding: 40px 20px;
    }
    .follow-us-on-social-media-section {
      background-color: #fff;
      padding: 40px 20px;
    }
    .section-title {
      text-align: center;
      margin-bottom: 30px;
      color: #3f48cc;
    }
    .topic-item {
      margin-bottom: 10px;
    }
    .total-time {
      font-weight: bold;
      color: #ed1c24;
    }
    .footer {
      background-color: #111;
      color: white;
      text-align: center;
      padding: 20px;
      margin-bottom: 0px;
    }
    .form-section {
      padding: 40px 20px;
      background-color: #ffffff;
    }
    /*.btn-custom {
      background-color: #3f48cc;
      color: white;
      font-weight: bold;
    }
    .btn-custom:hover {
      background-color: #2e36a3;
      color: white;
    } NOT USED*/

    .floating-form-text {
      position: fixed;
      bottom: 110px;
      right: 20px;
      background-color: white;
      border: 2px solid #ed1c24;
      color: dimgray;
      cursor: pointer;
      text-align: center;
      padding: 2px 1px;
      border-radius: 10px;
      font-weight: bold;
      text-decoration: none;
      max-width: 186px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: background-color 0.3s ease;
    }
    .floating-form-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #3f48cc;
      color: white;
      padding: 8px 8px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: background-color 0.3s ease;
    }
    .floating-form-button:hover {
      background-color: #2e36a3;
      color: white;
      text-decoration: none;
    }

    .menu-btn {
      height: max;
      font-size:14px;
      padding: 10px;
    }

    .menu-btn:hover {
      background-color: #2e36a3;
      color: white;
      text-decoration: none;
      transition-duration: 0.3s;
    }

    #insta-box {
      position: fixed;
      top: 60%;
      right: 0;
      font-size: 14px;
      transform: translateY(-50%);
      background-color: #ffffff;
      border: 2px solid #ed1c24;
      border-right: none;
      padding: 4px;
      z-index: 9999;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    }
    #insta-box a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #ed1c24;
      font-weight: bold;
    }
    #insta-box img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }

    .testimonial-slider {
      position: relative;
      overflow: hidden;
      height: 120px;
      border: 2px solid #3f48cc;
      border-radius: 10px;
      background-color: #f9f9f9;
      padding: 15px;
      color: #333;
      font-style: italic;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .testimonial-slide {
      position: absolute;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      width: 100%;
    }

    .testimonial-slide.active {
      opacity: 1;
      position: relative;
    }

   /* Add spacing between columns */
.program-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between columns */
}

/* Column styling */
.program-section .col-md-6 {
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative; /* Needed for z-index to work */
    flex: 1 1 calc(25% - 20px); /* 4 columns with gap */
    min-width: 250px;
}

/* Hover effect + z-index to bring to front */
.program-section .col-md-6:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #ddd;
    z-index: 10;
}

/* Titles */
.program-section .col-md-6 h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

/* Topic items */
.program-section .topic-item {
    padding: 2px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: #555;
}

/* Remove border from last topic item */
.program-section .topic-item:last-child {
    border-bottom: none;
}

/* Total time styling */
.program-section .total-time {
    margin-top: 15px;
    font-weight: 600;
    color: #111;
    text-align: center;
    padding-top: 10px;
    border-top: 2px solid #eee;
}

.h-pricing-card__badge {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.h-product-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background-color: #3f48cc; /* meteorite500 */
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.h-product-badge--bg-meteorite500 {
    background-color: #3f48cc; /* same as above */
}

.h-product-badge__uppercase {
    text-transform: uppercase;
}

.t-body-2-bold {
    font-weight: 700;
}

.h-pricing-card__badge-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.t-body-4-bold {
    font-weight: 700;
}


/* Mobile: fixed banner at bottom */
@media (max-width: 768px) {
  .menu-btn {
      height: max;
      padding-top: 4px;
      padding-bottom: 4px;
      font-size:14px;
    }
}

.resource-box {
  display: block;
  background: linear-gradient(135deg, #3f48cc, #ed1c24);
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.resource-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  color: white;
}

.resource-box h4 {
  font-weight: bold;
  font-size: 20px;
}


/* Image card in study materials */ 
.image-card {
  width: 300px;
  margin: 20px auto;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio for square */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-title {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}



/* Index page social media buttons */ 
.instagram-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #E1306C;
      color: white;
      padding: 16px 10px;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 18px;
      transition: background-color 0.3s, transform 0.2s;
    }

    .instagram-button:hover {
      opacity: 0.7;
      transform: scale(1.1);
      color: white;
      text-decoration: none;
    }

    .instagram-button i {
      font-size: 60px;
    }


    .youtube-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #FF0000;
      color: white;
      padding: 16px 10px;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 18px;
      transition: background-color 0.3s, transform 0.2s;
    }

    .youtube-button:hover {
      opacity: 0.7;
      transform: scale(1.1);
      color: white;
      text-decoration: none;
    }

    .youtube-button i {
      font-size: 60px;
    }

    .linkedin-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #0072B1;
      color: white;
      padding: 16px 10px;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 18px;
      transition: background-color 0.3s, transform 0.2s;
    }

    .linkedin-button:hover {
      opacity: 0.7;
      transform: scale(1.1);
      color: white;
      text-decoration: none;
    }

    .linkedin-button i {
      font-size: 60px;
    }


/* Index page instagram-wp contact buttons */ 

  .resource-box-instagram {
    display: block;
    background: linear-gradient(135deg, #3f48cc, #ed1c24);
    color: white;
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }

  .resource-box-instagram:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
  }

  .resource-box-wp h4 {
    font-weight: bold;
    font-size: 20px;
  }

  .resource-box-wp {
    display: block;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }

  .resource-box-wp:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
  }

  .resource-box-instagram h4 {
    font-weight: bold;
    font-size: 20px;
  }


  .btn-pre-register {
      background-color: #3f48cc;
      color: white;
      font-weight: bold;
      width: 100%;
      height: 50px;
      font-size: 16px;
    }
  .btn-pre-register:hover {
      background-color: #2e36a3;
      color: white;
      font-size: 17px;
    }