* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #eee;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box img {
    width: 48px;
    height: auto;
    border-radius: 10px;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.4);
}

.logo-box h1 {
    font-size: 24px;
    font-weight: 450;
     font-family: "Playwrite NZ Basic", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    z-index: 1000;
}

.nav {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}


.nav a {
    color: #eee;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav a:hover {
    transform: scale(1.1);
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    background: white;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.mentors {
    background: #111;
    padding: 100px 8%;
    color: #eee;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: whitesmoke;
}

.mentor-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.mentor-row.reverse {
    flex-direction: row-reverse;
}

.mentor-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    border: 2.5px solid  #be8b3e;
    transition: transform 0.4s ease;
}

.mentor-row:hover .mentor-image img {
    transform: scale(1.05);
}

.mentor-info {
    max-width: 520px;
}

.mentor-info h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.mentor-info span {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mentor-info p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

.mentor-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.mentor-quote {
    font-style: italic;
    font-size: 14px;
    opacity: 0.85;
    max-width: 260px;
    color: #ff9800;
}

.footer {
    background-color: #111;
    padding: 30px 0;
    text-align: center;
}

.footer .social-icons a {
    display: inline-block;
    color: #ff9800;
    font-size: 28px;
    margin: 0 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
    transform: scale(1.15);
}


.contact-dropdown {
    position: relative;
}

.contact-box {
    display: none;
    position: absolute;
    top: 115%;
    left: -60%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
    z-index: 1000;
}

.contact-dropdown:hover .contact-box {
    display: block;
}

.contact-box p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-box p:hover {
    color: #ff9800;
}

.dropdown {
    position: relative;
}

.dropdown-box {
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 75vw;
    max-width: 900px;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.big-box {
    width: 700px;
    padding: 20px;
    font-size: 15px;
}


.prices {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    max-width: 100%;
}

.prices img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.4);
}

.info-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 18px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.info-box p {
    font-size: 14px;
    line-height: 1.6;
}


.partnerlogo {
    width: 220px;
    height: auto;
    border-radius: 12px;
    margin: 18px;
}

.partners {
    position: absolute;
    top: 115%;
    left: -200%;
    transform: translateX(100%) translateY(10px);
    width: 75vw;
    max-width: 900px;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.partners p {
    line-height: 28px;
}


@media (max-width: 768px) {

  body {
    font-size: 20px;
  }

  p {
    font-size: 20px;
    line-height: 1.8;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 22px;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .nav a {
    font-size: 21px;
  }

  .mentor-row,
  .mentor-row.reverse {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 100%;
    margin: 0 auto 90px;
  }

  .mentor-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mentor-info {
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
  }

  .mentor-info h3 {
    font-size: 32px;
  }

  .mentor-info span {
    font-size: 20px;
    display: block;
    margin-top: 6px;
  }

  .mentor-info p {
    font-size: 22px;
    margin-top: 22px;
  }

  .mentor-meta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mentor-quote {
    max-width: 92%;
    font-size: 20px;
    margin: 28px auto 0;
    text-align: center;
  }

  .prices {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-box p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {

  body {
    font-size: 21px !important;
  }

  p {
    font-size: 21px !important;
    line-height: 1.8;
  }

  .mentor-row,
  .mentor-row.reverse {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 90px !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .mentor-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .mentor-info {
    width: 90% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .mentor-info h3 {
    font-size: 38px !important;
  }

  .mentor-info span {
    font-size: 29px !important;
    display: block;
    margin-top: 6px;
  }

  .mentor-info p {
    font-size: 20px !important;
    margin-top: 22px;
  }

  .mentor-quote,
  .mentor-meta,
  .mentor-row q {
    width: 90% !important;
    max-width: 600px !important;
    margin: 26px auto 0 !important;
    font-size: 16px !important;
    text-align: center !important;
    display: block !important;
  }
}
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.95);
    padding: 20px 0;
    margin-top: 15px;
    border-radius: 12px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 22px;
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-box,
  .contact-dropdown:hover .contact-box {
    display: none;
  }


  .dropdown-box,
  .contact-box,
  .partners {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none !important; 
  }
}


.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;

  background: rgba(0, 0, 0, 0.95);
  padding: 18px 0;
  margin-top: 12px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}
.mobile-nav-links:hover{
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-nav.active {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 5%;
    background: rgba(0,0,0,0.97);
    padding: 18px 20px;
    border-radius: 12px;
    width: 220px;
    text-align: center;
    z-index: 2000;
  }

  .mobile-nav a {
    display: block;
    font-size: 20px;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
  }

  .mobile-nav.active {
    display: block;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.modal-content {
  background: #111;
  padding: 25px;
  border-radius: 14px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  cursor: pointer;
  color: #4530ff;
}
.close-btn:hover {
  transform: scale(1.15);
}

.modal .prices {
  margin-bottom: 25px;
}

.modal img {
  border-radius: 10px;
}

.modal p {
  font-size: 16px;
}
.modal-content::-webkit-scrollbar {
    width: 10px;              
}

.modal-content::-webkit-scrollbar-track {
    background: #1a1a1a;  
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: black; 
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: black;     
}
@media (max-width: 768px) {
  .modal-content {
    width: 92%;
    padding: 20px;
    border-radius: 12px;
    max-height: 85vh;
  }

  .close-btn {
    top: 10px;
    right: 14px;
    font-size: 26px;
  }

  .prices {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .prices img {
    width: 140px !important;
    height: auto;
  }
}

