:root {
    --dark-bg: #0b0c15;
    --card-bg: #1a1b2e;
    --accent: #ff3b30;
    --text-light: #f3f4f6;
    --text-dim: #9ca3af;
}

body {
    background-color: var(--dark-bg);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    margin: 0;
}



  /* Smooth Scroll Container */
main {
    overflow: hidden;
}







.partner-logo-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.partner-logo-row img{
    width: 230px;   /* 180 + 50 */
    height: 170px;  /* 120 + 50 */
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s ease;
}

/* Second logo */
.partner-logo-row img:nth-child(2){
    width: 210px;   /* 160 + 50 */
    height: 160px;  /* 110 + 50 */
}

/* Third logo */
.partner-logo-row img:nth-child(3){
    width: 170px;   /* 120 + 50 */
    height: 110px;  /* 60 + 50 */
}

/* Fourth (last) logo */
.partner-logo-row img:nth-child(4){
    width: 270px;   /* 220 + 50 */
    height: 210px;  /* 160 + 50 */
}

/* Hover effect */
.partner-logo-row img:hover{
    opacity: 1;
    transform: scale(1.05);
}


/* Tablet */
@media(max-width:992px){
  .partner-logo-row{
    gap:40px;
  }
  .partner-logo-row img{
    max-width:130px;
  }
}

/* Mobile */
@media(max-width:576px){
  .partner-logo-row{
    gap:25px;
  }
  .partner-logo-row img{
    max-width:100px;
  }
}








/* --- 1. HERO SECTION (Parallax) --- */
.hero-section{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    color:var(--text-light);

    background:
      linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
      linear-gradient(rgba(255,90,31,.25), rgba(255,90,31,.25)),
      url("https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=1600&auto=format&fit=crop");

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:fixed;
}


.hero-bg-text {
    position: absolute;
    font-size: 13vw;
    font-weight: 800;
    color: rgba(4, 63, 255, 0.21);
    white-space: nowrap;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    z-index: 2;
    text-align: center;
    mix-blend-mode: difference;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1;
    font-style: italic;
    opacity: 0; /* JS reveal */
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--accent);
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    z-index: 5;
}


/* --- 2. LEADERSHIP (Enhanced 3D Cards) --- */
.leadership-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.leader-card-wrapper {
    perspective: 1500px;
    margin-bottom: 30px;
}

.leader-card-3d {
    position: relative;
    height: 350px;
    width: 100%;
/*    transform-style: preserve-3d;*/
    transition: transform 0.1s ease-out;
    border-radius: 20px;
}

.leader-card-inner {
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
/*    box-shadow: 0 20px 40px rgba(0,0,0,0.4);*/
/*    border: 1px solid rgba(255,255,255,0.1);*/
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.leader-card-3d:hover .leader-img {
    /*filter: grayscale(0%);
    transform: scale(1.1);*/
}

.leader-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateZ(50px); /* Floating Effect */
}

.leader-info h4 { margin: 0; font-size: 1.5rem; font-weight: 700; }
.leader-info p { color: var(--accent); margin: 5px 0 0; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }

/* --- 3. GLOBAL PRESENCE--- */
.global-section-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fff;
    color: #111;
}

.global-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.global-panel {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7vw;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.panel-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 50vh; /* Reduced size as requested */
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for Panels */
@media (max-width: 991px) {
    .panel-content { grid-template-columns: 1fr; text-align: center; }
    .panel-image { height: 35vh; order: -1; }
}
/* Progress Bar for Global Section */
.global-progress-container {
position: absolute;
bottom: 50px;
left: 10vw;
width: 80vw;
height: 6px;
background: rgba(0, 0, 0, 0.05);
z-index: 10;
border-radius: 5px;
}

.global-progress-bar {
width: 0%;
height: 100%;
background: var(--accent);
transition: width 0.1s ease-out;
border-radius: 5px;

}

/* Premium Image Treatment */
.panel-image {
position: relative;
overflow: hidden;
}

.panel-image::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, transparent 100%);
pointer-events: none;
}
/* --- 4. CLIENTS --- */

.clients-section {
padding: 80px 0;
background: #ffffff; 
position: relative;
overflow: hidden;
z-index: 1;
}

/* Three.js Canvas Container */
#canvas-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
opacity: 0.6;
}

.section-sub {
letter-spacing: 0.6rem;
font-size: 0.7rem;
color: #ff3b30;
font-weight: 800;
text-transform: uppercase;
}

.premium-card-wrapper {
perspective: 2000px;
padding: 15px;
}

.premium-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(0, 0, 0, 0.08);
padding: 80px 45px;
position: relative;
transition: transform 0.1s ease-out;
transform-style: preserve-3d;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
}

/* The Dynamic Sheen */
.card-sheen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(253, 152, 0, 0.23) 0%, 
    transparent 60%
);
mix-blend-mode: overlay;
pointer-events: none;
z-index: 5;
}

.premium-card h4 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: #000;
margin-bottom: 25px;
transform: translateZ(60px);
font-weight: 700;
}

.premium-card p {
color: #555;
font-size: 1rem;
line-height: 1.8;
transform: translateZ(40px);
}

.card-icon-wrap {
width: 40px;
margin-bottom: 40px;
transform: translateZ(80px);
filter: drop-shadow(0 5px 15px rgba(255,59,48,0.2));
}

.card-footer-tag {
margin-top: auto;
font-size: 0.65rem;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
color: #ff3b30;
transform: translateZ(30px);
}

/* Decorative Line */
.premium-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
height: 2px;
background: #ff3b30;
transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-card:hover::after {
width: 100%;
}