/* RESET */

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

body {
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(135deg, #f9eefb, #eef7f6);
  color: #111;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}




/* SECTION COLOR THEMES */

.section-purple {
  background: linear-gradient(
    135deg,
    #f7f0fc,
    #efe6fb
  );
}

.section-teal {
  background: linear-gradient(
    135deg,
    #eefaf8,
    #e6f8f5
  );
}

/* HEADER */

.header {
  background: rgba(255,255,255,0.95);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.logo-text h3 {
  font-size: 20px;
}

.logo-text p {
  font-size: 11px;
  color: #666;
}

.navbar ul {
  display: flex;
  gap: 32px;
}

.navbar a {
  color: #333;
  font-weight: 500;
}

.navbar a:hover {
  color: #6a1b9a;
}



/* BUTTONS */

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #5f1a8f, #7d2bb8);
  color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: white;
  color: #222;
}



/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  background: rgba(183, 137, 255, 0.12);
  border-radius: 24px;
}

.shape-left {
  width: 320px;
  height: 240px;
  left: 0;
  top: 120px;
}

.shape-center {
  width: 160px;
  height: 120px;
  left: 250px;
  top: 220px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: white;
  padding: 12px 26px;
  border-radius: 999px;
  margin-bottom: 30px;
  color: #555;
}

.hero-logo-circle {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-logo-circle img {
  width: 78px;
}

.hero h1 {
  font-size: 82px;
  line-height: 1.1;
  max-width: 900px;
  margin: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #6a1b9a, #38c9b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 760px;
  margin: 32px auto;
  font-size: 22px;
  color: #555;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}



/* MOBILE */

@media (max-width: 768px) {

  .navbar {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}



/* STATS */

.stats {
  margin-top: -30px;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.stat-card h3 {
  font-size: 42px;
  color: #4f4f4f;
}

.stat-card p {
  margin-top: 8px;
  color: #666;
}



/* SECTION HEADER */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header span {
  color: #45c5b5;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 60px;
  margin: 18px 0;
}

.section-header p {
  max-width: 760px;
  margin: auto;
  font-size: 20px;
  color: #555;
  line-height: 1.7;
}



/* CTC */

.ctc-section {
  padding: 100px 0;
}

.ctc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ctc-card {
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 34px;
}

.ctc-icon {
  font-size: 34px;
  margin-bottom: 20px;
}

.phase-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ctc-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.ctc-text {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.ctc-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctc-card li {
  color: #333;
}



/* RESPONSIVE */

@media (max-width: 992px) {

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

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

@media (max-width: 768px) {

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

  .section-header h2 {
    font-size: 40px;
  }
}







/* FEATURE STRIP */

.feature-strip {
  padding: 40px 0 90px;
}

.strip-grid {
  background: linear-gradient(135deg, #5d198e, #7b31bc);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.strip-item {
  display: flex;
  gap: 18px;
  color: white;
}

.strip-icon {
  font-size: 30px;
}

.strip-item h3 {
  margin-bottom: 8px;
}

.strip-item p {
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}





/* ==========================
MOBILE RESPONSIVE
========================== */

@media (max-width: 992px) {

  .strip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .strip-item {
    align-items: flex-start;
  }

}

@media (max-width: 768px) {

  .feature-strip {
    padding: 30px 0 60px;
  }

  .strip-grid {
    padding: 24px;
    border-radius: 24px;
    gap: 22px;
  }

  .strip-item {
    gap: 14px;
  }

  .strip-icon {
    font-size: 24px;
    flex-shrink: 0;
  }

  .strip-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .strip-item p {
    font-size: 14px;
    line-height: 1.5;
  }

}

@media (max-width: 480px) {

  .strip-grid {
    padding: 20px;
    border-radius: 20px;
  }

  .strip-item {
    flex-direction: row;
    gap: 12px;
  }

  .strip-icon {
    font-size: 22px;
    margin-top: 2px;
  }

  .strip-item h3 {
    font-size: 16px;
  }

  .strip-item p {
    font-size: 13px;
  }

}


/* PROGRAMMES */

.programmes {
  padding: 120px 0;
}



/* GRID */

.program-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 30px;
}



/* CARD */

.program-card {
  background: white;

  border-radius: 26px;

  overflow: hidden;

  box-shadow:
    0 12px 26px rgba(0,0,0,0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 36px rgba(0,0,0,0.08);
}



/* HEADER */

.program-header {
  padding: 28px;

  color: white;
}

.program-header h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.program-header p {
  opacity: 0.95;
}



/* COLORS */

.purple-card {
  background:
    linear-gradient(
      135deg,
      #5e2a84,
      #8a68b8
    );
}

.mint-card {
  background:
    linear-gradient(
      135deg,
      #53c7b4,
      #87ddd1
    );
}

.coral-card {
  background:
    linear-gradient(
      135deg,
      #ef4d3c,
      #f4877b
    );
}

.gold-card {
  background:
    linear-gradient(
      135deg,
      #e6c42f,
      #efd96d
    );
}



/* BODY */

.program-body {
  padding: 28px;
}

.program-body p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 22px;
}



/* TAGS */

.tag-row {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 24px;
}

.tag-row span {
  background: #f4f4f4;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 14px;
}



/* FOOTER */

.program-footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  border-top:
    1px solid #eee;

  padding-top: 18px;
}

.program-footer strong {
  color: #4a2a68;
}

.program-footer a {
  color: #42c6b4;

  font-weight: 700;
}



/* MOBILE */

@media (max-width: 992px) {

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




/* MORE PROGRAMMES */

.second-row {
  margin-top: 28px;
}

.teal-card .programme-top {
  background: linear-gradient(135deg, #2ab7b2, #68d8d0);
}

.dark-card .programme-top {
  background: linear-gradient(135deg, #222, #444);
}






/* ===================================
PROGRAMME LOGO
=================================== */

.programme-title{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:14px;

}

.programme-logo{

    width:70px;

    height:70px;

    border-radius:50%;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:8px;

    flex-shrink:0;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);

}

.programme-logo img{

    width:100%;

    height:100%;

    object-fit:contain;

    border-radius:50%;

}

.program-header h3{

    margin:0;

    font-size:30px;

    color:white;

    font-weight:800;

}

.program-header p{

    margin-left:88px;

    opacity:.95;

    font-size:16px;

}

/* Mobile */

@media(max-width:768px){

    .programme-logo{

        width:56px;

        height:56px;

    }

    .program-header h3{

        font-size:24px;

    }

    .program-header p{

        margin-left:74px;

        font-size:14px;

    }

}












/* CRT */

.crt-section {
  padding: 110px 0;
}

.crt-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.mini-label {
  color: #45c5b5;
  font-weight: 700;
  letter-spacing: 1px;
}

.crt-left h2 {
  font-size: 56px;
  margin: 20px 0;
}

.crt-left p {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
}

.crt-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crt-list li {
  color: #333;
}

.crt-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.crt-card {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  padding: 28px;
}

.crt-card h3 {
  margin-bottom: 10px;
}

.crt-card p {
  color: #666;
}



/* MOBILE */

@media (max-width: 992px) {

  .crt-wrapper {
    grid-template-columns: 1fr;
  }
}







/* BRAND SECTIONS */

.brand-section {
  padding: 110px 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
}

.reverse-grid {
  grid-template-columns: 1fr 1.15fr;
}

.brand-left h2 {
  font-size: 56px;
  margin: 18px 0;
}

.brand-left p {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
}

.brand-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-list li {
  color: #333;
}



/* GLASS CARDS */

.brand-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card {
  background: rgba(255,255,255,0.82);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.glass-card h3 {
  margin-bottom: 10px;
}

.glass-card p {
  color: #666;
}



/* META4 */

.meta4-section {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.45)
  );
}



/* MOBILE */

@media (max-width: 992px) {

  .brand-grid,
  .reverse-grid {
    grid-template-columns: 1fr;
  }
}


/* MAVEN */

.maven-section {
  padding-top: 100px;
}



/* CTA */

.cta-section {
  padding: 110px 0;
}

.cta-box {
  background: linear-gradient(135deg, #ffffff, #f8f2fc);
  border-radius: 34px;
  padding: 80px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 56px;
  margin: 18px 0;
}

.cta-box p {
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  line-height: 1.8;
  color: #555;
}



/* FOOTER */

.footer {
  background: #111;
  color: white;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin-bottom: 16px;
}

.footer p,
.footer li {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.footer a {
  color: rgba(255,255,255,0.75);
}

.footer a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding: 28px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}



/* MOBILE */

@media (max-width: 992px) {

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

@media (max-width: 768px) {

  .cta-box h2 {
    font-size: 40px;
  }

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




/* NAVBAR HOVER */

.navbar a {
  position: relative;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #6a1b9a;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}



/* CARD HOVER */

.stat-card,
.ctc-card,
.programme-card,
.glass-card,
.crt-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-card:hover,
.ctc-card:hover,
.programme-card:hover,
.glass-card:hover,
.crt-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08);
}


/* TAG HOVER */

.tag-row span {
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.tag-row span:hover {
  background: #eaeaea;
  transform: scale(1.06);
}


/* LOGO */

.logo img,
.hero-logo-circle img {
  transition:
    transform 0.35s ease;
}

.logo img:hover,
.hero-logo-circle img:hover {
  transform: rotate(6deg) scale(1.08);
}


/* FOOTER */

.footer a {
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.footer a:hover {
  color: white;
  padding-left: 6px;
}


.primary-btn:hover {
  box-shadow:
    0 0 20px rgba(120, 60, 200, 0.25);
}



/* SCROLL ANIMATION */

.fade-in {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}



/* OPTIONAL DELAYS */

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}




/* =====================================
ABOUT SECTION
===================================== */

/* =========================================
ABOUT UPSKILLED COMPACT
========================================= */

.about-v3{
    padding:80px 0;
}

/* TITLE */

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 40px;
}

.section-title h2{
    font-size:48px;
    line-height:1.1;
    margin:16px 0;
}

.section-title p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/* =========================================
FOUNDER
========================================= */

.founder-premium{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(248,243,252,.96)
    );

    border-radius:30px;

    padding:28px;

    display:grid;

    grid-template-columns:160px 1fr;

    gap:28px;

    align-items:center;

    margin-bottom:40px;

    box-shadow:
    0 12px 35px rgba(0,0,0,.05);

}

.founder-image img{

    width:160px;

    height:160px;

    object-fit:cover;

    border-radius:24px;

}

.founder-tag{

    display:inline-block;

    background:
    linear-gradient(
        135deg,
        #6a1b9a,
        #38c9b9
    );

    color:white;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:14px;

}

.founder-text h3{

    font-size:30px;

    margin-bottom:12px;

    line-height:1.3;

}

.founder-text p{

    color:#555;

    line-height:1.7;

    font-size:16px;

    margin-bottom:14px;

}

.founder-text h4{

    color:#6a1b9a;

    font-size:15px;

}

/* =========================================
FOUNDER STATS
========================================= */

.founder-stats{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:15px;

}

.founder-stats span{

    background:#f5effc;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    color:#444;

}

/* =========================================
SECTION TITLE
========================================= */

.about-subheading{

    text-align:center;

    font-size:28px;

    font-weight:700;

    margin-bottom:24px;

}



/* ===================================
FOUNDER READ MORE
=================================== */

.founder-message{

    width:100%;

}

#founderMessage{

    overflow:hidden;

    transition:max-height .6s ease;

}

/* Initially show only 8 lines */

#founderMessage.collapsed{

    display:-webkit-box;

    -webkit-line-clamp:8;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

/* Expanded */

#founderMessage.expanded{

    display:block;

}

/* Button */

.read-more-btn{

    margin-top:20px;

    border:none;

    outline:none;

    cursor:pointer;

    background:
    linear-gradient(
        135deg,
        #6a1b9a,
        #38c9b9
    );

    color:white;

    padding:12px 24px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.read-more-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 25px rgba(106,27,154,.25);

}







/* =========================================
TEAM SLIDER
========================================= */

.team-slider{

    display:flex;

    gap:18px;

    overflow-x:auto;

    padding-bottom:15px;

    margin-bottom:50px;

    scrollbar-width:none;

}

.team-slider::-webkit-scrollbar{

    display:none;

}

.team-card{

    min-width:220px;

    background:white;

    border-radius:24px;

    padding:20px;

    text-align:center;

    flex-shrink:0;

    box-shadow:
    0 12px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.team-card:hover{

    transform:translateY(-6px);

}

.team-card img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:12px;

}

.team-card h4{

    font-size:18px;

    margin-bottom:6px;

}

.team-card p{

    font-size:13px;

    color:#666;

}

/* =========================================
REVIEWS
========================================= */

.review-slider{

    overflow:hidden;

    position:relative;

}

.review-track{

    display:flex;

    gap:18px;

    width:max-content;

    animation:
    reviewScroll 35s linear infinite;

}

.review-card{

    width:260px;

    background:white;

    border-radius:24px;

    padding:20px;

    flex-shrink:0;

    box-shadow:
    0 12px 30px rgba(0,0,0,.05);

}

.review-card::before{

    content:"★★★★★";

    display:block;

    color:#ffb400;

    margin-bottom:10px;

    letter-spacing:2px;

    font-size:14px;

}

.review-card p{

    color:#555;

    line-height:1.6;

    font-size:14px;

    margin-bottom:12px;

}

.review-card span{

    color:#6a1b9a;

    font-size:13px;

    font-weight:600;

}

@keyframes reviewScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .about-v3{
        padding:60px 0;
    }

    .section-title h2{
        font-size:36px;
    }

    .section-title p{
        font-size:15px;
    }

    .founder-premium{

        grid-template-columns:1fr;

        text-align:center;

        padding:24px;

    }

    .founder-image{

        display:flex;

        justify-content:center;

    }

    .founder-image img{

        width:120px;

        height:120px;

    }

    .founder-text h3{

        font-size:24px;

    }

    .founder-stats{

        justify-content:center;

    }

    .about-subheading{

        font-size:22px;

    }

    .team-card{

        min-width:190px;

    }

    .review-card{

        width:240px;

    }

}

/* META4 */

.meta4-section {
  padding: 90px 0;
}



/* MAIN BOX */

.meta4-box {
  display: grid;

  grid-template-columns:
    1.4fr 1fr;

  gap: 32px;

  align-items: center;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.96),
      rgba(248,243,252,0.96)
    );

  border-radius: 34px;

  padding: 44px;

  box-shadow:
    0 14px 34px rgba(0,0,0,0.05);
}



/* BADGE */

.meta4-badge {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 999px;

  background: white;

  margin-bottom: 18px;

  font-size: 14px;
}



/* TITLE */

.meta4-content h2 {
  font-size: 48px;

  margin-bottom: 18px;
}



/* TEXT */

.meta4-content p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 22px;
}



/* PILLS */

.meta4-points {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 24px;
}

.meta4-pill {
  background: white;

  padding: 10px 16px;

  border-radius: 999px;

  font-size: 14px;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.04);
}



/* RIGHT CARD */

.meta4-card {
  display: flex;
  justify-content: center;
}

.meta4-mini {
  width: 100%;

  background:
    linear-gradient(
      135deg,
      #6a1b9a,
      #8d4ec5
    );

  color: white;

  border-radius: 28px;

  padding: 32px;

  box-shadow:
    0 16px 28px rgba(106,27,154,0.18);

  transition:
    transform 0.35s ease;
}

.meta4-mini:hover {
  transform: translateY(-6px);
}

.meta4-mini h3 {
  font-size: 28px;

  margin-bottom: 14px;
}

.meta4-mini p {
  line-height: 1.8;

  opacity: 0.95;
}



/* MOBILE */

@media (max-width: 992px) {

  .meta4-box {
    grid-template-columns: 1fr;
  }

  .meta4-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .meta4-box {
    padding: 28px;
  }

  .meta4-content h2 {
    font-size: 28px;
  }
}








/* CEREBRAL */

.cerebral-section {
  padding: 120px 0;
}

.cerebral-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items: start;
}

