body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}


a { text-decoration:none; }



#site-loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#141414;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
transition:opacity .4s ease, visibility .4s ease;
}

#site-loader.hide{
opacity:0;
visibility:hidden;
}

#site-loader img{
height:180px;
}


/* Default Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #111;
    padding: 15px 0;
    transition: all 0.4s ease;
}

/* Scroll Header */
.main-header.scrolled {
    background: #111;
    padding: 0px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-text {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Menu */
.navbar-nav .nav-link {
    color: #bfbfbf;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #11b6dc;
}

.custom-toggler .navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

.custom-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.custom-toggler .navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.custom-toggler.open .navbar-toggler-icon {
    background: transparent;
}

.custom-toggler.open .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.custom-toggler.open .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url("../images/hero-home.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: 6em;
    overflow: hidden;
}

/* bottom gradient overlay */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


/* heading */
.hero-content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.reveal-text span {
    display: block;
    color: #fff;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(60px);
    animation: textReveal 0.8s forwards;
}

.reveal-text span:nth-child(1) {
    animation-delay: .2s;
}

.reveal-text span:nth-child(2) {
    animation-delay: .4s;
}

.reveal-text span:nth-child(3) {
    animation-delay: .6s;
}

.reveal-text span:nth-child(4) {
    animation-delay: .8s;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* subtitle */



.subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
    animation-delay: 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* buttons */
.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

/* primary button */
.btn-explore {
    background: #16c6d8;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all .35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* icon animation */
.arrow-icon {
    transition: transform .3s ease;
}

/* hover effect */
.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #0fb2c3;
}

.btn-explore:hover .arrow-icon {
    transform: translateX(6px);
}


/* outline button */
.btn-connect {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn-connect:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}


.podcast-section {
    background: #0e0e0e;
    padding: 100px 0;
    color: #fff;
}

.season-tabs .nav-link {
    border: 1px solid #444;
    color: #aaa;
    padding: 8px 20px;
    margin: 0 6px;
    border-radius: 30px;
}

.season-tabs .nav-link.active {
    background: #14c6d6;
    color: #000;
    border-color: #14c6d6;
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #9b9b9b;
    margin-bottom: 40px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    display: block;
}

/* YouTube play button */

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: #ff0000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

/* white triangle */

.play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

/* hover effect */

.youtube-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e60000;
}

/* play button */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: .3s;
    border-radius: 15px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* arrows */

.podcast-prev,
.podcast-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.podcast-prev {
    left: -60px;
}

.podcast-next {
    right: -60px;
}

.podcast-prev i,
.podcast-next i {
    color: #000;
}


.belief-section {
    padding: 120px 0;
    /*background:linear-gradient(
        90deg,
        #000000 0%,
        #0c0c0c 50%,
        #111111 100%
    );*/

    background-color: #121212;
}

.belief-text {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}


.stats-section {
    padding: 100px 0;
    background: #0b0b0b;
}

.stats-card {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    text-align: left;
    transition: all .3s ease;
}

.stats-card:hover {
    transform: translateY(-6px);
    border-color: #21c7d9;
    box-shadow: 0 10px 30px rgba(33, 199, 217, 0.15);
}

.stats-number {
    font-size: 48px;
    font-weight: 500;
    color: #21c7d9;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.stats-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stats-desc {
    font-size: 14px;
    color: #a5a5a5;
    margin: 0;
}


.timeline-section {
    background: #0f0f0f;
    padding: 120px 0;
    color: #fff;
}


.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding-left: 40px;
}

/* main vertical line */

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1e1e1e;
}

/* animated progress line */

.timeline-progress {
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 0;
    background: #17c8da;
    transition: height .3s ease;
}

/* timeline items */

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
    transition: .3s;
}

/* glowing dot */

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #17c8da;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(23, 200, 218, .8);
}

/* content */

.timeline-content p {
    margin: 0;
    color: #bcbcbc;
}

.timeline-year {
    color: #17c8da;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

/* hover effect */

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 18px rgba(23, 200, 218, 1);
}

/* highlight milestone */

.timeline-highlight {
    margin: 40px 0 40px 30px;
    border: 1px solid #17c8da;
    padding: 16px 22px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    background: rgba(23, 200, 218, .05);
}

.timeline-highlight span {
    color: #17c8da;
    font-weight: 500;
}


.lessons-section {
    padding: 120px 0;
    background: #0b0b0b;
    color: #fff;
}

.lessons-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 50px;
}

.lessons-card {
    border: 1px solid #18c6d8;
    border-radius: 10px;
    padding: 40px 45px;
    background: rgba(255, 255, 255, 0.02);
}

