@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

.light {
  --mainColor: #ffbb00d8;
  --hoverColor: #000000;
  --backgroundColor: #0e0e0d;
  --darkOne: #151518;
  --darkTwo: #3a3832;
  --lightOne: #919191;
  --lightTwo: #aaa;
  --white: #fff;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 91rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 150px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  margin-left: 4.5rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--white);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}


.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

body.menu-active .hamburger-menu .bar {
  background-color: transparent;
}

body.menu-active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

body.menu-active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 123%;
  transform: translate(15%, 25px);
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

.cta .btn {
  margin-right: 1rem;
  margin-top: 1rem;
}

.about-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}

/* TEXT */
.about-title {
  font-size: 2.5rem;
  color: var(--darkOne);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffbb00d8;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 10px;
}

.about-text {
  color: #8d8a8a;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
}

/* IMAGE */
.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.03);
}

.about-img {
  order: -1;
}

.purpose-section {
  padding: 5rem 1.5rem;
  background: #111;
  color: #fff;
}

/* TITLE */
.purpose-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
}

.purpose-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffbb00d8;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* GRID */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* CARDS */
.purpose-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.purpose-card:hover {
  transform: translateY(-10px);
  border-color: #ffbb00d8;
}

.purpose-card h3 {
  margin-bottom: 1rem;
  color: #ffbb00d8;
}

.purpose-card p {
  color: #bbb;
  line-height: 1.7;
}

/* CORE VALUES */
.core-values {
  margin-top: 4rem;
  text-align: center;
}

.core-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value:hover {
  background: #ffbb00d8;
  color: #000;
  transform: scale(1.05);
}

.services-section {
  padding: 5rem 1.5rem;
  background: var(--white);
  color: #fff;
}

/* TITLE reused */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  color: var(--darkOne);
}

.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffbb00d8;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.service-card {
  background: #e9e7e7;
  padding: 2rem;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #ffbb00d8;
  top: 0;
  left: 0;
}

/* hover */
.service-card:hover {
  transform: translateY(-10px);
}

/* TEXT */
.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #111113;
}

.service-card p {
  color: var(--lightOne);
  line-height: 1.6;
  font-size: 0.95rem;
}

.icon {
  font-size: 2rem;
  color: #ffbb00d8;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.service-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #000000;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 5rem 1.5rem;
  background: #e4e0e0;
  color: #1b1a1a;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--darkOne);
}

/* Swiper Grid */
.testimonials-swiper {
  width: 100%;
}

.swiper-slide {
  background: #ffffff;
  padding: 2rem;
  height: 200px;
  border-radius: 20px;
  border: 1px solid #ffbb00d8;

  transition: 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-10px);
  border-color: #ffbb00d8;
}

/* Quote */
.quote {
  font-size: 1rem;
  color: var(--lightOne);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.quote::before {
  content: "“";
  font-size: 3rem;
  color: #ffbb00d8;
  position: absolute;
  top: -15px;
  left: -20px;
}

/* User Info */
.user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #ffbb00d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.user-info h4 {
  margin: 0;
  color: #000000;
}

.stars i {
  color: #ffbb00d8;
  margin-right: 2px;
  font-size: 0.9rem;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #ffbb00d8;
  margin-top: 10px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* footer */

.footer-section {
  background: var(--backgroundColor);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer-section a {
  color: var(--lightOne);
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--mainColor);
}

/* Top Section */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

/* Brand */
.footer-brand h2 {
  color: var(--mainColor);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--lightTwo);
  font-size: 0.95rem;
}

/* Links */
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--mainColor);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.7rem;
}

/* Social Icons */
.footer-socials h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--mainColor);
}

.footer-socials .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-icons a {
  background: #ffbb00d8;
  color: #111;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-socials .social-icons a:hover {
  background: #fff;
  color: #ffbb00d8;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #111;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Academy Section */
.academy-section {
  padding: 3rem 0;
  background-color: var(--backgroundColor);
  color: var(--lightTwo);
}

.academy-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.academy-content {
  flex: 1 1 500px;
}

.academy-title {
  font-size: 2rem;
  color: var(--mainColor);
  margin-bottom: 1.5rem;
  position: relative;
}

.academy-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--mainColor);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.academy-text {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--lightOne);
}

.academy-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 12px;
  transition: 0.3s;
  margin-top: 1.5rem;
}

.academy-btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1.05);
}

.academy-img {
  flex: 1 1 400px;
}

.academy-img img {
  width: 100%;
  border-radius: 15px;
}