.cerebral-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cerebral-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

.cerebral-text-box {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 34px;
}

.cerebral-text-box h3 {
  font-size: 34px;
  margin-bottom: 16px;
}

.cerebral-text-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.cerebral-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cerebral-card {
  display: flex;
  gap: 18px;

  background: rgba(255,255,255,0.95);

  border-radius: 26px;

  padding: 18px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cerebral-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 16px 36px rgba(0,0,0,0.08);
}

.cerebral-card img {
  width: 120px;
  height: 100px;

  object-fit: cover;

  border-radius: 18px;
}

.cerebral-card h4 {
  margin-bottom: 10px;
}

.cerebral-card p {
  color: #666;
  line-height: 1.7;
}

@media (max-width: 992px) {

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

  .cerebral-main-image {
    height: 300px;
  }
}






/* CTA STRIP */

.cta-strip {
  margin-top: 36px;
  padding: 20px 0 80px;
}

.cta-strip-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  align-items: stretch;
}



/* CARD */

.cta-strip-card {
  background: rgba(255,255,255,0.96);

  border-radius: 26px;

  overflow: hidden;

  box-shadow:
    0 10px 28px rgba(0,0,0,0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  min-height: 320px;
}

.cta-strip-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 42px rgba(0,0,0,0.08);
}



