html {
    scroll-behavior: smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'League Spartan',sans-serif;
    overflow-x:hidden;
    background:#FEFAF8;
}

/* Global Section Container for alignment uniformity */
.section-container {
    max-width: 1420px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   GLOBAL KEYFRAMES ENGINE FOR TEXT ANIMATIONS
   ========================================================================== */
@keyframes textRevealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollRevealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section{
    width:100%;
    height:930px;
    position:relative;
    overflow:hidden;
    background: linear-gradient(180deg,#FF9B5C 0%, #FEFAF8 100%);
}

/* ===================================
   FULL BACKGROUND IMAGE
=================================== */

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    margin-top:-64px;
    background-image:url("bg.png");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:cover;
    z-index:1;
}

/* ===================================
   NAVBAR
=================================== */

.navbar{
    width:100%;
    height:94px;
    position:absolute;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0;
    padding-left:-4px;
    padding-right:55px;
    z-index:100;
}

.logo img{
    width:160px;
    margin-top:-5px;
    margin-left:64px;
}

/* GLOBAL TOGGLE PRESENTATION DEFAULTS */
.menu-toggle {
    display: none; 
}

/* NAV LINKS */

.nav-links{
    width:650px;
    height:57px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-left:40px;
    gap:30px;
    padding-top:2px;
    margin-top:15px;
    border-radius:20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    
    margin-top: 15px;
    margin-right: auto; 
    margin-left: 380px;  
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:700;
}

/* active-nav and hover interaction color parameters */
.nav-links a.active-nav, .nav-links a:hover {
    color: #FF6E27;
}

/* TALK BTN */

.talk-btn{
    width:180px;
    height:55px;
    border:none;
    border-radius:35px;
    background:#13113C;
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    margin-top:12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.talk-btn:hover{
    transform:translateY(-3px);
}

/* ==========================================================================
   HERO CONTENT (LOAD-IN ANIMATIONS WITH STAGGERED DELAYS)
   ========================================================================== */

.hero-content{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    padding:120px 70px 0;
    position:relative;
    z-index:10;
}

/* LEFT CONTENT */

.hero-left{
    width:750px;
    margin-top:-220px;
}

.hero-tag{
    color:#FF6E27;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    
    /* Animation Rule */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.hero-left h1{
    font-size:80px;
    line-height:0.95;
    color:#130F3B;
    margin-bottom:20px;
    
    /* Animation Rule */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.22s;
}

.hero-left h1 span{
    color:#FF6E27;
}

.hero-description{
    width:560px;
    font-size:25px;
    line-height:40px;
    color:#666;
    margin-bottom:50px;
    
    /* Animation Rule */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.34s;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:28px;
    
    /* Animation Rule */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.46s;
}

.primary-btn{
    width:240px;
    height:58px;
    border:none;
    border-radius:15px;
    background:#130F3B;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    width:190px;
    height:58px;
    border-radius:15px;
    border:1px solid rgba(255,110,39,0.7);
    background:transparent;
    color:#130F3B;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

/* ==========================================================================
   SCROLL-DRIVEN VIEWPORT ANIMATIONS (DOWN TO THE FOOTER)
   ========================================================================== */

/* --- FEATURES SECTION --- */
.features-section{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:-170px;
    position:relative;
    z-index:50;
}

.features-box{
    width:1420px;
    background:rgba(255,255,255,0.45);
    backdrop-filter:blur(10px);
    border-radius:35px;
    box-shadow: 0 7px 60px rgba(252,214,167,0.9);
    padding:55px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.feature-item{
    width:320px;
}

.feature-item img{
    width:52px;
    margin-bottom:18px;
}

.feature-item h3{
    font-size:26px;
    margin-bottom:15px;
}

.feature-item p{
    font-size:20px;
    line-height:30px;
    color:rgba(0,0,0,0.55);
}

.divider{
    width:2px;
    height:170px;
    background:#E6E6E6;
}

/* --- CAROUSEL CONTROLS & WRAPPER SYSTEM --- */
.carousel-wrapper {
    position: relative;
    max-width: 1080px; 
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #F4ECE7;
    color: #FF6E27;
    font-size: 26px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(255, 110, 39, 0.12);
    z-index: 90;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    padding-bottom: 4px; 
}

.carousel-arrow:hover {
    background: #FF6E27;
    color: #ffffff;
    border-color: #FF6E27;
    box-shadow: 0 6px 22px rgba(255, 110, 39, 0.35);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* --- SERVICES SECTION --- */
.services-section{
    width:100%;
    padding:100px 0 60px 0;
    background: #FFFAF7;
    position: relative;
    overflow: hidden;
}

.services-section h2{
    font-size:75px;
    font-weight:800;
    color:#000;
    text-align:center;
    margin-bottom:50px;
    position: relative;
    z-index: 2;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.services-section h2 span{
    color:#FF6E27;
}

.service-category {
    margin-bottom: 60px;
    width: 100%;
    overflow: hidden; 
    position: relative;
    z-index: 2;
}

.service-category h3 {
    font-size: 32px;
    font-weight: 700;
    color: #B0B0B0;
    margin-bottom: 30px;
    text-align: center;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.services-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 50px 0;
    align-items: center;
    scrollbar-width: none; 
    max-width: 920px; 
    margin: 0 !important; 
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.services-grid::-webkit-scrollbar {
    display: none; 
}

.service-card {
    flex: 0 0 280px; 
    height: 240px;
    background: #ffffff;
    border-radius: 35px;
    padding: 25px 22px;
    text-align: left;
    box-shadow: 0 15px 45px rgba(255, 155, 92, 0.12);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: scale(0.9);
    opacity: 0.7; 
    font-weight: 600; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, opacity 0.4s ease;
}

.service-card.active-center {
    transform: scale(1.06); 
    opacity: 1;
    box-shadow: 0 0 45px rgba(255, 110, 39, 0.42);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-icon-holder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.service-icon-holder img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.circle-pink {
    background-color: #FFEAEF;
}

.circle-blue {
    background-color: #E8F0FE;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #130F3B;
    line-height: 1.2;
}

.service-card p {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

.services-cta-container {
    display: flex;
    justify-content: center;
    margin-top: -10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.explore-services-btn {
    background: #130F3B; 
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 38px;
    border: none;
    border-radius: 35px; 
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 110, 39, 0.45); 
}

.explore-services-btn:hover {
    transform: translateY(-3px); 
    box-shadow: 0 0 35px rgba(255, 110, 39, 0.65); 
}

/* --- OUR PROCESS SECTION --- */
.process-section {
    width: 100%;
    padding: 30px 0 60px 0;
    background: #FFFAF7;
    text-align: center;
}

.process-subtitle {
    color: #FF6E27;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.process-section h2 {
    font-size: 46px;
    font-weight: 800;
    color: #130F3B;
    margin-bottom: 16px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.process-section h2 span {
    color: #FF6E27;
}

.process-underline {
    width: 105px;
    height: 3px;
    background: #FF6E27;
    margin: 0 auto 60px auto;
    border-radius: 2px;
}

.process-timeline-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed #FFD9C4;
    z-index: 1;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.step-icon-wrapper {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(255, 110, 39, 0.1);
    margin-bottom: 20px;
}

.step-icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.step-number {
    font-size: 15px;
    font-weight: 700;
    color: #FF6E27;
    margin-bottom: 6px;
    position: relative;
    z-index: 10;
}

.process-step h3 {
    font-size: 21px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.process-step p {
    font-size: 14px;
    line-height: 21px;
    color: #666666;
    max-width: 200px;
    position: relative;
    z-index: 10;
}

/* --- WHY PARTNER SECTION --- */
.why-choose-section {
    width: 100%;
    padding: 60px 0;
    background: #FEFAF8;
}

.why-choose-section .section-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.why-choose-box {
    background: radial-gradient(circle at bottom right, rgba(255, 110, 39, 0.12), transparent 60%), #0D0A2B;
    border-radius: 40px;
    padding: 60px 45px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(19, 15, 59, 0.15);
    width: auto !important;
    max-width: none !important;
    margin-left: 64px !important;
    margin-right: 55px !important;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.why-subtitle {
    color: #FF6E27;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.why-choose-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.why-choose-box h2 span {
    color: #FF6E27;
}

.why-underline {
    width: 50px;
    height: 3px;
    background: #FF6E27;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.why-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.why-icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.why-icon-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.65);
}

.vertical-divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    align-self: center;
}

/* --- PRODUCTS SECTION --- */
.products-section {
    width: 100%;
    padding: 70px 0;
    background: #FEFAF8;
}

.products-subtitle {
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Sour Gummy', sans-serif;
    font-size: 26px; 
    font-weight: 700;
    color: #FD5A21;
    letter-spacing: 0;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.products-subtitle span {
    color: #FD5A21;
}

.products-section h2 {
    font-size: 52px;
    font-weight: 800;
    color: #130F3B;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 20px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.products-section h2 span {
    color: #FF6E27;
}

.products-top-desc {
    font-size: 18px;
    color: #656565;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 26px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.products-main-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    align-items: stretch;
    scrollbar-width: none; 
    max-width: 920px; 
    margin: 0 !important; 
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.products-main-grid::-webkit-scrollbar {
    display: none; 
}

.product-item-card {
    flex: 0 0 280px; 
    height: auto;
    background: #ffffff;
    border: 1px solid #F4ECE7;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(255, 110, 39, 0.05); 
    scroll-snap-align: center;
    transform: scale(1) !important; 
    opacity: 1 !important;        
}

.product-item-card.active-center {
    transform: scale(1) !important; 
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(255, 110, 39, 0.05);
}

.product-item-inner {
    padding: 35px 30px 10px 30px;
    flex-grow: 1;
}

.product-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-item-icon-box {
    width: 54px;
    height: 54px;
    background: #05002d;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.product-item-icon-box img {
    width: 50px;
    object-fit: contain;
}

.product-item-title-meta h4 {
    font-size: 22px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 5px;
}

.product-meta-tag {
    font-size: 12px;
    font-weight: 700;
    color: #FF6E27;
    background: #FFF0EB;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.product-item-desc {
    font-size: 15px;
    line-height: 22px;
    color: #656565;
    margin-bottom: 25px;
    min-height: 66px;
}

.product-item-checklist {
    list-style: none;
}

.product-item-checklist li {
    font-size: 15px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-item-checklist li img {
    width: 16px;
    height: 16px;
}

.product-card-footer {
    background: #FFF9F6;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #FDF3EE;
    margin-top: auto;
}

.product-enquire-btn {
    font-size: 16px;
    font-weight: 700;
    color: #FF6E27;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.products-cta-bar {
    background: #FFF9F6;
    border: 1px solid #F3E6E1;
    border-radius: 20px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 920px; 
    margin: 0 auto;
    width: 100%;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.products-cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-cta-icon-holder {
    width: 48px;
    height: 48px;
    background: #FF6E27;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-cta-icon-holder img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.products-cta-txt h5 {
    font-size: 18px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 4px;
}

.products-cta-txt p {
    font-size: 14px;
    color: #656565;
}

.products-cta-orange-btn {
    background: #FF6E27;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.products-cta-orange-btn:hover {
    background: #E5540A;
}

/* --- ABOUT MILESTONES SECTION --- */
.about-milestones-section {
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.about-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.about-details-column {
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.about-details-column .about-section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #FF6E27;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-details-column h2 {
    font-size: 42px;
    font-weight: 800;
    color: #130F3B;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-details-column h2 span {
    color: #FF6E27;
}

.about-orange-bar {
    width: 45px;
    height: 3px;
    background: #FF6E27;
    margin-bottom: 28px;
    border-radius: 2px;
}

.about-editorial-desc {
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin-bottom: 35px;
}

.about-read-more-btn {
    background: #130F3B;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 14px 26px;
    cursor: pointer;
    margin-bottom: 45px;
    transition: background 0.2s;
}

.about-read-more-btn:hover {
    background: #25205E;
}

.about-pills-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-mini-pill {
    background: #F9F9F9;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-mini-pill img {
    width: 16px;
    height: 16px;
}

.about-timeline-column {
    position: relative;
    padding-left: 20px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.about-vertical-line {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 26px;
    width: 2px;
    background: #FFEBE6;
}

.about-milestone-nodes-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-milestone-node {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.about-node-dot {
    width: 14px;
    height: 14px;
    background: #FF6E27;
    border: 3px solid #FFF;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 0 4px #FFEBE6;
    flex-shrink: 0;
}

.about-node-body .about-node-year {
    font-size: 22px;
    font-weight: 800;
    color: #130F3B;
    display: block;
    margin-bottom: 4px;
}

.about-node-body p {
    font-size: 15px;
    line-height: 22px;
    color: #666;
}

.about-media-column {
    display: flex;
    justify-content: flex-end;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 35%;
}

.about-img-container {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.about-main-photo {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: #fff;
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 12px 35px rgba(255, 110, 39, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #FFEBE6;
}

.about-badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-badge-icon-box img {
    width: 40px;
    height: 40px;
}

.about-badge-numbers-box .about-badge-big-num {
    font-size: 32px;
    font-weight: 800;
    color: #130F3B;
    display: block;
    line-height: 1;
}

.about-badge-numbers-box .about-badge-lbl-txt {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    line-height: 1.3;
    display: block;
}

/* --- FOUNDERS SECTION --- */
.founders-section {
    width: 100%;
    padding: 40px 0 120px 0;
    background: #FEFAF8;
}

.founders-section h2 {
    font-size: 60px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
}

.founders-section h2 span {
    color: #FF6E27;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 310px));
    gap: 20px; 
    justify-content: center;
    width: 100%;
    
    /* Scroll Driven Hook */
    animation: scrollRevealUp both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.founder-card {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 30px;
    padding: 20px; 
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 310px; 
    margin: 0;
}

.founder-img-wrapper {
    width: 100%;
    height: 260px; 
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-details h4 {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}

.founder-role {
    font-size: 15px;
    font-weight: 500;
    color: #9E9E9E;
}

/* ===================================
   RESPONSIVE DESIGN BREAKPOINTS
=================================== */

@media(max-width:1340px){
    .why-choose-box {
        margin-left: 40px !important;
        margin-right: 30px !important;
    }

    .hero-bg {
        display: none !important;
    }

    /* RESPONSIVE TABLET HEADER RULES */
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 20px 30px 20px 40px !important; 
        height: auto !important;
        width: 100% !important;
    }
    
    .logo {
        margin: 0 !important;
    }
    
    .logo img {
        width: 130px !important; 
        margin-top: 0 !important;
        margin-left: 0 !important; 
    }
    
    .menu-toggle {
        display: block !important;
        width: 26px !important;
        height: 3px !important;
        background: #13113C !important;
        box-shadow: 0 8px 0 #13113C, 0 -8px 0 #13113C !important;
        margin-left: 20px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        position: relative;
        transition: all 0.25s ease-in-out;
    }

    .menu-toggle.active {
        background: transparent !important;
        box-shadow: none !important;
    }
    .menu-toggle.active::before,
    .menu-toggle.active::after {
        content: '';
        position: absolute;
        width: 26px;
        height: 3px;
        background: #13113C;
        left: 0;
    }
    .menu-toggle.active::before { transform: rotate(45deg); top: 0; }
    .menu-toggle.active::after { transform: rotate(-45deg); top: 0; }
    
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex !important;
        position: absolute !important;
        top: 85px !important;
        left: auto !important;                  
        right: 40px !important;                 
        width: 50% !important;                  
        height: auto !important;
        background: #13113C !important;         
        flex-direction: column !important;
        align-items: center !important;
        padding: 30px 20px !important;
        gap: 24px !important;
        border-radius: 24px !important;
        border: none !important;                
        box-shadow: 0 20px 45px rgba(19, 15, 59, 0.25) !important;
        z-index: 9999 !important;
        margin: 0 !important;
    }
    
    .nav-links.active a {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #ffffff !important;              
        width: 100%;
        text-align: center;
        padding: 4px 0;
    }
    
    .talk-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 140px !important;
        height: 46px !important;
        font-size: 14px !important;
        margin-top: 0 !important;
        margin-left: auto !important;
    }

    .hero-section {
        height: auto !important;
        padding-bottom: 70px !important;
    }

    .hero-content {
        height: auto !important;
        padding: 140px 40px 0 40px !important;
        display: block !important;
    }
    
    .hero-left {
        width: 100%;
        max-width: 650px;
        margin-top: 0 !important;
    }
    
    .hero-left h1 {
        font-size: 56px;
    }
    
    .hero-description {
        width: 100%;
        font-size: 21px;
        line-height: 34px;
    }

    .features-section {
        margin-top: -30px !important;
        padding: 0 40px;
        position: relative;
        z-index: 99;
    }

    .features-box {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 40px 25px;
    }

    .feature-item {
        width: calc(50% - 20px);
        min-width: 250px;
    }

    .divider {
        display: none;
    }

    .carousel-wrapper {
        max-width: 100%;
        padding: 0 40px;
    }

    .carousel-arrow {
        display: none !important;
    }

    .services-grid, .products-main-grid {
        max-width: 780px; 
        padding: 50px 45px !important;
    }
    .products-cta-bar {
        max-width: 780px;
    }
    
    .service-card {
        flex: 0 0 240px;
        height: 220px;
    }
    .product-item-card {
        flex: 0 0 280px; 
        height: auto;
        border: none !important; 
    }

    .timeline-line {
        display: none !important; 
    }
    
    .process-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important; 
        width: 100% !important;
        max-width: 280px !important; 
        margin: 0 auto !important;
        position: relative !important;
    }

    .process-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        position: relative !important;
        height: auto !important;
    }

    .step-icon-wrapper {
        width: 72px !important;
        height: 72px !important;
        margin: 0 auto 15px auto !important;
        align-self: center !important;
        position: relative !important;
        z-index: 5 !important;
        background: #FEFAF8 !important; 
    }

    .step-number {
        display: block !important;
        text-align: center !important;
        margin: 0 auto 6px auto !important;
    }

    .process-step h3 {
        display: block !important;
        text-align: center !important;
        margin: 0 auto 10px auto !important;
    }

    .process-step p {
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 175px !important; 
    }

    .process-step:not(:last-child)::after {
        content: '' !important;
        position: absolute !important;
        top: 36px !important; 
        height: calc(100% + 60px) !important; 
        width: 100px !important; 
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .process-step:nth-child(odd):not(:last-child)::after {
        right: 50% !important;
        border-left: 2px dashed #FF6E27 !important;
        border-top: 2px dashed #FF6E27 !important;
        border-bottom: 2px dashed #FF6E27 !important;
        border-top-left-radius: 50px !important;
        border-bottom-left-radius: 50px !important;
    }

    .process-step:nth-child(even):not(:last-child)::after {
        left: 50% !important;
        border-right: 2px dashed #FF6E27 !important;
        border-top: 2px dashed #FF6E27 !important;
        border-bottom: 2px dashed #FF6E27 !important;
        border-top-right-radius: 50px !important;
        border-bottom-right-radius: 50px !important;
    }

    .why-grid {
        flex-direction: column;
        align-items: center;
        gap: 45px;
    }
    .vertical-divider {
        display: none;
    }
    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-media-column {
        justify-content: center;
    }
    
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        overflow: visible;
        padding: 0;
    }
    .founder-card {
        flex: none;
        width: 100%;
        max-width: none;
    }
    
    /* Disable viewport scroll rules on compact/mobile layouts to remain clean */
    .features-box, .services-section h2, .service-category h3, .services-grid,
    .process-subtitle, .process-section h2, .process-step, .why-choose-box,
    .products-subtitle, .products-section h2, .products-top-desc, .products-main-grid,
    .products-cta-bar, .about-details-column, .about-timeline-column, .about-media-column,
    .founders-section h2, .founders-grid {
        animation: none !important;
    }
}

@media(max-width: 768px){
    .why-choose-box {
        margin-left: 24px !important;
        margin-right: 20px !important;
    }

    .section-container {
        width: 100%;
        padding: 0 24px;
    }

    .navbar {
        padding: 16px 20px 16px 24px !important; 
    }
    
    .logo img {
        width: 110px !important; 
    }
    
    .nav-links.active {
        top: 75px !important;
        left: auto !important;          
        right: 24px !important;         
        width: 50% !important;          
    }
    
    .talk-btn {
        width: 120px !important;
        height: 40px !important;
        font-size: 12px !important;
    }

    .hero-section {
        height: auto !important;
        padding-bottom: 60px !important; 
    }
    
    .hero-content {
        padding: 130px 24px 0 24px !important;
        justify-content: flex-start; 
        text-align: left; 
        display: block !important;
        height: auto !important;
    }
    
    .hero-left {
        width: 100%;
        margin-top: 0 !important;
    }
    
    .hero-tag {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .hero-left h1 {
        font-size: 44px;
        line-height: 1.1;
    }
    
    .hero-description {
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 35px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center; 
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        display: block;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 320px;
        height: 54px;
    }

    .features-section {
        margin-top: -20px !important;
        padding: 0 24px;
        position: relative;
        z-index: 99;
    }
    
    .features-box {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        padding: 45px 24px;
    }
    
    .feature-item {
        width: 100%;
        text-align: center;
    }
    
    .divider {
        margin: 0 auto;
    }

    .services-section h2, 
    .founders-section h2, 
    .process-section h2, 
    .why-choose-box h2, 
    .products-section h2, 
    .about-details-column h2 {
        font-size: 36px;
        line-height: 1.2;
    }
    .service-category h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .carousel-wrapper {
        padding: 0 20px;
    }

    .services-grid, .products-main-grid {
        max-width: 100%;
        padding: 30px 45px !important;
        gap: 25px;
    }
    .service-card, .product-item-card {
        flex: 0 0 250px; 
        height: auto;
        min-height: 230px;
        padding: 24px 20px;
        border: none !important; 
    }

    .products-cta-bar {
        max-width: 100%;
        flex-direction: column;
        gap: 24px;
        padding: 30px 24px;
        text-align: center;
    }
    .products-cta-left {
        flex-direction: column;
        gap: 12px;
    }

    .about-milestones-section {
        padding: 60px 0;
    }
    .about-pills-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .about-timeline-column {
        padding-left: 10px;
    }
    .about-vertical-line {
        left: 16px;
    }
    .about-milestone-node {
        gap: 16px;
    }
    .about-node-dot {
        margin-top: 4px;
    }
    .about-media-column {
        margin-top: 20px;
    }
    .about-img-container {
        max-width: 320px;
    }
    .about-experience-badge {
        right: -10px;
        bottom: -15px;
        padding: 12px 16px;
    }

    .founders-section {
        padding: 40px 0 80px 0;
    }
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        overflow: visible;
        padding: 0;
    }
    .founder-card {
        flex: none;
        width: 100%;
        max-width: none;
        padding: 15px 10px;
    }
    .founder-img-wrapper {
        height: 190px; 
    }
}

@media(max-width: 767px){
    .founders-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px;
        max-width: 100%;
        justify-content: flex-start;
        scrollbar-width: none;
        margin: 0;
    }
    .founders-grid::-webkit-scrollbar {
        display: none;
    }
    .founder-card {
        flex: 0 0 260px;
        max-width: none;
        scroll-snap-align: center;
    }
    .founder-img-wrapper {
        height: 260px; 
    }
}

/* ===================================
   FOOTER SECTION STYLES
=================================== */

.site-footer {
    background: #0D0A2B; 
    color: #ffffff;
    padding: 70px 0 30px 0;
    font-family: 'League Spartan', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #FF6E27;
    border-radius: 2px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 5px;
    display: block;
}

.footer-about-text {
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 340px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FF6E27;
}

.contact-info-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: #FF6E27;
    border-color: #FF6E27;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #FF6E27;
}

@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media(max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}