/* ==========================================================
   SPEAKING HERO
========================================================== */

.speaking-hero{
    background:#ffffff;
    padding:140px 0;
}

.speaking-container{
    width:min(1100px,92%);
    margin:auto;
    text-align:center;
}

.speaking-title{
    font-family:'Outfit',sans-serif;
    font-size:64px;
    font-weight:900;
    color:#111;
    line-height:1.1;
    margin-bottom:40px;
}

.speaking-title span{
    font-family:'Permanent Marker',cursive;
    font-size:74px;
    font-weight:400;
    text-transform:none;
    background:linear-gradient(
        90deg,
        #ff4d8d,
        #ff9f43,
        #ffd93d,
        #6bcf63,
        #4d9dff,
        #9b5cff
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
    display:inline-block;
    will-change: transform, opacity;
}

.speaking-text{
    max-width:850px;
    margin:0 auto 24px;
    font-family:'Outfit',sans-serif;
    font-size:24px;
    line-height:1.7;
    color:#333;
}

.story-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  box-sizing: border-box;
}

.video-responsive-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-responsive-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
@media screen and (max-width: 768px) {
  .story-video {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  .video-responsive-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.v-divider-white{
    width:100%;
    line-height:0;
    overflow:hidden;
    background:#fff;
    margin-top: -70px;
}

.v-divider-white svg{
    display:block;
    width:100%;
    height:120px;
    fill:#111;
    transform:translateY(2px);
}
/* ==========================================================
   SPEAKING COLLAGE
========================================================== */

.speaking-collage{
    background:#111;
    padding:150px 0;
    overflow:hidden;
}
.collage-container{
    width:min(1250px,95%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 560px 1fr;
    grid-template-rows:360px 360px;
    align-items:center;
    justify-items:center;
    position:relative;
    min-height:900px;
}

/* ---------------- Images ---------------- */

.collage-photo{
    width:320px;
    height:260px;
    border:8px solid #fff;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.45);
    transition:.4s;
}

.collage-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.collage-photo:hover{
    transform:scale(1.04) rotate(0deg);
}

.photo1{
    grid-column:1;
    grid-row:1;
    transform:rotate(-8deg);
    justify-self:end;
}

.photo2{
    grid-column:3;
    grid-row:1;
    transform:rotate(8deg);
    justify-self:start;
}

.photo3{
    grid-column:1;
    grid-row:2;
    transform:rotate(7deg);
    justify-self:end;
}

.photo4{
    grid-column:3;
    grid-row:2;
    transform:rotate(-8deg);
    justify-self:start;
}

/* ---------------- Center Card ---------------- */

.collage-content{
    grid-column:2;
    grid-row:1 / span 2;
    width:420px;
    max-width:100%;
    background:#2f2f2f;
    color:#fff;
    padding:40px 35px;
    text-align:center;
    z-index:20;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.collage-content .number{
    display:block;
    font-size:54px;
    font-weight:800;
    margin-bottom:20px;
}

.collage-content h2{
    font-size:30px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:30px;
}

.collage-content p{
    font-size:18px;
    line-height:1.8;
    color:#d9d9d9;
    margin-bottom:18px;
}

.collage-content p:last-child{
    margin-bottom:0;
}

/* ---------------- Responsive ---------------- */

@media (max-width:1100px){
.collage-container{
    grid-template-columns:1fr;
    grid-template-rows:auto;
    gap:35px;
}
.collage-content{
    grid-column:1;
    grid-row:auto;
    max-width:600px;
}
.photo1,
.photo2,
.photo3,
.photo4{
    grid-column:1;
    grid-row:auto;
    justify-self:center;
    transform:rotate(0deg);
}
}

@media (max-width:600px){
.collage-photo{
    width:90%;
    height:230px;
}
.collage-content{
    padding:40px 25px;
}
.collage-content h2{
    font-size:24px;
}
.collage-content p{
    font-size:17px;
}
}

.collage-container.reverse .photo1{
    justify-self:start;
    transform:rotate(8deg);
}

.collage-container.reverse .photo2{
    justify-self:end;
    transform:rotate(-8deg);
}

.collage-container.reverse .photo3{
    justify-self:start;
    transform:rotate(-8deg);
}

.collage-container.reverse .photo4{
    justify-self:end;
    transform:rotate(8deg);
}
.highlight{
    margin-top:25px;
    font-size:22px;
    font-weight:600;
    color:#ffffff;
    line-height:1.6;
}

.highlight strong{
    font-size:26px;
    color:#fff;
}
/* ==========================================================
   BLACK → WHITE DIVIDER
========================================================== */

.v-divider-black{
    width:100%;
    line-height:0;
    background:#111;
    margin-top: -170px;
}

.v-divider-black svg{
    display:block;
    width:100%;
    height:120px;
    fill:#fff;
}

/*corporate experience*/
.corporate-experiences {
    background-color: #ffffff; /* White background */
    padding: 80px 20px;
    font-family: inherit;
}

.corporate-experiences .container {
    max-width: 900px;
    margin: 0 auto;
}

.corp-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.corp-title {
    color: #000000;
    font-family:'Outfit',sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.corp-title span {
    color: #F4C430; /* Yellow accent */
}

.corp-programs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.corp-card {
    background-color: #0b0b0b; /* Sleek black card */
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.corp-card:hover {
    border-color: #d6a96d;
    transform: translateY(-3px);
}

.corp-icon-circle {
    min-width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    border: 2px solid #F4C430;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4C430;
}

.corp-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.corp-content p {
    color: #c5c5c5;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Explore Signature Programmes Section Block */
.explore-signature-box {
    background-color: #0b0b0b;
    border: 2px solid #F4C430;
    border-radius: 16px;
    padding: 40px 30px;
    color: #ffffff;
}

.explore-signature-box > h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.explore-subcards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explore-subcard {
    background-color: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.subcard-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #F4C430;
    margin-bottom: 15px;
}

.explore-subcard h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.btn--gold-para {
    background: #F4C430;
    color: #000000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.btn--gold-para:hover {
    background: #e8d48b;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .corp-title {
        font-size: 30px;
        margin-top: -20px;
    }
    
    .corp-card {
        padding: 20px 16px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .corp-content h3 {
        font-size: 16px;
    }

    .corp-content p {
        font-size: 13px;
    }

    .explore-signature-box {
        padding: 25px 15px;
    }

    .explore-signature-box > h2 {
        font-size: 20px;
        text-align: center;
    }
}

/* ==========================================================
   AVAILABLE FOR
========================================================== */

.speaking-services{
    background:#fff;
    padding:140px 0;
}

.services-container{
    width:min(1200px,92%);
    margin:auto;
}

.services-title{
    text-align:center;
    font-family:'Outfit',sans-serif;
    font-size:60px;
    font-weight:900;
    color:#111;
    margin-bottom:70px;
    margin-top: -90px;
}

/*==========================================
SERVICES GRID
==========================================*/

.services-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-bottom:120px;
}

.service-chip{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:72px;
    padding:20px 34px;
    background:#ffffff;
    border:2px solid #111;
    border-radius:8px;
    font-family:'Outfit',sans-serif;
    font-size:20px;
    font-weight:700;
    color:#111;
    text-align:center;
    transition:all .3s ease;
    cursor:pointer;
    box-shadow:6px 6px 0 #111;
}

.service-chip:hover{
    background:#111;
    color:#fff;
    transform:translate(-3px,-3px);
    box-shadow:10px 10px 0 #d6a646;
}
/* ==========================================================
   TEXT
========================================================== */

.organizer-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.organizer-content h2{
    font-family:'Outfit',sans-serif;
    font-size:54px;
    font-weight:900;
    color:#111;
    margin-bottom:45px;
}

.organizer-content h2 span{
    display:block;
    color:#f3cf5b;
    font-style:italic;
}

.organizer-content p{
    font-family:'Outfit',sans-serif;
    font-size:22px;
    line-height:1.3;
    color:#000;
    margin-bottom:22px;
}

.closing{
    font-size:28px;
    font-weight:700;
    color:#000;
    margin-top:25px;
}

/* ==========================================================
   ROLES
========================================================== */

.roles-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:110px;
}

.role-card{
    background:#fff;
    border:2px solid #D4AF37;
    border-radius:22px;
    padding:45px 20px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.role-card span{
    font-size:42px;
    display:block;
    margin-bottom:18px;
}

.role-card h3{
    font-family:'Outfit',sans-serif;
    font-size:26px;
    font-weight:800;
    color:#111;
}

.role-card:hover{
    background:#111;
    transform:translateY(-10px);
    border-color:#D4AF37;
}

.role-card:hover h3{
    color:#fff;
}

.button-center-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;
  padding: 20px 0;       
}
.book-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-sans), sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #ff2b72;
  color: #fff;
  padding: 18px 48px;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  transition: 0.3s ease;
  box-shadow: none;
}

.book-promo__btn:hover {
  background: #ff4b89;
  transform: translateY(-2px);
}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){
    .roles-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:600px){
    .services-title{
        font-size:42px;
    }
    .organizer-content h2{
        font-size:36px;
    }
    .organizer-content p{
        font-size:18px;
    }
    .roles-grid{
        grid-template-columns:1fr;
    }
    .service-chip{
        width:100%;
        text-align:center;
    }
}
/*journey section*/
.journeying-together {
    background-color: #000000; /* Pure black section background */
    padding: 40px 20px;
    margin-bottom: 20px;
    font-family: inherit;
    text-align: center;
}

.journeying-together .container {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-heading-wrap {
    margin-bottom: 50px;
}

.journey-title {
    color: #ffffff; /* White text for black background */
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.journey-title span {
    color: #D4AF37; /* Golden/Yellow accent */
}

.journey-subtitle {
    color: #f2eded; /* Muted light gray text */
    font-size: 22px;
    max-width: 500px;
    margin: 0 auto;
}

/* Logos Grid Style (Directly on the black background) */
.journey-logos-grid {
    display: flex; /* Switched to flex for precise spacing control */
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0 20px; /* Negative margin pulls the images closer together. Increase -20px to -30px if needed */
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.logo-item:hover {
    transform: translateY(-5px);
}
.logo-item:hover img {
    opacity: 1;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .journey-title {
        font-size: 30px;
    }
    .journey-subtitle {
    font-size: 18px;
    }

    .journey-logos-grid {
        grid-template-columns: 1fr; /* Stacks the 3 logos vertically on mobile */
        gap: 0px;
    }
    .logo-item img {
    max-width: 130%;
    max-height: 90px;
}
}
/* ==========================================================
   APPLY SECTION
========================================================== */

.apply-section{
    background:#fff;
    padding:50px 0 140px;
}

.apply-container{
    width:min(850px,90%);
    margin:auto;
}

.apply-title{
    font-family:'Outfit',sans-serif;
    font-size:56px;
    font-weight:900;
    text-align:center;
    color:#111;
    margin-bottom:20px;
    margin-top: -100px;
}

.apply-intro{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    font-family:'Outfit',sans-serif;
    font-size:22px;
    line-height:1.7;
    color:#555;
}

/* ==========================================================
   FORM
========================================================== */

.coaching-form{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-family:'Outfit',sans-serif;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px 22px;
    font-family:'Outfit',sans-serif;
    font-size:18px;
    border:2px solid #ddd;
    border-radius:14px;
    outline:none;
    transition:.3s;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#F4C430;
    box-shadow:0 0 0 4px rgba(244,196,48,.15);
}

/* ==========================================================
   PARALLELOGRAM BUTTON
========================================================== */

.apply-btn{
    align-self:center;
    margin-top:30px;
    padding:18px 60px;
    border:none;
    background:#ff3366;
    color:#fff;
    font-family:'Outfit',sans-serif;
    font-size:18px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
    transform:skewX(-18deg);
    transition:.35s ease;
}

.apply-btn span{
    display:inline-block;
    transform:skewX(18deg);
}

.apply-btn:hover{
    transform:skewX(-18deg) translateY(-5px);
    box-shadow:0 20px 45px rgba(255,51,102,.35);
}