/* IMAGE */

.cta-strip-card img {
  width: 100%;
  height: 180px;

  object-fit: cover;

  display: block;

  border-top-left-radius: 26px;
  border-top-right-radius: 26px;

  background: #f5f5f5;
}


/* CONTENT */

.cta-strip-content {
  padding: 20px;
}

.cta-strip-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-strip-content p {
  color: #666;
  line-height: 1.7;
}



/* MOBILE */

@media (max-width: 992px) {

  .cta-strip-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-card img {
    height: 220px;
  }
}






/* HERO APP SLIDER */

.hero-app-slider {
  margin-top: 60px;

  width: 100%;
  max-width: 980px;

  margin-left: auto;
  margin-right: auto;

  overflow: hidden;

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.94),
      rgba(248,244,252,0.95)
    );

  box-shadow:
    0 14px 34px rgba(0,0,0,0.06);
}


/* TRACK */

.hero-slider-track {
  display: flex;

  width: 200%;

  animation:
    heroSlide 12s infinite;
}



/* SLIDE */

.hero-slide {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;

  padding: 34px 42px;

  min-height: 280px;
}




/* phone  */

.hero-slide-phone {
  flex: 0 0 180px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-phone img {
  width: 100%;
  max-width: 150px;

  height: auto;

  max-height: 240px;

  object-fit: contain;

  border-radius: 24px;

  box-shadow:
    0 12px 28px rgba(0,0,0,0.08);
}


/* CONTENT */

.hero-slide-content {
  flex: 1;

  text-align: left;
}

.hero-slide-badge {
  display: inline-block;

  background: white;

  padding: 8px 14px;

  border-radius: 999px;

  margin-bottom: 14px;
}

.hero-slide-content h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.hero-slide-content p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 20px;
}