/* Campus Ambassador Section */
.ambassador-section {
  padding: 5rem 0;
  background-color: var(--darkOne);
  color: var(--lightTwo);
}

/* Updated layout: image on left */
.ambassador-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ambassador-content {
  flex: 1 1 500px;
}

.ambassador-title {
  font-size: 2rem;
  color: var(--mainColor);
  margin-bottom: 1.5rem;
  position: relative;
}

.ambassador-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--mainColor);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.ambassador-text {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 1rem;
  color: var(--lightOne);
}

.ambassador-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 12px;
  transition: 0.3s;
  margin-top: 1.5rem;
}

.ambassador-btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1.05);
}

.ambassador-img {
  flex: 1 1 400px;
}

.ambassador-img img {
  width: 100%;
  border-radius: 15px;
}

/* ttp form */
.ttpform {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 30px;
}

.ttp-form {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.3);
}

.ttp-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-section {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.form-section h3 {
  margin-bottom: 10px;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  background: var(--mainColor);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.form-section label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.form-section input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

button:hover {
  background: #222;
}

.about-doc {
  padding: 60px 15px;
  background: #fff;
}

.doc-container {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* Headings */
.doc-container h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

.doc-container h2 {
  margin-top: 40px;
  font-size: 22px;
  border-left: 4px solid #000;
  padding-left: 10px;
}

.doc-container h3 {
  margin-top: 20px;
  font-size: 18px;
}

/* Text */
.doc-container p {
  margin: 15px 0;
}

/* Lists */
.doc-container ul {
  margin: 10px 0 20px 20px;
}

.doc-container ul li {
  margin-bottom: 8px;
}

.contact-widget {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Hidden checkbox */
#contact-toggle {
  display: none;
}

/* Vertical tab */
.contact-tab {
  background: #111111;
  color: #fff;
  padding: 17px 10px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  border-radius: 8px 0 0 8px;

  /* Animation magic */
  animation: pulseGlow 2.5s infinite;
  transition: all 0.3s ease;
}

/* Hover = more intent */
.contact-tab:hover {
  background: #fab804;
  box-shadow: -6px 0 18px rgba(243, 180, 5, 0.986);
  transform: translateX(-4px);
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
  }

  50% {
    box-shadow: -6px 0 16px rgba(248, 163, 4, 0.45);
  }

  100% {
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
  }
}

/* Panel */
.contact-panel {
  position: absolute;
  right: -260px;
  top: 0;
  width: 260px;
  background: #fcf2f2;
  border-radius: 8px 0 0 8px;
  padding: 16px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
}

/* Expand on click */
#contact-toggle:checked~.contact-panel {
  right: 40px;
}

.contact-panel h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-panel p {
  margin: 8px 0;
  color: #222324;
  font-size: 14px;
}

.contact-panel a {
  color: #222324;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 915px) {

  body {
    scroll-behavior: smooth;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    width: 100%;
    z-index: 999;
    background-color: var(--backgroundColor);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .hamburger-menu {
    display: flex
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  body.menu-active .links {
    transform: translateX(0);
  }

  body.menu-active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 70px;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    margin: 0 auto;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-img {
    order: 1;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ambassador-container {
    flex-direction: column;
    text-align: center;
  }

  .ambassador-img img {
    max-width: 90%;
    margin: 0 auto;
  }

  .ambassador-btn {
    margin: 1.5rem auto 0;
  }

  .academy-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .academy-img img {
    max-width: 90%;
    margin: 0 auto;
  }

  .academy-btn {
    margin: 1.5rem auto 0;
  }

  .academy-title::after,
  .ambassador-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-slide {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .ambassador-content {
    margin-bottom: -100px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .ambassador-content {
    margin-top: -80px;
  }

  .academy-content {
    margin-top: -80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  /* Center social icons */
  .footer-socials .social-icons {
    justify-content: center;
  }

  .logo img {
    width: 100px;
  }

  .ttp-form {
    padding: 10px;
  }

  .doc-container {
    font-size: 15px;
  }

  .doc-container h1 {
    font-size: 24px;
  }

  .doc-container h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 530px) {
  .ambassador-content {
    margin-top: -90px;
    margin-bottom: 10px;
  }

  .academy-content {
    margin-top: -90px;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 430px) {
  .section-title {
    font-size: 24px;
  }

  .about-title {
    font-size: 24;
  }

  .purpose-title {
    font-size: 24px;
  }

  .footer-brand h2 {
    font-size: 24px;
  }
}