.lessons-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.highlight-text {
    color: #18c6d8;
    font-weight: 500;
}


/**************************** 
 About Us Page
******************************/
.page-hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)), url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-top: 6em;
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
}

.hero-subtitle {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 18px;
    opacity: 0.9;
}


.about-section {
    background: #121212;
    padding: 100px 0;
    color: #fff;
}

.about-wrapper {
    max-width: 850px;
    margin: auto;
}

.about-header {
    margin-bottom: 40px;
}

.about-img img {
    width: 250px;
    border-radius: 0px;
}

.about-title {
    margin-left: 40px;
}

.about-title h2 {
    margin-bottom: 5px;
}

.about-title span {
    color: #9da3a9;
    font-size: 16px;
}

.about-content p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 22px;
}


.stats-section {
    background: #171717;
}

.brands-section {
    background: #121212;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;

}


.brand-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.brand-card {
    background: #fff;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    overflow: hidden;
}

.brand-card img {
    filter: grayscale(100%);
    transition: 0.4s;
}
.brand-card a {
    display: block;
    width: 100%;
}

.brand-card:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

.brand-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


.brand-arrow {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.brand-arrow {
    position: absolute;
    top: 63%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.brand-prev {
    left: 120px;
}

.brand-next {
    right: 120px;
}

.brand-arrow span {
    font-weight: bold;
}


.impact-section {
    background: #171717;
    padding: 90px 0;
    color: #fff;
}

.impact-title {
    font-size: 38px;
    margin-bottom: 40px;
}

.impact-box {
    max-width: 720px;
    margin: auto;
    padding: 40px 45px;
    border: 1px solid #0f6c75;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease;
}

.impact-box:hover {
    border-color: #19b6c3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.impact-box p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
}


/* Work Page */
.hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #20c5d7;
    margin-bottom: 20px;
}

.select-work-section {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
}

.work-intro {
    max-width: 900px;
    margin: auto;
    color: #d3d3d3;
    font-size: 16px;
    line-height: 1.7;
}

.work-title {
    font-size: 28px;
    font-weight: 500;
    margin-top: 40px;
}

.client-box {
    background: #d9d9d9;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.client-box img {
   width: 100%;
}

.client-box.dark {
    background: #000;
}

.client-box.blue {
    background: #2f4488;
}

.client-box:hover {
    transform: translateY(-6px);
}



.enquiry-section{
    background:#171717;
    padding:100px 0;
    color:#fff;
}

.form-heading{
    font-size:28px;
    font-weight:600;
}

.form-card{
    background:#121212;
    padding:40px;
    border-radius:8px;
    border:1px solid #2b2b2b;
}

.form-title{
    margin-bottom:25px;
    font-weight:600;
}

.form-control,
.form-select{
    background:#0c0c0c;
    border:1px solid #333;
    color:#fff;
    padding:12px;
}

.form-control::placeholder{
    color:#888;
}

.form-control:focus,
.form-select:focus{
    background:#0c0c0c;
    border-color:#19c1c7;
    box-shadow:none;
    color:#fff;
}


.select2-container--default .select2-selection--single{
    background:#0c0c0c;
    border:1px solid #333;
    height:48px;
    display:flex;
    align-items:center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#fff;
}

/* dropdown background */
.select2-dropdown{
    background:#111;
    border:1px solid #333;
}

/* options text */
.select2-results__option{
    color:#fff;
}

/* selected item */
.select2-results__option--selected{
    background:#19c1c7 !important;
    color:#fff;
}

/* hover item */
.select2-results__option--highlighted{
    background:#14aab0 !important;
    color:#fff;
}

.select2-selection__arrow{
    height:48px !important;
}



label{
    font-size:14px;
    margin-bottom:6px;
    color:#ccc;
}

.submit-btn{
    background:#19c1c7;
    border:none;
    padding:12px;
    font-weight:500;
    color:#fff;
}

.submit-btn:hover{
    background:#14aab0;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    background-color: #19c1c7;
}

.btn-loader{
width:18px;
height:18px;
border:2px solid #fff;
border-top:2px solid transparent;
border-radius:50%;
display:inline-block;
animation:spin 0.7s linear infinite;
margin-left:8px;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

.d-none{
display:none;
}


.error-msg{
color:#ff4d4f;
font-size:13px;
display:block;
margin-top:4px;
}

.input-error{
border-color:#ff4d4f !important;
}



.seagull-section{
    background:#121212;
    color:#fff;
    padding:100px 0;
}

.seagull-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.seagull-content h2{
    margin-bottom:40px;
}

.seagull-content p{
    font-size:16px;
    line-height:1.9;
    color:#d6d6d6;
    margin-bottom:28px;
}

.seagull-content em{
    color:#fff;
    font-style:italic;
}



/* Seagull Page */

.wings-section{
background:#171717;
}

/* Card */
.wing-card {
    background: #171717;
    border: 1px solid #555454;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    gap: 20px;
    align-items: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.wing-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.25);
border-color:#00c6d7;
}

/* Image */
.wing-img img{
width:200px;
height:150px;
object-fit:contain;
transition:transform .35s ease;
}

/* Image hover zoom */
.wing-card:hover .wing-img img{
transform:scale(1.05);
}

/* Title */
.wing-content h4{
color:#00c6d7;
font-weight:600;
margin-bottom:10px;
transition:color .3s ease;
}

/* Text */
.wing-content p{
color: rgb(166 166 166);
line-height:1.8;
margin:0;
}

/* Optional glow line animation */
.wing-card::before{
content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:4px;
background:#00c6d7;
transform:scaleY(0);
transform-origin:top;
transition:transform .35s ease;
}

.wing-card:hover::before{
transform:scaleY(1);
}



.cta-section{
background:linear-gradient(90deg,#0f0f0f,#1a1a1a,#0f0f0f);
padding:100px 0;
}


.section-padding {
    padding: 80px 0;
}
.section-title{
    color:#fff;
    font-size:36px;
    font-weight:500;
    margin-bottom:20px;
}

.cta-text{
color:#cfcfcf;
font-size:16px;
max-width:650px;
margin:0 auto 35px;
line-height:1.7;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* Primary button */
.btn-contact{
background:#1cb5c9;
color:#fff;
padding:12px 30px;
border-radius:6px;
font-weight:500;
transition:.3s;
}

.btn-contact:hover{
background:#14a2b5;
color:#fff;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* Outline button */
.btn-outline{
border:1px solid #444;
color:#fff;
padding:12px 30px;
border-radius:6px;
transition:.3s;
}

.btn-outline:hover{
background:#fff;
color:#000;
transform:translateY(-2px);
}



/* Brand talks Page  */
.brand-talks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("../images/brand-hero.jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    margin-top: 5em;
}

.brand-talks-hero .subtitle{
    color:#00c4d6;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.brand-talks-hero .hero-title{
    font-size:64px;
    font-weight:500;
    line-height:1.2;
    margin-bottom:25px;
}

.brand-talks-hero .hero-desc{
    font-size:16px;
    color:#cfcfcf;
    margin-bottom:35px;
    max-width:500px;
}

.btn-brand{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#00c4d6;
    color:#000;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.btn-brand .arrow{
    display:inline-flex;
    transition:transform .3s ease;
}

/* hover effect */

.btn-brand:hover{
    background:#00a6b5;
    color:#000;
}

.btn-brand:hover .arrow{
    transform:translateX(6px);
}


.speaking-topics{
    background:#121212;
    color:#fff;
}


.section-subtitle{
    color:#a3a3a3;
    max-width:700px;
    margin:auto;
}

.topic-card{
    background:#181818;
    border:1px solid rgba(255,255,255,0.08);
    padding:40px 25px;
    border-radius:12px;
    transition:all .35s ease;
}

.topic-card h5{
    font-size:18px;
    margin-top:15px;
}

.topic-icon img{
    width:45px;
}

.topic-card:hover{
    border-color:#00c4d6;
    transform:translateY(-6px);
    box-shadow:0 10px 35px rgba(0,196,214,0.15);
}


.invite-section{
background:#05070b;
color:#fff;
}

.form-box{
max-width:900px;
background:#0b0f14;
border:1px solid rgba(255,255,255,0.08);
padding:40px;
border-radius:12px;
}

.form-box label{
font-size:14px;
margin-bottom:6px;
display:block;
}

.form-control{
background:#05070b;
border:1px solid rgba(255,255,255,0.12);
color:#fff;
padding:12px 14px;
}

.form-control:focus{
background:#05070b;
color:#fff;
border-color:#00c4d6;
box-shadow:none;
}

.form-control::placeholder{
color:#7a7a7a;
}

.invite-btn{
    background:#00c4d6;
    color:#000;
    padding:14px 20px;
    font-weight:600;
    border-radius:6px;
    border:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:all .3s ease;
}

.invite-btn svg{
    transition:transform .3s ease;
}

/* hover effect */

.invite-btn:hover{
    background:#00a6b5;
    transform:translateY(-2px);
}

.invite-btn:hover svg{
    transform:translateX(6px) rotate(-10deg);
}




/* Blogs & Podcasts */

.insights-hero {
    background: linear-gradient(180deg, hsl(0 0% 7%), hsl(0 0% 12%));
    min-height: 550px;
    color: #fff;
    padding: 100px 0;
    margin-top: 6em;
}

.insights-hero .hero-title{
    font-size:56px;
    font-weight:500;
    margin-bottom:25px;
    color: #fff;
}

.insights-hero .hero-desc{
    max-width:820px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
    color:#b9c2cf;
    margin-bottom:35px;
}

.insights-hero .subscribe-btn{
    background:#18c5d6;
    color:#000;
    padding:12px 28px;
    font-weight:600;
    border-radius:6px;
}

.insights-hero .subscribe-btn:hover{
    background:#12a8b8;
}



.blog-categories{
background: linear-gradient(180deg, hsl(0 0% 7%), hsl(0 0% 12%));
}

.category-card{
background:#161616;
border:1px solid #242b35;
border-radius:8px;
padding:20px;
height:100%;
transition:0.3s;
}

.category-card:hover{
transform:translateY(-5px);
border-color:#18c5d6;
}

.category-card h5{
color:#fff;
font-size:18px;
margin-bottom:15px;
}

.category-card img {
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    min-height: 330px;
    object-fit: cover;
}

.category-card p{
color:#b7c0cc;
font-size:16px;
line-height:1.6;
margin-bottom:20px;
}

.card-footer-box{
border:1px solid #242b35;
padding:12px;
border-radius:6px;
font-size:13px;
color:#9aa6b2;
background:#0f141b;
}



.stay-updated{
background:#121212;
padding:100px 0;
}

.cta-title{
color:#ffffff;
margin-bottom:15px;
}

.cta-desc{
color:#a8b3c2;
max-width:650px;
margin:auto;
font-size:16px;
line-height:1.7;
margin-bottom:30px;
}

.cta-btn{
background:#18c5d6;
color:#000;
padding:12px 30px;
border-radius:6px;
font-weight:600;
transition:all .3s ease;
}

.cta-btn:hover{
background:#13a9b9;
color:#000;
transform:translateY(-2px);
box-shadow:0 0 20px rgba(24,197,214,0.45);
}



/* Contact Page */

.contact-options {
    background: #121212;
    margin-top: 6em;
    padding: 100px 0;
}

.contact-options h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
}

.contact-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #21c7d9 !important;
    box-shadow: 0 10px 30px rgba(33, 199, 217, 0.15);
}

.contact-card .card-body h4 {
    color: #fff;
    font-size: 24px;
}

.contact-card .btn-info {
    background: #18b7c9;
    border: none;
    color: #000;
    font-weight: 500;
}

.contact-card .btn-info:hover {
    background: #13a2b3;
}


/* Get In Touch Section */

.get-touch{
    padding:100px 0;
    background:#171717;
}


.contact-box{
    border:1px solid rgba(255,255,255,0.1);
    padding:25px 30px;
    border-radius:10px;
    margin-bottom:20px;
    transition:all .3s ease;
}

.contact-box:hover{
    border-color:#18b7c9;
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.contact-icon{
    width:55px;
    height:55px;
    background:#0b2b30;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    margin-right:20px;
    font-size:22px;
    color:#18b7c9;
}

.contact-info span{
    color:#9aa0a6;
    font-size:14px;
}

.contact-info p{
    margin:0;
}

.contact-info a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.contact-info a:hover{
    color:#18b7c9;
}



/* Location Section */

.location-section{
    background:#121212;
}

.location-section h2{
    margin-bottom:40px;
}

.map-wrapper{
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.1);
    transition:all .3s ease;
}

.map-wrapper:hover{
    border-color:#18b7c9;
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    display:block;
}




.speaking-modal .modal-content{
    background:#fff;
    border-radius:10px;
}

.speaking-modal .modal-title{
    font-weight:600;
}

.speaking-modal label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

.speaking-modal .form-control{
    background:#0b0b0b;
    border:none;
    color:#fff;
    padding:12px;
}

.speaking-modal .form-control::placeholder{
    color:#9aa0a6;
}

.send-btn{
    background:#4a7bd9;
    border:none;
    padding:12px 40px;
    color:#fff;
    border-radius:6px;
}

.send-btn:hover{
    background:#3a68c0;
}



.brand-modal .modal-content{
background:#f4f4f4;
border-radius:12px;
padding:10px;
}

.brand-modal label {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.brand-modal .form-control,
.brand-modal .form-select{
background:#0d0d0d;
border:none;
color:#fff;
padding:12px;
}

.brand-modal .form-control::placeholder{
color:#999;
}

.submit-btn{
background:#4a7bd9;
color:#fff;
border:none;
padding:14px;
font-weight:500;
border-radius:6px;
}

.submit-btn:hover{
background:#3a66c1;
}

.error-msg{
color:red;
font-size:13px;
}



/* Footer */
.site-footer {
    background-color: rgb(28 28 28);
    color: #cfcfcf;
    padding: 80px 0 30px;
}

.footer-brand {
    color: #1fd3e3;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #9a9a9a;
    font-size: 15px;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9a9a9a;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1fd3e3;
}

.footer-email {
    color: #9a9a9a;
    margin-bottom: 15px;
}

.footer-email i {
    margin-right: 8px;
}

.footer-social a {
    color: #9a9a9a;
    margin-right: 14px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #1fd3e3;
}

.footer-divider {
    border-color: #fff;
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #8a8a8a;
}




/* responsive */
@media (max-width:768px) {
    .main-header {
        padding: 5px 0;
    }

    .hero-section {
        margin-top: 5em;
        height: 81vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
    font-size: 32px;
    width: 90%;
    margin: 35px auto 0;
}
    .reveal-text span {
        display: inline-block;
        font-size: 32px;
    }

    .hero-section {
        background-image: url("../images/hero-home-m.jpg");
        background-position: center;
        display: flex;
        align-items: flex-start;
        padding-top: 35px;
    }

    .subtitle {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .hero-buttons {
        margin-top: 15px;
    }

    .hero-buttons .btn.btn-connect {
        margin-top: 12px;
        border-color: #fff;
    }


.brand-talks-hero {
    background: url("../images/brand-hero-m.jpg");
    background-position: top;
    height: 130vh;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-start !important;
    text-align: center;
    padding-top: 25px;
}

    .brand-talks-hero .hero-title{
        font-size:32px;
    }

    .brand-talks-hero .subtitle {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .brand-talks-hero .btn-brand {
        font-size: 14px;
    }

    .brand-talks-hero .hero-desc {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .podcast-section {
        padding: 50px 0;
    }

    .podcast-prev, .podcast-next {
        top: auto;
        bottom: 0;
    }
    .podcast-slider.position-relative {
        padding-bottom: 80px;
    }

    .podcast-next {
        right: 35%;
    }
    .podcast-prev {
        left: 35%;
    }


    .belief-section {
        padding: 50px 0;
    }

    .belief-text {
        font-size: 16px;
    }

    section.stats-section {
        padding: 50px 15px;
    }
    h2.timeline-title {
        margin-bottom: 30px !IMPORTANT;
        font-size: 28px;
    }

    .timeline-section {
        padding: 50px 0;
    }

    .lessons-section {
        padding: 50px 0;
    }

    .lessons-title {
        font-size: 28px;
    }



    section .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-header {
        display: flex;
        flex-direction: column;
        align-items: start !important;
    }
    .about-title {
        margin-left: 0;
    }

    .about-img img {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-img {
        width: 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    section.brands-section {
        padding-bottom: 6em;
    }
    .swiper.brandSwiper {
        margin-bottom: 30px;
    }
    .brand-arrow {
        top: auto;
        bottom: 20px;
    }

    .brand-card {
        background: transparent;
    }

    .impact-box {
        padding: 30px 15px 15px;
    }

    .stats-number {
        font-size: 32px;
    }

    .page-hero {
        margin-top: 5em;
    }


    .client-box {
        background-color: transparent;
        height: 150px;
    }

    .form-card {
        padding: 20px;
    }


    .wing-card {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .btn-contact {
        width: 220px;
    }


    .topic-card {
        padding: 20px 40px;
    }
    .topic-icon img {
        width: 65px;
    }


    .form-box {
        padding: 20px;
    }


    .insights-hero {
        padding: 50px 0;
        margin-top: 5em;
    }

    

    .insights-hero .hero-title {
        font-size: 36px;
    }

    .category-card img {
        min-height: 250px;
    }


    .contact-options {
    margin-top: 5em;
    padding: 50px 0;
    }


    .contact-options h2 {
        font-size: 36px;
    }

    .contact-icon {
        padding: 0 17px;
    }


    .contact-box {
    padding: 20px 20px;
    }

    .contact-info a {
        font-size: 13px;
    }


    .site-footer {
        padding: 50px 0 30px;
    }

}