/* PLAYSTORE */

.playstore-btn {
  display: inline-block;

  background:
    linear-gradient(
      135deg,
      #6a1b9a,
      #8341ba
    );

  color: white;

  padding: 14px 22px;

  border-radius: 999px;

  font-weight: 600;

  transition:
    transform 0.3s ease;
}

.playstore-btn:hover {
  transform: translateY(-4px);
}



/* ANIMATION */

@keyframes heroSlide {

  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(0);
  }

  55% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* MOBILE */

@media (max-width: 992px) {

  .hero-slide {
    flex-direction: column;

    text-align: center;

    padding: 26px;
  }

  .hero-slide-content {
    text-align: center;
  }

  .hero-slide-phone {
    flex: unset;
  }

  .hero-slide-phone img {
    max-width: 120px;
    max-height: 200px;
  }

  .hero-slide-content h3 {
    font-size: 26px;
  }
}



/* POPUP OVERLAY */

.popup-overlay {
  position: fixed;
  inset: 0;

  background:
    rgba(25, 15, 35, 0.45);

  backdrop-filter: blur(8px);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}



/* POPUP BOX */

.popup-box {
  width: 100%;
  max-width: 640px;

  border-radius: 34px;

  padding: 42px;

  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.96),
      rgba(248,243,252,0.98)
    );

  box-shadow:
    0 18px 50px rgba(0,0,0,0.14);

  animation:
    popupReveal 0.35s ease;
}



/* ANIMATION */

@keyframes popupReveal {

  from {
    opacity: 0;
    transform:
      translateY(18px)
      scale(0.96);
  }

  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}



/* CLOSE BUTTON */

.popup-close {
  position: absolute;

  right: 20px;
  top: 20px;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background: white;

  font-size: 24px;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.popup-close:hover {
  transform: rotate(90deg);

  box-shadow:
    0 10px 22px rgba(0,0,0,0.08);
}



/* TEXT */

.popup-box h2 {
  font-size: 42px;

  line-height: 1.2;

  margin-bottom: 14px;
}

.popup-box p {
  color: #666;

  font-size: 18px;

  margin-bottom: 28px;
}



/* FORM */

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}



/* INPUTS */

.enquiry-form input,
.enquiry-form select {
  width: 100%;

  padding: 16px 20px;

  border-radius: 18px;

  border: 1px solid #e4dff0;

  background:
    rgba(255,255,255,0.95);

  font-size: 16px;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: #7b2cbf;

  box-shadow:
    0 0 0 4px rgba(123,44,191,0.10);

  transform: translateY(-2px);
}



/* SUBMIT */

.popup-submit {
  margin-top: 8px;

  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #6a1b9a,
      #8a35cb
    );

  color: white;

  font-size: 18px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.popup-submit:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 28px rgba(123,44,191,0.22);
}



/* MOBILE */

@media (max-width: 768px) {

  .popup-box {
    padding: 28px;
    border-radius: 28px;
  }

  .popup-box h2 {
    font-size: 28px;
  }

  .popup-box p {
    font-size: 16px;
  }

  .popup-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}



/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 66px;
  height: 66px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* background:
    linear-gradient(
      135deg,
      #25d366,
      #1ebe57
    ); */

  box-shadow:
    0 14px 28px rgba(37,211,102,0.28);

  z-index: 999;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}



/* ICON */

.whatsapp-float img {
  width: 34px;
  height: 34px;
}



/* HOVER */

.whatsapp-float:hover {
  transform:
    translateY(-6px)
    scale(1.05);

  box-shadow:
    0 20px 36px rgba(37,211,102,0.35);
}



/* FLOAT ANIMATION */

@keyframes whatsappFloat {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.whatsapp-float {
  animation:
    whatsappFloat 3s ease infinite;
}



/* MOBILE */

@media (max-width: 768px) {

  .whatsapp-float {
    right: 18px;
    bottom: 18px;

    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}




/* HIDE ON DESKTOP */

.mobile-toggle{

    display:none;

    border:none;

    background:none;

    font-size:26px;

    cursor:pointer;

    color:#333;

    padding:8px;

}

/* SHOW ONLY ON MOBILE */

@media(max-width:768px){

    .mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

}





/* ===================================
DESKTOP DROPDOWN
=================================== */
/* ===================================
UPSKILLED MEGA MENU
=================================== */

.nav-dropdown{

    position:relative;

}

.nav-dropdown > a{

    display:flex;

    align-items:center;

    gap:8px;

}

/* MAIN BOX */

.mega-menu{

    position:absolute;

    top:120%;

    left:50%;

    transform:
    translateX(-50%)
    translateY(15px);

    width:760px;

    background:#fff;

    border-radius:28px;

    padding:28px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

    z-index:9999;

}

/* SHOW */

.nav-dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);

}

/* COLUMN */

.menu-column{

    display:flex;

    flex-direction:column;

}

/* TITLE */

.menu-column h4{

    color:#6a1b9a;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:16px;

    padding-bottom:12px;

    border-bottom:1px solid #eee;

}

/* LINKS */

.menu-link{

    display:block;

    padding:14px 16px;

    border-radius:16px;

    transition:.25s ease;

    margin-bottom:8px;

}

.menu-link:hover{

    background:
    linear-gradient(
        135deg,
        rgba(106,27,154,.06),
        rgba(56,201,185,.05)
    );

}

.menu-link strong{

    display:block;

    color:#111;

    font-size:15px;

    margin-bottom:4px;

}

.menu-link span{

    display:block;

    color:#666;

    font-size:12px;

    line-height:1.5;

}

/* MOBILE */

@media(max-width:768px){

    .mega-menu{

        display:none;

    }

}

.mobile-menu{

  position:fixed;

  top:0;

  left:-100%;

  width:300px;

  height:100vh;

  background:white;

  z-index:9999;

  padding:30px;

  transition:.35s;

  box-shadow:
  0 20px 40px rgba(0,0,0,.1);

}

.mobile-menu.active{

  left:0;

}

.mobile-header{

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin-bottom:30px;

}

.mobile-header button{

  border:none;

  background:none;

  font-size:28px;

  cursor:pointer;

}

.mobile-menu a{

  display:block;

  padding:14px 0;

  color:#222;

  font-weight:600;

}

.mobile-overlay{

  position:fixed;

  inset:0;

  background:rgba(0,0,0,.4);

  opacity:0;

  visibility:hidden;

  transition:.3s;

  z-index:9998;

}

.mobile-overlay.active{

  opacity:1;

  visibility:visible;

}

.mobile-dropdown-btn{

  width:100%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  border:none;

  background:none;

  padding:14px 0;

  font-size:16px;

  font-weight:600;

  cursor:pointer;

}

.mobile-dropdown-content{

    display:none;

    padding-left:12px;

    margin-top:8px;

}

.mobile-dropdown.active .mobile-dropdown-content{

    display:block;

}

/* SECTION HEADING */

.mobile-menu-title{

    color:#6a1b9a;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin:15px 0 10px;

    padding-bottom:8px;

    border-bottom:1px solid #eee;

}

/* LINKS */

.mobile-dropdown-content a{

    display:block;

    padding:10px 0;

    color:#444;

    font-size:14px;

}

/* MOBILE */

@media(max-width:768px){

  .navbar{

    display:none;

  }

  .mobile-toggle{

    display:block;

  }

  #openFormBtn{

    display:none;

  }

}


/* =========================
NAV TOOLTIP
========================= */

.nav-info{

    position:relative;

}

.nav-tooltip{

    position:absolute;

    top:130%;

    left:50%;

    transform:
    translateX(-50%)
    translateY(10px);

    width:260px;

    padding:14px 16px;

    background:#fff;

    border-radius:18px;

    font-size:13px;

    line-height:1.6;

    color:#666;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    opacity:0;

    visibility:hidden;

    transition:.25s ease;

    z-index:9999;

    text-align:left;

}

/* little arrow */

.nav-tooltip::before{

    content:"";

    position:absolute;

    top:-8px;

    left:50%;

    width:16px;

    height:16px;

    background:white;

    transform:
    translateX(-50%)
    rotate(45deg);

}

.nav-info:hover .nav-tooltip{

    opacity:1;

    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);

}


@media(max-width:768px){

    .nav-tooltip{

        display:none;

    }

}
/* =========================
GALLERY
========================= */

.gallery-section{

    padding:100px 0;

}

.gallery-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    grid-auto-rows:250px;

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:white;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::after{

    opacity:1;

}

/* TALL CARD */

.gallery-item.tall{

    grid-row:span 2;

}

/* WIDE CARD */

.gallery-item.wide{

    grid-column:span 2;

}

/* MOBILE */

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;

        grid-auto-rows:250px;

    }

    .gallery-item.tall{

        grid-row:span 1;

    }

    .gallery-item.wide{

        grid-column:span 1;

    }

}

/* ====================================
MOBILE GALLERY SLIDER
==================================== */

@media (max-width: 768px){

    .gallery-grid{

        display:flex;

        overflow-x:auto;

        overflow-y:hidden;

        gap:18px;

        padding:10px 5px;

        scroll-snap-type:x mandatory;

        scrollbar-width:none;

    }

    .gallery-grid::-webkit-scrollbar{

        display:none;

    }

    .gallery-item{

        min-width:85%;

        flex-shrink:0;

        scroll-snap-align:center;

        height:320px;

        border-radius:24px;

    }

    .gallery-item.tall,
    .gallery-item.wide{

        grid-row:auto;

        grid-column:auto;

        min-width:85%;

        height:320px;

    }

    .gallery-item img{

        width:100%;

        height:100%;

        object-fit:cover;

    }

}

/* EXTRA SMALL PHONES */

@media (max-width:480px){

    .gallery-item{

        min-width:92%;

        height:280px;

    }

}

/* ====================================
FUNNEL SECTION
==================================== */

.CRT-funnel-section{

padding:120px 0;

}

.funnel-layout{

display:grid;

grid-template-columns:
1fr 380px 1fr;

gap:40px;

align-items:center;

}

.funnel-container{

display:flex;

flex-direction:column;

align-items:center;

gap:8px;

}

/* Funnel Layers */

.funnel-layer{

height:70px;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-weight:700;

transition:.35s;

cursor:pointer;

}

.funnel-layer:hover{

transform:scale(1.05);

}

.awareness{

width:100%;

background:#7b2cbf;

clip-path:
polygon(
0 0,
100% 0,
90% 100%,
10% 100%
);

}

.assessment{

width:88%;

background:#5a67d8;

clip-path:
polygon(
0 0,
100% 0,
88% 100%,
12% 100%
);

}

.alignment{

width:76%;

background:#42c6c6;

clip-path:
polygon(
0 0,
100% 0,
85% 100%,
15% 100%
);

}

.acceleration{

width:62%;

background:#38b000;

clip-path:
polygon(
0 0,
100% 0,
82% 100%,
18% 100%
);

}

.achievement{

width:48%;

background:#ff7b00;

clip-path:
polygon(
0 0,
100% 0,
75% 100%,
25% 100%
);

}

.info-card{

background:white;

padding:22px;

border-radius:24px;

margin-bottom:18px;

box-shadow:var(--shadow);

}

.info-card h4{

margin-bottom:10px;

}

.info-card p{

color:var(--text-light);

line-height:1.7;

}

/* ====================================
FUNNEL MOBILE RESPONSIVE
==================================== */

@media (max-width: 992px){

    .funnel-layout{

        grid-template-columns:1fr;

        gap:35px;

    }

    .funnel-container{

        order:1;

    }

    .funnel-left{

        order:2;

    }

    .funnel-right{

        order:3;

    }

}

@media (max-width: 768px){

    .CRT-funnel-section{

        padding:80px 0;

    }

    .funnel-layout{

        gap:25px;

    }

    .funnel-layer{

        height:58px;

        font-size:14px;

        padding:0 10px;

        text-align:center;

    }

    .awareness{

        width:100%;

    }

    .assessment{

        width:92%;

    }

    .alignment{

        width:84%;

    }

    .acceleration{

        width:72%;

    }

    .achievement{

        width:58%;

    }

    .info-card{

        padding:18px;

        border-radius:18px;

        margin-bottom:15px;

    }

    .info-card h4{

        font-size:18px;

    }

    .info-card p{

        font-size:14px;

        line-height:1.6;

    }

}

@media (max-width: 480px){

    .funnel-layer{

        height:52px;

        font-size:13px;

        font-weight:600;

    }

    .awareness{

        width:100%;

    }

    .assessment{

        width:94%;

    }

    .alignment{

        width:86%;

    }

    .acceleration{

        width:76%;

    }

    .achievement{

        width:64%;

    }

    .info-card{

        padding:16px;

    }

}



/* ======================
FLOATING EXAM CARDS
====================== */

.hero{
    position:relative;
    overflow:hidden;
}

.floating-card{

    position:absolute;

    background:white;

    padding:14px 22px;

    border-radius:20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    font-weight:600;

    color:#111827;

    z-index:2;

    animation:
    floatCard 5s ease-in-out infinite;

    backdrop-filter:blur(12px);

}

/* LEFT */

.card-1{
    top:18%;
    left:6%;
}

.card-2{
    top:42%;
    left:2%;
}

.card-3{
    bottom:18%;
    left:8%;
}

/* RIGHT */

.card-4{
    top:20%;
    right:7%;
}

.card-5{
    top:48%;
    right:2%;
}

.card-6{
    bottom:18%;
    right:10%;
}

/* ANIMATION */

@keyframes floatCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}










/*==================================================
ABOUT COMPANY
==================================================*/

.about-company{

    padding:110px 0;

    position:relative;

    overflow:hidden;

    background:#ffffff;

}

.about-company::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(106,27,154,.05);

    border-radius:50%;

    top:-180px;

    right:-180px;

    filter:blur(30px);

}

.about-company::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(56,201,185,.06);

    border-radius:50%;

    bottom:-160px;

    left:-120px;

    filter:blur(25px);

}



/*==================================================
GRID
==================================================*/

.about-wrapper{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;

}



/*==================================================
IMAGE
==================================================*/

.about-image{

    position:relative;

}

.about-image img{

    /* width:20px

    height:580px; */

    object-fit:contain;


    border-radius:32px;

    box-shadow:

    0 25px 55px rgba(0,0,0,.12);

    transition:.45s;

}

.about-image:hover img{

    transform:scale(1.03);

}



/*==================================================
FLOATING EXPERIENCE CARD
==================================================*/

.floating-card{

    position:absolute;

    right:-35px;

    bottom:40px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:24px;

    padding:24px;

    width:210px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.12);

}

.floating-card h3{

    font-size:46px;

    margin-bottom:5px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.floating-card p{

    font-size:14px;

    color:#666;

    line-height:1.7;

}



/*==================================================
CONTENT
==================================================*/

.about-content h2{

    font-size:48px;

    margin-bottom:24px;

    line-height:1.2;

}

.about-content>p{

    color:#666;

    font-size:17px;

    line-height:2;

    margin-bottom:35px;

}



/*==================================================
HIGHLIGHTS
==================================================*/

.about-highlights{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

}



/*==================================================
CARD
==================================================*/

.highlight{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:22px;

    background:rgba(255,255,255,.85);

    border:1px solid rgba(106,27,154,.08);

    border-radius:22px;

    transition:.35s;

    box-shadow:

    0 12px 28px rgba(0,0,0,.04);

}

.highlight:hover{

    transform:translateY(-6px);

    box-shadow:

    0 22px 45px rgba(106,27,154,.10);

}



/*==================================================
ICON
==================================================*/

.highlight-icon{

    width:62px;

    height:62px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background-color:#6A1B9A;

    color:white;

    font-size:24px;

    box-shadow:

    0 12px 30px rgba(106,27,154,.25);

}

.highlight h4{

    font-size:20px;

    margin-bottom:6px;

}

.highlight p{

    color:#777;

    line-height:1.8;

    font-size:15px;

}



/*==================================================
BUTTON
==================================================*/

.about-content .btn{

    margin-top:10px;

}



/*==================================================
IMAGE DECORATION
==================================================*/

.about-image::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:24px;

    background:

    linear-gradient(

    135deg,

    rgba(106,27,154,.12),

    rgba(56,201,185,.12)

    );

    left:-25px;

    top:-25px;

    z-index:-1;

}

.about-image::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:28px;

    border:2px dashed rgba(56,201,185,.25);

    right:-25px;

    bottom:-25px;

    z-index:-1;

}



/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.about-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.about-image{

max-width:620px;

margin:auto;

}

.about-image img{

height:500px;

}

.about-content{

text-align:center;

}

.about-highlights{

max-width:650px;

margin:35px auto;

}

.floating-card{

right:20px;

bottom:20px;

}

}



/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.about-company{

padding:80px 0;

}

.about-image img{

height:420px;

border-radius:24px;

}

.about-content h2{

font-size:34px;

}

.about-content>p{

font-size:16px;

line-height:1.9;

}

.highlight{

padding:18px;

text-align:left;

}

.highlight-icon{

width:54px;

height:54px;

font-size:20px;

}

.floating-card{

width:180px;

padding:18px;

}

.floating-card h3{

font-size:34px;

}

}



/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

.about-wrapper{

gap:35px;

}

.about-image img{

height:320px;

}

.floating-card{

position:relative;

right:auto;

bottom:auto;

margin-top:18px;

width:100%;

}

.highlight{

flex-direction:column;

align-items:center;

text-align:center;

}

.highlight-icon{

margin-bottom:8px;

}

.about-content h2{

font-size:28px;

}

.about-content>p{

font-size:15px;

}

.about-content .btn{

width:100%;

}

}


/*=========================================
BLINK BUTTON
=========================================*/

.blink-btn{

animation:blinkPulse 1.4s infinite;

}

@keyframes blinkPulse{

0%{

transform:scale(1);

box-shadow:
0 0 0 0 rgba(106,27,154,.65);

}

25%{

background:#7b22b0;

}

50%{

transform:scale(1.06);

box-shadow:
0 0 0 18px rgba(106,27,154,0);

}

75%{

background:#6A1B9A;

}

100%{

transform:scale(1);

/* box-shadow:
0 0 0 0 rgba(106,27,154,0); */

}

}


/*=========================================
BRAND TITLE
=========================================*/

.brand-title{

display:flex;

align-items:center;

flex-wrap:wrap;

gap:18px;

margin-bottom:22px;

}

.flagship-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:8px 18px;

background-color: #6A1B9A;

color:#fff;

font-size:13px;

font-weight:700;

letter-spacing:.5px;

border-radius:999px;

text-transform:uppercase;

box-shadow:
0 10px 25px rgba(106,27,154,.25);

animation:flagshipPulse 2s ease-in-out infinite;

white-space:nowrap;

}

@keyframes flagshipPulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

}

@media(max-width:768px){

.brand-title{

gap:12px;

}

.flagship-badge{

font-size:11px;

padding:6px 14px;

}

}


/*==================================
JOIN THE MOVEMENT BUTTON
==================================*/

.movement-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

margin-top:35px;

padding:16px 34px;

font-size:17px;

font-weight:700;

border:none;

cursor:pointer;

border-radius:999px;

background:linear-gradient(
135deg,
#6A1B9A,
#38C9B9
);

color:#fff;

box-shadow:
0 14px 35px rgba(106,27,154,.22);

transition:.35s ease;

}

.movement-btn i{

transition:.35s;

}

.movement-btn:hover{

transform:translateY(-4px);

box-shadow:
0 20px 45px rgba(106,27,154,.28);

}

.movement-btn:hover i{

transform:translateX(6px);

}

/* Mobile */

@media(max-width:768px){

.movement-btn{

width:100%;

padding:15px 24px;

font-size:16px;

}

}