/* ===================================
   SYSCO PREMIUM HEADER V2
=================================== */
/* =========================================
   GLOBAL FIXES
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;

    overflow-x:hidden;

    background:#ffffff;
}




/* ===================================
   SYSCO PREMIUM HEADER
=================================== */

.header{
    position:fixed;
    top:22px;
    left:50%;
    transform:translateX(-50%);
    width:min(1380px,95%);
    z-index:9999;
}

/* ===================================
   NAVBAR
=================================== */

.nav{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:78px;

    padding:0 34px;

    background:#ffffff;

    border-radius:28px;

    border:1px solid rgba(8,17,45,.06);

    box-shadow:
        0 12px 35px rgba(15,23,42,.04),
        0 3px 10px rgba(15,23,42,.02);

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Premium shine */

.nav::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.95),
            transparent
        );
}

/* Animated accent line */

.nav::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #12BEE7,
            #6A35FF,
            #12BEE7,
            transparent
        );

    background-size:300% 100%;

    animation:borderMove 8s linear infinite;

    opacity:.7;
}

@keyframes borderMove{

    from{
        background-position:0 0;
    }

    to{
        background-position:300% 0;
    }
}

.nav:hover{

    transform:translateY(-2px);

    box-shadow:
        0 20px 50px rgba(15,23,42,.06);
}

/* ===================================
   LOGO
=================================== */

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;

    flex-shrink:0;
}

.logo-img{

    display:block;

    height:52px;

    width:auto;

    object-fit:contain;
}

/* ===================================
   MENU
=================================== */

.menu{

    display:flex;

    align-items:center;

    gap:60px;

    margin-left:auto;

    margin-right:50px;
}

.menu a{

    text-decoration:none;

    font-family:"Cormorant Garamond", serif;

    font-size:24px;

    font-weight:600;

    color:#08112D;

    letter-spacing:-0.01em;

    transition:.25s ease;
}

.menu a:hover{

    color:#4257B2;
}

/* ===================================
   CTA AREA
=================================== */

.nav-right{

    flex-shrink:0;
}

.nav-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:52px;

    padding:0 30px;

    border-radius:999px;

    text-decoration:none;

    font-family:"Poppins",sans-serif;

    font-size:16px;

    font-weight:600;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            #12BEE7,
            #6A35FF
        );

    transition:all .3s ease;
}

.nav-btn:hover{

    color:#ffffff;

    transform:translateY(-2px);

    box-shadow:
        0 12px 30px rgba(106,53,255,.25);
}

.nav-btn svg{

    width:16px;
    height:16px;

    flex-shrink:0;
}

/* ===================================
   HIDE HEADER ON TABLET + MOBILE
=================================== */

@media screen and (max-width:991px){

    .header{
        display:none !important;
    }
}

/* =========================================
   PROCESS NEXT GEN
========================================= */

.process-section{

    position:relative;

    overflow:hidden;

    padding:120px 5%;

    background:
    linear-gradient(
        180deg,
        #05101F,
        #071A33
    );
}

/* Grid */

.process-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(255,255,255,.04) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.04) 1px,
        transparent 1px
    );

    background-size:90px 90px;
}

/* Orbs */

.process-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    pointer-events:none;
}

.process-orb-1{

    width:700px;

    height:700px;

    right:-250px;

    top:-250px;

    background:
    radial-gradient(
        rgba(56,189,248,.15),
        transparent 70%
    );
}

.process-orb-2{

    width:600px;

    height:600px;

    left:-250px;

    bottom:-250px;

    background:
    radial-gradient(
        rgba(37,99,235,.10),
        transparent 70%
    );
}

/* Container */

.process-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;
}

/* Header */

.process-header{

    max-width:850px;

    margin:auto auto 90px;

    text-align:center;
}

.process-badge{

    display:inline-flex;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(255,255,255,.08);

    color:#8CB4FF;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.process-header h2{

    color:white;

    font-size:
    clamp(46px,5vw,80px);

    line-height:.95;

    font-weight:900;

    margin-bottom:18px;
}

.process-header p{

    color:
    rgba(255,255,255,.72);

    font-size:18px;

    line-height:1.9;
}

/* Flow */

.process-flow{

    position:relative;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:22px;
}

/* Main Line */

.flow-line{

    position:absolute;

    left:10%;

    right:10%;

    top:48px;

    height:2px;

    background:
    linear-gradient(
        90deg,
        rgba(56,189,248,.3),
        rgba(56,189,248,1),
        rgba(56,189,248,.3)
    );
}

/* Animated Particle */

.flow-pulse{

    position:absolute;

    width:90px;

    height:4px;

    border-radius:50px;

    background:#38BDF8;

    box-shadow:
    0 0 20px #38BDF8,
    0 0 40px #38BDF8;

    animation:
    moveFlow 7s linear infinite;
}

@keyframes moveFlow{

    from{

        left:0;
    }

    to{

        left:calc(100% - 90px);
    }
}

/* Card */

.process-card{

    position:relative;

    padding:32px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(30px);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    text-align:center;

    overflow:hidden;
}

/* Glass Shine */

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transition:.8s;
}

.process-card:hover::before{

    left:100%;
}

.process-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(56,189,248,.25);

    box-shadow:
    0 25px 70px rgba(0,0,0,.3);
}

/* Icon */

.process-icon{

    width:86px;

    height:86px;

    margin:auto;

    margin-bottom:24px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563EB,
        #38BDF8
    );

    color:white;

    font-size:30px;

    transition:.4s;
}

.process-card:hover .process-icon{

    transform:
    translateY(-5px)
    scale(1.05);
}

/* Number */

.step-number{

    display:block;

    color:#8CB4FF;

    font-size:12px;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:12px;
}

/* Title */

.process-card h3{

    color:white;

    font-size:32px;

    font-weight:800;

    margin-bottom:14px;
}

/* Text */

.process-card p{

    color:
    rgba(255,255,255,.75);

    line-height:1.8;

    font-size:15px;
}

/* Scale Card Special */

.end-card{

    border-color:
    rgba(56,189,248,.18);
}

/* Responsive */

@media(max-width:992px){

    .process-flow{

        grid-template-columns:
        repeat(2,1fr);
    }

    .flow-line{

        display:none;
    }
}

@media(max-width:768px){

    .process-section{

        padding:90px 24px;
    }

    .process-flow{

        grid-template-columns:1fr;
    }

    .process-header h2{

        font-size:42px;
    }
}

/* ==================================
   BOOK CALL SECTION
================================== */

.book-section{

    position:relative;

    overflow:hidden;

    padding:110px 5%;

    background:

    linear-gradient(
        180deg,
        #031126,
        #051935
    );
}

/* GRID */

.book-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(255,255,255,.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.03) 1px,
        transparent 1px
    );

    background-size:80px 80px;
}

/* ORBS */

.book-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    pointer-events:none;
}

.book-orb-1{

    width:550px;

    height:550px;

    right:-250px;

    top:-200px;

    background:
    rgba(59,130,246,.12);
}

.book-orb-2{

    width:400px;

    height:400px;

    left:-150px;

    bottom:-150px;

    background:
    rgba(37,99,235,.08);
}

/* CONTAINER */

.book-container{

    position:relative;

    z-index:2;

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:
    500px
    1fr;

    gap:70px;

    align-items:center;
}

/* LEFT */

.book-badge{

    display:inline-flex;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    color:#8DB8FF;

    font-size:11px;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:22px;
}

.book-content h2{

    color:white;

    font-size:
    clamp(52px,5vw,82px);

    line-height:.95;

    font-weight:900;

    margin-bottom:24px;

    letter-spacing:-3px;
}

.book-content p{

    color:
    rgba(255,255,255,.7);

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;
}

/* CONTACT PILLS */

.growth-connect{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.growth-pill{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;
}

.growth-pill:hover{

    transform:
    translateX(8px);

    background:
    rgba(255,255,255,.06);
}

.growth-pill-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.08);
}

.growth-pill-icon i{

    color:white;

    font-size:18px;
}

.growth-pill h4{

    color:white;

    font-size:18px;

    margin-bottom:4px;
}

.growth-pill span{

    color:
    rgba(255,255,255,.65);

    font-size:14px;
}

/* RIGHT */

.book-calendar{

    width:100%;
}

.calendar-shell{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border-radius:32px;

    padding:16px;

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.25);
}

/* TOP BAR */

.calendar-shell-top{

    display:flex;

    gap:8px;

    padding:10px 14px 16px;
}

.calendar-shell-top span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:
    rgba(255,255,255,.2);
}

/* CALENDLY */

.calendly-inline-widget{

    border-radius:22px;

    overflow:hidden;

    background:white;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .book-container{

        grid-template-columns:1fr;

        gap:50px;
    }
}

@media(max-width:768px){

    .book-section{

        padding:80px 24px;
    }

    .book-content h2{

        font-size:48px;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{

    position:relative;

    overflow:hidden;

    padding:100px 5%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}

/* Grid */

.about-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(15,23,42,.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(15,23,42,.03) 1px,
        transparent 1px
    );

    background-size:75px 75px;

    pointer-events:none;
}

/* Orb */

.about-orb{

    position:absolute;

    width:650px;

    height:650px;

    top:-250px;

    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.12),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}

/* Container */

.about-container{

    position:relative;

    z-index:2;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;
}

/* Image */

.about-image{

    position:relative;
}

.about-image img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:
    0 25px 70px rgba(15,23,42,.08);
}

/* Content */

.about-badge{

    display:inline-flex;

    padding:12px 24px;

    border-radius:999px;

    border:
    1px solid rgba(15,23,42,.08);

    background:white;

    color:#1E3A8A;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.about-content h2{

    color:#071330;

    font-size:
    clamp(40px,5vw,64px);

    line-height:1;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:24px;
}

.about-content p{

    color:#64748B;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;
}

/* Stats */

.about-stats{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

    margin-top:35px;
}

.stat{

    background:white;

    border:
    1px solid rgba(15,23,42,.06);

    border-radius:20px;

    padding:22px;

    transition:.35s ease;
}

.stat:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 40px rgba(15,23,42,.06);
}

.stat h3{

    color:#2563EB;

    font-size:32px;

    font-weight:900;

    margin-bottom:8px;
}

.stat span{

    color:#64748B;

    font-size:14px;
}

/* Responsive */

@media(max-width:992px){

    .about-container{

        grid-template-columns:1fr;

        gap:50px;
    }
}

@media(max-width:768px){

    .about-section{

        padding:80px 24px;
    }

    .about-content h2{

        font-size:42px;
    }

    .about-stats{

        grid-template-columns:1fr;
    }

}
/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section{

    position:relative;

    overflow:hidden;

    padding:110px 5%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
}

/* Grid */

.testimonials-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(
        rgba(15,23,42,.03) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(15,23,42,.03) 1px,
        transparent 1px
    );

    background-size:75px 75px;
}

/* Orb */

.testimonials-glow{

    position:absolute;

    width:650px;

    height:650px;

    right:-220px;

    top:-220px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.12),
        transparent 70%
    );

    filter:blur(70px);
}

/* Container */

.testimonials-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;
}

/* Header */

.testimonials-header{

    max-width:850px;

    text-align:center;

    margin:auto auto 60px;
}

.testimonials-badge{

    display:inline-flex;

    padding:12px 24px;

    border-radius:999px;

    border:
    1px solid rgba(15,23,42,.08);

    color:#1E3A8A;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.testimonials-header h2{

    color:#071330;

    font-size:
    clamp(40px,5vw,68px);

    line-height:1;

    font-weight:900;

    margin-bottom:18px;
}

.testimonials-header p{

    color:#64748B;

    line-height:1.8;
}

/* Slider */

.testimonial-slider{

    overflow:hidden;
}

.testimonial-track{

    display:flex;

    gap:24px;

    animation:
    testimonialScroll 35s linear infinite;
}

@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* Card */

.testimonial-card{

    min-width:420px;

    background:white;

    border-radius:30px;

    padding:32px;

    border:
    1px solid rgba(15,23,42,.06);

    box-shadow:
    0 20px 60px rgba(15,23,42,.05);

    transition:.45s ease;

    transform:
    perspective(1200px)
    rotateY(8deg);
}

.testimonial-card:hover{

    transform:
    perspective(1200px)
    rotateY(0deg)
    translateY(-10px);

    box-shadow:
    0 30px 80px rgba(15,23,42,.1);
}

/* Verified */

.verified{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;
}

.verified i{

    color:#22C55E;
}

/* Text */

.testimonial-card p{

    color:#071330;

    font-size:18px;

    line-height:1.9;

    margin-bottom:28px;
}

/* User */

.testimonial-user h4{

    color:#071330;

    font-size:18px;

    font-weight:800;

    margin-bottom:6px;
}

.testimonial-user span{

    color:#64748B;

    font-size:14px;
}

/* Pause on Hover */

.testimonial-slider:hover .testimonial-track{

    animation-play-state:paused;
}

/* Mobile */

@media(max-width:768px){

    .testimonial-card{

        min-width:320px;
    }

    .testimonials-section{

        padding:80px 24px;
    }
}
/* =========================================
   FAQ SECTION
========================================= */

.faq-section{

    position:relative;

    overflow:hidden;

    padding:110px 5%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 50%,
        #ffffff 100%
    );
}

/* =========================================
   GRID BACKGROUND
========================================= */

.faq-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(15,23,42,.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(15,23,42,.03) 1px,
        transparent 1px
    );

    background-size:75px 75px;

    pointer-events:none;
}

/* =========================================
   TOP ORB
========================================= */

.faq-section::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-250px;

    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.12),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}

/* =========================================
   BOTTOM ORB
========================================= */

.faq-glow{

    position:absolute;

    width:550px;

    height:550px;

    bottom:-220px;

    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

    filter:blur(70px);

    pointer-events:none;
}

/* =========================================
   CONTAINER
========================================= */

.faq-container{

    max-width:1100px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* =========================================
   HEADER
========================================= */

.faq-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 60px;
}

.faq-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.9);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(15,23,42,.08);

    color:#1E3A8A;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.faq-header h2{

    color:#071330;

    font-size:
    clamp(40px,5vw,68px);

    line-height:1;

    font-weight:900;

    margin-bottom:18px;

    letter-spacing:-2px;
}

.faq-header p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;
}

/* =========================================
   FAQ LIST
========================================= */

.faq-wrapper{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* =========================================
   ITEM
========================================= */

.faq-item{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.88)
    );

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(15,23,42,.06);

    border-radius:24px;

    overflow:hidden;

    transition:.4s ease;
}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 50px rgba(15,23,42,.06);
}

/* =========================================
   QUESTION
========================================= */

.faq-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    padding:28px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;
}

.faq-question span{

    color:#071330;

    font-size:18px;

    font-weight:700;

    line-height:1.5;
}

.faq-question i{

    width:42px;

    height:42px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(37,99,235,.08);

    color:#2563EB;

    font-size:15px;

    transition:.4s ease;

    flex-shrink:0;
}

/* =========================================
   ANSWER
========================================= */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;
}

.faq-answer p{

    padding:0 30px 30px;

    color:#64748B;

    font-size:15px;

    line-height:1.9;
}

/* =========================================
   ACTIVE
========================================= */

.faq-item.active{

    border-color:
    rgba(37,99,235,.15);

    box-shadow:
    0 20px 60px rgba(37,99,235,.06);
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:
    linear-gradient(
        135deg,
        #2563EB,
        #38BDF8
    );

    color:white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .faq-section{

        padding:80px 24px;
    }

    .faq-question{

        padding:22px;
    }

    .faq-question span{

        font-size:16px;
    }

    .faq-answer p{

        padding:
        0 22px 22px;
    }

    .faq-header h2{

        font-size:42px;
    }

}

/* ===================================
   LOGO
=================================== */

.logo{

    display:flex;
    align-items:center;

    text-decoration:none;

    flex-shrink:0;
}

.logo-img{
    height:44px;
    width:auto;
    object-fit:contain;
}

.logo:hover .logo-img{

    transform:scale(1.04);
}

/* ===================================
   MENU
=================================== */

.menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:48px;

    flex:1;
}

.menu a{

    position:relative;

    text-decoration:none;

    color:#334155;

    font-size:18px;

    font-weight:600;

    letter-spacing:-.2px;

    transition:.3s ease;
}

/* underline */

.menu a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:2px;

    border-radius:999px;

    background:#0F172A;

    transform:translateX(-50%);

    transition:
        width .35s cubic-bezier(.22,1,.36,1);
}

.menu a:hover{

    color:#0F172A;

    transform:translateY(-1px);
}

.menu a:hover::after{

    width:100%;
}

/* ===================================
   CTA
=================================== */

.nav-right{

    display:flex;
    align-items:center;
}

.nav-btn{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    height:54px;

    padding:0 28px;

    text-decoration:none;

    border-radius:999px;

    color:#fff;

    font-size:15px;

    font-weight:700;

    background:
        linear-gradient(
        135deg,
        #12BEE7,
        #6A35FF
    );

    border:1px solid rgba(255,255,255,.25);

    transition:.35s ease;
}

.nav-btn:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.12);
}

/* shine effect */

.nav-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80px;
    height:100%;

    background:
        linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s ease;
}

.nav-btn:hover::before{

    left:130%;
}

/* ===================================
   SCROLL
=================================== */

.nav.scrolled{

    height:82px;

    background:
        rgba(255,255,255,.9);

    box-shadow:
        0 12px 35px rgba(15,23,42,.06);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:1100px){

    .menu{

        gap:30px;
    }

    .nav-btn{

        min-width:180px;
    }
}

@media(max-width:992px){

    .menu{
        display:none;
    }

    .nav{

        height:82px;

        padding:0 18px;
    }

    .logo-img{

        height:58px;
    }

    .nav-btn{

        min-width:auto;

        padding:0 18px;

        font-size:13px;
    }
}



/* =========================================
   HERO SECTION
========================================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:0 6%;
    background:#000;
}

/* =========================================
   VIDEO
========================================= */

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* =========================================
   OVERLAY
========================================= */

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.65) 40%,
        rgba(0,0,0,.55) 100%
    );
}

/* =========================================
   CONTENT
========================================= */

.hero-content{
    position:relative;
    z-index:3;
    max-width:760px;
}

/* =========================================
   BADGE
========================================= */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    backdrop-filter:
    blur(20px);

    color:#fff;

    font-size:14px;
    font-weight:600;

    margin-bottom:30px;
}

.badge-dot{
    width:8px;
    height:8px;
    border-radius:50%;

    background:#60A5FA;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%,100%{
        opacity:.4;
    }

    50%{
        opacity:1;
    }
}

/* =========================================
   HEADING
========================================= */

.hero h1{
    font-size:
    clamp(58px,7vw,90px);

    line-height:.95;

    letter-spacing:-3px;

    font-weight:900;

    color:#fff;

    margin-bottom:24px;
}

/* =========================================
   TEXT
========================================= */

.hero p{
    font-size:20px;

    line-height:1.8;

    color:
    rgba(255,255,255,.85);

    margin-bottom:40px;

    max-width:650px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-actions{
    display:flex;
    gap:16px;
}

.hero-btn-primary{
    height:58px;

    padding:0 34px;

    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #2563EB,
        #1D4ED8
    );

    transition:.3s ease;
}

.hero-btn-primary:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 40px rgba(37,99,235,.35);
}

.hero-btn-secondary{
    height:58px;

    padding:0 34px;

    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    border:
    1px solid rgba(255,255,255,.15);

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);

    transition:.3s ease;
}

.hero-btn-secondary:hover{

    background:
    rgba(255,255,255,.15);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px){

    .hero{
        justify-content:center;
        text-align:center;
        padding:140px 24px 100px;
    }

    .hero-content{
        max-width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        max-width:100%;
    }

    .hero-actions{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        max-width:320px;
    }

    .hero-badge{
        justify-content:center;
    }
}

@media(max-width:640px){

    .hero h1{
        font-size:40px;
        line-height:1.05;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
        color:#fff;
    }

    .hero-badge{
        font-size:12px;
        padding:10px 16px;
        color:#fff;
    }
}






/* =========================================
TRUSTED CLIENTS
========================================= */

.clients{


position:relative;

padding:110px 0;

overflow:hidden;

background:#fff;


}

/* =========================================
HEADER
========================================= */

.clients-header{


max-width:850px;

margin:0 auto 70px;

padding:0 24px;

text-align:center;


}

.section-badge{


display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

border-radius:999px;

background:rgba(30,58,138,.05);

border:1px solid rgba(30,58,138,.08);

color:#1E3A8A;

font-size:12px;

font-weight:700;

letter-spacing:2px;

margin-bottom:24px;


}

.clients-header h2{


font-size:clamp(42px,4vw,62px);

line-height:1.05;

letter-spacing:-2px;

font-weight:900;

color:#071330;

margin-bottom:20px;


}

.clients-header p{


max-width:680px;

margin:auto;

color:#64748B;

font-size:18px;

line-height:1.8;


}

/* =========================================
SLIDER WRAPPER
========================================= */

.logo-slider{


position:relative;

max-width:1250px;

margin:0 auto;

overflow:hidden;


}

/* Left Fade */

.logo-slider::before{


content:"";

position:absolute;

top:0;
left:0;

width:140px;
height:100%;

z-index:5;

background:
linear-gradient(
    to right,
    #fff,
    transparent
);


}

/* Right Fade */

.logo-slider::after{


content:"";

position:absolute;

top:0;
right:0;

width:140px;
height:100%;

z-index:5;

background:
linear-gradient(
    to left,
    #fff,
    transparent
);


}

/* =========================================
TRACK
========================================= */

.logo-track{


display:flex;

align-items:center;

gap:50px;

width:max-content;

animation:
logoMarquee 24s linear infinite;


}

.logo-slider:hover .logo-track{


animation-play-state:paused;


}

@keyframes logoMarquee{


from{
    transform:translateX(0);
}

to{
    transform:translateX(-50%);
}


}

/* =========================================
LOGO CARD
========================================= */

.logo-item{


width:260px;

height:140px;

flex-shrink:0;

display:flex;

align-items:center;

justify-content:center;

border-radius:24px;

background:#fff;

border:1px solid rgba(15,23,42,.06);

transition:.35s ease;


}

.logo-item:hover{


transform:translateY(-4px);

box-shadow:
0 20px 40px rgba(15,23,42,.08);


}

.logo-item img{


width:auto;

max-width:220px;

max-height:90px;

object-fit:contain;

opacity:.8;

transition:.35s ease;


}

.logo-item:hover img{


opacity:1;

transform:scale(1.05);


}

/* =========================================
TABLET
========================================= */

@media(max-width:992px){


.logo-item{

    width:220px;

    height:120px;
}

.logo-item img{

    max-width:180px;

    max-height:70px;
}


}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){


.clients{

    padding:80px 0;
}

.clients-header{

    margin-bottom:50px;
}

.clients-header h2{

    font-size:36px;
}

.clients-header p{

    font-size:16px;
}

.logo-track{

    gap:30px;
}

.logo-item{

    width:180px;

    height:100px;
}

.logo-item img{

    max-width:140px;

    max-height:55px;
}

.logo-slider::before,
.logo-slider::after{

    width:60px;
}


}

/* =========================================
   WHY SYSCO SECTION
========================================= */

.why-sysco{

    width:100%;

    position:relative;

    overflow:hidden;

    background:#06122D;

    padding:110px 5%;

    margin:0;
}

/* Full Width Grid */

.why-sysco::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(
        rgba(255,255,255,.04) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,.04) 1px,
        transparent 1px
    );

    background-size:80px 80px;

    pointer-events:none;
}

.why-sysco::after{

    content:"";

    position:absolute;

    top:-300px;

    right:-250px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(41,182,246,.12),
        transparent 70%
    );

    pointer-events:none;
}

.why-container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1400px;

    margin:auto;
}

/* =========================================
   HEADER
========================================= */

.why-header{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;
}

.why-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:#8CB4FF;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:24px;
}

.why-header h2{

    color:#fff;

    font-size:clamp(42px,5vw,72px);

    line-height:1.05;

    margin-bottom:20px;

    font-weight:800;
}

.why-header p{

    color:rgba(255,255,255,.72);

    font-size:18px;

    line-height:1.9;
}

/* =========================================
   GRID
========================================= */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:24px;

    margin:0;
}

/* =========================================
   CARD
========================================= */

.flip-card{

    height:340px;

    perspective:1400px;
}

.flip-inner{

    position:relative;

    width:100%;

    height:100%;

    transition:.9s;

    transform-style:preserve-3d;
}

.flip-card:hover .flip-inner{

    transform:rotateY(180deg);
}

.flip-front,
.flip-back{

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:32px;

    backface-visibility:hidden;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.07),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;
}

/* Glow Sweep */

.flip-front::before,
.flip-back::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transition:.8s;
}

.flip-card:hover .flip-front::before,
.flip-card:hover .flip-back::before{

    left:100%;
}

/* =========================================
   FRONT
========================================= */

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;
}

.service-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #29B6F6,
        #5B4DFF
    );

    color:#fff;

    font-size:28px;

    transition:.35s;
}

.card-arrow{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;
}

.card-label{

    display:block;

    color:#8CB4FF;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:14px;
}

.flip-front h3{

    color:#fff;

    font-size:34px;

    line-height:1.1;

    margin-bottom:16px;

    font-weight:800;
}

.card-preview{

    color:rgba(255,255,255,.68);

    font-size:16px;

    line-height:1.8;
}

/* =========================================
   BACK
========================================= */

.flip-back{

    transform:rotateY(180deg);

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.flip-back h4{

    color:#fff;

    font-size:28px;

    line-height:1.2;

    margin:10px 0 18px;

    font-weight:800;
}

.flip-back p{

    color:rgba(255,255,255,.8);

    font-size:17px;

    line-height:1.9;
}

/* =========================================
   HOVER
========================================= */

.flip-card:hover .service-icon{

    transform:
    translateY(-5px)
    scale(1.05);
}

.flip-card:hover .card-arrow{

    transform:rotate(-45deg);

    background:
    linear-gradient(
        135deg,
        #29B6F6,
        #5B4DFF
    );
}

.flip-card:hover .flip-front,
.flip-card:hover .flip-back{

    border-color:
    rgba(41,182,246,.25);

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);
}

/* =========================================
   FLOATING EFFECT
========================================= */

@media(min-width:992px){

    @keyframes floatCard{

        0%{
            transform:translateY(0);
        }

        50%{
            transform:translateY(-10px);
        }

        100%{
            transform:translateY(0);
        }
    }

    .flip-card:nth-child(1){
        animation:floatCard 5s ease-in-out infinite;
    }

    .flip-card:nth-child(2){
        animation:floatCard 6s ease-in-out infinite;
    }

    .flip-card:nth-child(3){
        animation:floatCard 7s ease-in-out infinite;
    }

    .flip-card:nth-child(4){
        animation:floatCard 5.5s ease-in-out infinite;
    }

    .flip-card:nth-child(5){
        animation:floatCard 6.5s ease-in-out infinite;
    }

    .flip-card:nth-child(6){
        animation:floatCard 7.5s ease-in-out infinite;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .why-sysco{

        padding:90px 5%;
    }

    .why-grid{

        grid-template-columns:1fr;
    }

    .flip-card{

        height:300px;
    }

    .why-header h2{

        font-size:42px;
    }

    .flip-front h3{

        font-size:28px;
    }

    .flip-back h4{

        font-size:24px;
    }
}


/* Floating Contact Panel */
.contact-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0; /* No spacing */
}

/* Shared Item Styles */
.contact-item {
    position: relative;
    right: -145px;
    width: 200px;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 18px;
    text-decoration: none;
    color: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    overflow: hidden;
}

/* Rounded corners only on first & last */
.contact-item:first-child {
    border-radius: 12px 0 0 0;
}

.contact-item:last-child {
    border-radius: 0 0 0 12px;
}

.contact-item:hover {
    right: 0;
}

.contact-item i {
    min-width: 24px;
    font-size: 22px;
    text-align: center;
}

.contact-item span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
}

/* WhatsApp */
.whatsapp {
    background: linear-gradient(
        135deg,
        #25D366 0%,
        #1ebe5d 100%
    );
}

/* Phone */
.phone {
    background: linear-gradient(
        135deg,
        #18b8f2 0%,
        #2563eb 45%,
        #0f172a 100%
    );
}

/* Email */
.email {
    background: linear-gradient(
        135deg,
        #22c7ff 0%,
        #3b82f6 45%,
        #0f172a 100%
    );
}

/* Hover Effect */
.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.08);
    opacity: 0;
    transition: opacity .3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-panel {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
        gap: 10px;
    }

    .contact-item {
        right: 0;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50% !important;
    }

    .contact-item span {
        display: none;
    }

    .contact-item i {
        font-size: 24px;
        margin: 0;
    }
}
/* ==========================================
   SYSCO SCROLL TOGGLE BUTTON
========================================== */

.scroll-toggle {
    position: fixed;
    right: 18px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 9998;

    color: #fff;
    font-size: 22px;

    background: linear-gradient(
        135deg,
        #6FE7E8 0%,
        #14B7FF 35%,
        #3A00FF 100%
    );

    box-shadow:
        0 10px 30px rgba(20,183,255,.20),
        0 0 20px rgba(58,0,255,.10);

    /* Hidden initially */
    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .3s ease,
        box-shadow .3s ease;

    animation: syscoFloat 5s ease-in-out infinite;
}

/* Show after hero */
.scroll-toggle.active {
    opacity: 1;
    visibility: visible;
}

/* Glow */
.scroll-toggle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: inherit;
    filter: blur(16px);
    opacity: .35;
    z-index: -1;
}

/* Shine */
.scroll-toggle::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -50%;
    width: 55%;
    height: 300%;
    background: rgba(255,255,255,.18);
    transform: rotate(25deg);
    transition: .8s;
}

.scroll-toggle:hover::after {
    left: 130%;
}

/* Hover */
.scroll-toggle:hover {
    transform: translateY(-4px) scale(1.08);

    box-shadow:
        0 15px 40px rgba(20,183,255,.30),
        0 0 30px rgba(58,0,255,.20);
}

.scroll-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform .3s ease;
}

.scroll-toggle:hover i {
    transform: scale(1.15);
}

/* Floating effect only */
@keyframes syscoFloat {
    0% {
        translate: 0 0;
    }

    50% {
        translate: 0 -6px;
    }

    100% {
        translate: 0 0;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .scroll-toggle {
        width: 56px;
        height: 56px;
        font-size: 18px;
        right: 15px;
        bottom: 20px;
    }

}

/* ==========================================
   MOUSE GLOW EFFECT
========================================== */

.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;

    background: radial-gradient(
        circle,
        rgba(20, 183, 255, 0.12) 0%,
        rgba(58, 0, 255, 0.08) 40%,
        transparent 75%
    );

    filter: blur(40px);

    transform: translate(-50%, -50%);

    transition:
        left .15s linear,
        top .15s linear,
        opacity .3s ease;

    opacity: .7;
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section{

    position:relative;

    overflow:hidden;

    padding:100px 5%;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 45%,
        #ffffff 100%
    );
}

/* =========================================
   GRID BACKGROUND
========================================= */

.industries-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(15,23,42,.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(15,23,42,.03) 1px,
        transparent 1px
    );

    background-size:
    75px 75px;

    pointer-events:none;
}

/* =========================================
   TOP RIGHT ORB
========================================= */

.industries-section::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-320px;

    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.14),
        transparent 70%
    );

    filter:blur(70px);

    pointer-events:none;
}

/* =========================================
   SECOND ORB
========================================= */

.industries-glow{

    position:absolute;

    width:550px;

    height:550px;

    bottom:-220px;

    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

    filter:blur(60px);

    pointer-events:none;
}

/* =========================================
   CONTAINER
========================================= */

.industries-container{

    position:relative;

    z-index:2;

    max-width:1300px;

    margin:auto;
}

/* =========================================
   HEADER
========================================= */

.industries-header{

    max-width:820px;

    margin:auto auto 55px;

    text-align:center;
}

.industries-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.9);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(15,23,42,.08);

    color:#1E3A8A;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.industries-header h2{

    color:#071330;

    font-size:
    clamp(38px,4vw,62px);

    line-height:1;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:18px;
}

.industries-header p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;
}

/* =========================================
   GRID
========================================= */

.industries-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:22px;
}

/* =========================================
   CARD
========================================= */

.industry-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.96),
        rgba(255,255,255,.88)
    );

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(15,23,42,.06);

    border-radius:28px;

    padding:30px;

    transition:.4s ease;
}

/* TOP ACCENT */

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:
    linear-gradient(
        90deg,
        #2563EB,
        #38BDF8
    );

    opacity:0;

    transition:.35s;
}

.industry-card:hover::before{

    opacity:1;
}

/* ICON */

.industry-card i{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:
    rgba(37,99,235,.08);

    color:#1E3A8A;

    font-size:24px;

    margin-bottom:20px;

    transition:.4s ease;
}

/* TITLE */

.industry-card h3{

    color:#071330;

    font-size:22px;

    font-weight:800;

    margin-bottom:12px;
}

/* TEXT */

.industry-card p{

    color:#64748B;

    font-size:15px;

    line-height:1.75;
}

/* HOVER */

.industry-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);

    border-color:
    rgba(37,99,235,.15);
}

.industry-card:hover i{

    transform:
    scale(1.08);

    background:
    linear-gradient(
        135deg,
        #2563EB,
        #38BDF8
    );

    color:white;
}

/* =========================================
   FLOATING EFFECT
========================================= */

@media(min-width:992px){

    @keyframes floatIndustry{

        0%{
            transform:translateY(0);
        }

        50%{
            transform:translateY(-6px);
        }

        100%{
            transform:translateY(0);
        }
    }

    .industry-card:nth-child(1){

        animation:
        floatIndustry 6s ease-in-out infinite;
    }

    .industry-card:nth-child(2){

        animation:
        floatIndustry 7s ease-in-out infinite;
    }

    .industry-card:nth-child(3){

        animation:
        floatIndustry 8s ease-in-out infinite;
    }

    .industry-card:nth-child(4){

        animation:
        floatIndustry 6.5s ease-in-out infinite;
    }

    .industry-card:nth-child(5){

        animation:
        floatIndustry 7.5s ease-in-out infinite;
    }

    .industry-card:nth-child(6){

        animation:
        floatIndustry 8.5s ease-in-out infinite;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .industries-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .industries-section{

        padding:80px 24px;
    }

    .industries-grid{

        grid-template-columns:1fr;
    }

    .industries-header h2{

        font-size:42px;
    }

}
/* =========================================
   PROCESS SECTION
========================================= */

.process-section{

    position:relative;

    overflow:hidden;

    padding:120px 5%;

    background:
    linear-gradient(
        180deg,
        #06122D 0%,
        #081833 100%
    );
}

/* =========================================
   GRID BACKGROUND
========================================= */

.process-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(
        rgba(255,255,255,.04) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.04) 1px,
        transparent 1px
    );

    background-size:80px 80px;

    pointer-events:none;
}

/* =========================================
   TOP ORB
========================================= */

.process-section::after{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    top:-350px;

    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.12),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}

/* =========================================
   SECOND ORB
========================================= */

.process-glow{

    position:absolute;

    width:650px;

    height:650px;

    bottom:-300px;

    left:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}

/* =========================================
   CONTAINER
========================================= */

.process-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;
}

/* =========================================
   HEADER
========================================= */

.process-header{

    max-width:850px;

    margin:auto auto 80px;

    text-align:center;
}

.process-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    color:#8CB4FF;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.process-header h2{

    color:white;

    font-size:
    clamp(42px,5vw,72px);

    line-height:1;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:18px;
}

.process-header p{

    color:
    rgba(255,255,255,.72);

    font-size:17px;

    line-height:1.9;
}

/* =========================================
   TIMELINE
========================================= */

.process-timeline{

    position:relative;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;
}

/* =========================================
   CONNECTION LINE
========================================= */

.timeline-line{

    position:absolute;

    top:40px;

    left:12%;

    right:12%;

    height:2px;

    background:
    linear-gradient(
        90deg,
        rgba(56,189,248,.4),
        rgba(56,189,248,.9),
        rgba(56,189,248,.4)
    );
}

/* Animated Glow */

.timeline-line::after{

    content:"";

    position:absolute;

    width:80px;

    height:4px;

    top:-1px;

    left:0;

    border-radius:50px;

    background:#38BDF8;

    box-shadow:
    0 0 20px #38BDF8,
    0 0 40px #38BDF8;

    animation:
    travelLine 8s linear infinite;
}

@keyframes travelLine{

    from{
        left:0;
    }

    to{
        left:calc(100% - 80px);
    }
}

/* =========================================
   STEP
========================================= */

.process-step{

    position:relative;

    z-index:2;
}

/* =========================================
   DOT
========================================= */

.step-dot{

    width:20px;

    height:20px;

    border-radius:50%;

    background:#38BDF8;

    margin:auto;

    margin-bottom:35px;

    position:relative;

    box-shadow:
    0 0 20px rgba(56,189,248,.8);
}

.step-dot::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:
    1px solid rgba(56,189,248,.4);

    animation:
    pulseDot 2s infinite;
}

@keyframes pulseDot{

    0%{

        transform:scale(1);

        opacity:1;
    }

    100%{

        transform:scale(1.7);

        opacity:0;
    }
}

/* =========================================
   CARD
========================================= */

.step-card{

    height:100%;

    padding:28px;

    border-radius:26px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    text-align:center;
}

.step-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(56,189,248,.2);

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);
}

/* =========================================
   TEXT
========================================= */

.step-card span{

    display:block;

    color:#8CB4FF;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:14px;
}

.step-card h3{

    color:white;

    font-size:28px;

    font-weight:800;

    margin-bottom:14px;
}

.step-card p{

    color:
    rgba(255,255,255,.75);

    font-size:15px;

    line-height:1.8;
}

/* =========================================
   FLOATING EFFECT
========================================= */

@media(min-width:992px){

    @keyframes floatProcess{

        0%{
            transform:translateY(0);
        }

        50%{
            transform:translateY(-8px);
        }

        100%{
            transform:translateY(0);
        }
    }

    .process-step:nth-child(2){

        animation:
        floatProcess 6s ease-in-out infinite;
    }

    .process-step:nth-child(3){

        animation:
        floatProcess 7s ease-in-out infinite;
    }

    .process-step:nth-child(4){

        animation:
        floatProcess 8s ease-in-out infinite;
    }

    .process-step:nth-child(5){

        animation:
        floatProcess 9s ease-in-out infinite;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .process-timeline{

        grid-template-columns:
        repeat(2,1fr);
    }

    .timeline-line{

        display:none;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .process-section{

        padding:90px 24px;
    }

    .process-timeline{

        grid-template-columns:1fr;
    }

    .step-dot{

        margin-bottom:18px;
    }

    .process-header h2{

        font-size:42px;
    }
}
/* =========================================
   RESULTS & IMPACT SECTION
========================================= */

.impact-section{

    position:relative;

    padding:90px 5%;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}

/* Grid */

.impact-section::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(
        rgba(15,23,42,.04) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(15,23,42,.04) 1px,
        transparent 1px
    );

    background-size:70px 70px;

    pointer-events:none;
}

/* Top Orb */

.impact-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-200px;

    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(56,189,248,.12),
        transparent 70%
    );

    filter:blur(60px);

    pointer-events:none;
}

/* Bottom Orb */

.impact-glow{

    position:absolute;

    width:400px;

    height:400px;

    left:-150px;

    bottom:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

    filter:blur(50px);

    pointer-events:none;
}

/* =========================================
   CONTAINER
========================================= */

.impact-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* =========================================
   HEADER
========================================= */

.impact-header{

    max-width:800px;

    margin:auto auto 55px;

    text-align:center;
}

.impact-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:white;

    border:
    1px solid rgba(15,23,42,.08);

    color:#1E3A8A;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;
}

.impact-header h2{

    color:#071330;

    font-size:
    clamp(40px,4vw,60px);

    line-height:1;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:16px;
}

.impact-header p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;
}

/* =========================================
   GRID
========================================= */

.impact-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:18px;
}

/* =========================================
   CARDS
========================================= */

.impact-card{

    position:relative;

    overflow:hidden;

    background:white;

    border-radius:24px;

    padding:26px;

    border:
    1px solid rgba(15,23,42,.06);

    transition:.35s ease;
}

.impact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:
    linear-gradient(
        90deg,
        #2563EB,
        #38BDF8
    );

    opacity:0;

    transition:.35s;
}

.impact-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 20px 50px rgba(15,23,42,.08);
}

.impact-card:hover::before{

    opacity:1;
}

/* =========================================
   LARGE CARD
========================================= */

.impact-large{

    grid-column:span 2;

    min-height:280px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

/* =========================================
   WIDE CARD
========================================= */

.impact-wide{

    grid-column:span 2;
}

/* =========================================
   TEXT
========================================= */

.impact-card span{

    display:block;

    color:#2563EB;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:14px;
}

.impact-card h3{

    color:#071330;

    font-size:
    clamp(42px,5vw,72px);

    line-height:1;

    font-weight:900;

    margin-bottom:10px;
}

.impact-large h3{

    font-size:
    clamp(70px,7vw,110px);
}

.impact-card p{

    color:#64748B;

    font-size:15px;

    line-height:1.7;
}

/* =========================================
   FLOAT EFFECT
========================================= */

@media(min-width:992px){

    @keyframes floatImpact{

        0%{
            transform:translateY(0);
        }

        50%{
            transform:translateY(-6px);
        }

        100%{
            transform:translateY(0);
        }
    }

    .impact-card:nth-child(1){

        animation:
        floatImpact 6s ease-in-out infinite;
    }

    .impact-card:nth-child(2){

        animation:
        floatImpact 7s ease-in-out infinite;
    }

    .impact-card:nth-child(3){

        animation:
        floatImpact 8s ease-in-out infinite;
    }

    .impact-card:nth-child(4){

        animation:
        floatImpact 6.5s ease-in-out infinite;
    }

    .impact-card:nth-child(5){

        animation:
        floatImpact 7.5s ease-in-out infinite;
    }

    .impact-card:nth-child(6){

        animation:
        floatImpact 8.5s ease-in-out infinite;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

    .impact-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .impact-large,
    .impact-wide{

        grid-column:span 2;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .impact-section{

        padding:80px 24px;
    }

    .impact-grid{

        grid-template-columns:1fr;
    }

    .impact-large,
    .impact-wide{

        grid-column:span 1;
    }

    .impact-header h2{

        font-size:42px;
    }

}



/* ====================================
   MOBILE HEADER
==================================== */

.mobile-header{
    display:none;
}

@media(max-width:1024px){

.mobile-header{

    display:block;

    position:fixed;

    top:20px;

    left:20px;

    right:20px;

    z-index:9999;
}

/* NAVBAR */

.mobile-nav{

    height:72px;

    padding:0 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.95);

    backdrop-filter:
    blur(24px);

    border:
    1px solid rgba(255,255,255,.8);

    box-shadow:
    0 15px 40px rgba(15,23,42,.08);

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* ====================================
   LOGO
==================================== */

.mobile-logo{

    display:flex;

    align-items:center;

    text-decoration:none;
}

.mobile-logo img{

    width:130px;

    height:auto;

    max-height:40px;

    object-fit:contain;

    display:block;
}

/* ====================================
   HAMBURGER
==================================== */

.menu-toggle{

    width:44px;

    height:44px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    border:none;

    background:none;

    cursor:pointer;

    padding:0;
}

.menu-toggle span{

    width:28px;

    height:2px;

    border-radius:20px;

    background:#071330;

    transition:.3s ease;
}

/* ACTIVE */

.menu-toggle.active span:nth-child(1){

    transform:
    translateY(8px)
    rotate(45deg);
}

.menu-toggle.active span:nth-child(2){

    opacity:0;
}

.menu-toggle.active span:nth-child(3){

    transform:
    translateY(-8px)
    rotate(-45deg);
}

}
/* ==========================================
SYSCO PREMIUM FOOTER
========================================== */

.footer{
    width:100%;
    background:#fff;
    border-top:1px solid rgba(15,23,42,.08);
    margin-top:120px;
}

/* ==========================================
MAIN GRID
========================================== */

.footer-main{
    max-width:1400px;
    margin:0 auto;
    padding:80px 40px 60px;

    display:grid;
    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap:70px;
    align-items:flex-start;
}

/* ==========================================
BRAND
========================================== */

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
}

.footer-logo{
    height:55px;
    width:auto;
    margin-bottom:20px;
}

.footer-brand p{
    margin:0;
    max-width:380px;
    line-height:1.9;
}
.footer-logo:hover{
    transform:scale(1.05);
}



.footer-brand strong{
    color:#0F172A;
    font-weight:700;
}

/* ==========================================
COLUMNS
========================================== */

.footer-column h4{
    margin:0 0 24px;
    color:#0F172A;
    font-size:18px;
    font-weight:800;
    position:relative;
}

.footer-column h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:35px;
    height:3px;
    border-radius:50px;

    background:linear-gradient(
        90deg,
        #1E3A8A,
        #2563EB
    );
}

.footer-column a{
    display:block;
    text-decoration:none;
    color:#64748B;
    margin-bottom:15px;
    transition:.3s ease;
}

.footer-column a:hover{
    color:#2563EB;
    transform:translateX(6px);
}

/* ==========================================
CONTACT
========================================== */

.footer-contact a{
    word-break:break-word;
}

/* ==========================================
BOTTOM
========================================== */

.footer-bottom{
    border-top:1px solid rgba(15,23,42,.08);
    padding:25px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:#64748B;
}

.footer-bottom strong{
    color:#0F172A;
}

.footer-separator{
    margin:0 10px;
    color:#CBD5E1;
}

.footer-credit{
    color:#1E3A8A;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.footer-credit:hover{
    color:#2563EB;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .footer-main{
        grid-template-columns:
            repeat(2,1fr);
        gap:50px;
    }

    .footer-brand{
        grid-column:1/-1;
        text-align:center;
        align-items:center;
    }

    .footer-brand p{
        max-width:600px;
    }
}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .footer-main{
        grid-template-columns:1fr;
        padding:60px 24px;
        gap:40px;
    }

    .footer-brand,
    .footer-column{
        text-align:center;
    }

    .footer-column h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-column a:hover{
        transform:none;
    }

    .footer-logo{
        height:60px;
    }

    .footer-brand p{
        max-width:100%;
    }
}
/* ==========================================
   PRELOADER
========================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        opacity .6s ease,
        visibility .6s ease;
}

#preloader.hidden {.footer-main{
    max-width:1300px;
    margin:auto;
    padding:80px 40px;

    display:grid;
    grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

    gap:60px;

    align-items:start;
}

/* Brand */

.footer-brand{
    text-align:left;
}

.footer-logo{
    height:70px;
    width:auto;
    margin-bottom:20px;

    transition:.4s ease;
}

.footer-logo:hover{
    transform:
    translateY(-5px)
    scale(1.05);
}

.footer-brand p{
    color:#64748B;
    line-height:1.9;
    max-width:420px;
}

/* Columns */

.footer-column h4{
    margin-bottom:20px;
    color:#0F172A;
    font-size:18px;
    font-weight:700;
}

.footer-column a{
    display:block;
    margin-bottom:14px;
    text-decoration:none;
    color:#64748B;

    transition:.3s ease;
}

.footer-column a:hover{
    color:#2563EB;
    transform:translateX(6px);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(0,0,0,.08);

    text-align:center;

    padding:25px;

    margin-top:50px;

    color:#94A3B8;
}
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    width: 180px;

    animation:
        logoReveal 1.5s ease forwards;
}

.loader-line {
    width: 180px;
    height: 4px;

    margin-top: 20px;

    border-radius: 50px;

    background: rgba(0,0,0,.08);

    overflow: hidden;

    position: relative;
}

.loader-line::before {
    content: '';

    position: absolute;
    left: -100%;
    top: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #6FE7E8,
        #14B7FF,
        #3A00FF
    );

    animation: loadingBar 1.4s ease forwards;
}

@keyframes loadingBar {
    to {
        left: 0;
    }
}

@keyframes logoReveal {

    0% {
        opacity: 0;
        transform:
            translateY(20px)
            scale(.9);
    }

    100% {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* ====================================
MOBILE HEADER
==================================== */

.mobile-header{


display:none;


}

@media(max-width:1024px){

.mobile-header{


display:block;

position:fixed;

top:20px;

left:20px;

right:20px;

z-index:9999;


}

.mobile-nav{


height:78px;

padding:0 24px;

border-radius:999px;

display:flex;

align-items:center;

justify-content:space-between;

background:
rgba(255,255,255,.92);

backdrop-filter:
blur(24px);

border:
1px solid rgba(255,255,255,.8);

box-shadow:
0 20px 50px rgba(15,23,42,.08);


}

/* Logo */

.mobile-logo img{


width:150px;

height:auto;

display:block;


}

/* Hamburger */

.menu-toggle{


width:46px;

height:46px;

border:none;

background:none;

cursor:pointer;

display:flex;

flex-direction:column;

justify-content:center;

gap:6px;


}

.menu-toggle span{


width:30px;

height:2px;

background:#071330;

border-radius:10px;

transition:.35s ease;


}

/* Active */

.menu-toggle.active span:nth-child(1){


transform:
translateY(8px)
rotate(45deg);


}

.menu-toggle.active span:nth-child(2){


opacity:0;


}

.menu-toggle.active span:nth-child(3){


transform:
translateY(-8px)
rotate(-45deg);


}

/* ====================================
FULLSCREEN MENU
==================================== */

.mobile-menu{


position:fixed;

inset:0;

z-index:9998;

background:
rgba(7,19,48,.97);

backdrop-filter:
blur(20px);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.4s ease;


}

.mobile-menu.active{


opacity:1;

visibility:visible;


}

.mobile-menu-inner{


width:100%;

padding:40px;

display:flex;

flex-direction:column;

align-items:center;

gap:28px;


}

.mobile-menu-inner a{


text-decoration:none;

color:white;

font-size:42px;

font-weight:800;

letter-spacing:-1px;

transition:.3s ease;


}

.mobile-menu-inner a:hover{


color:#38BDF8;


}

/* CTA */

.mobile-cta{


margin-top:25px;

min-width:280px;

height:68px;

border-radius:999px;

display:flex !important;

align-items:center;

justify-content:center;

color:white !important;

background:
linear-gradient(
    135deg,
    #0EA5E9,
    #4F46E5
);

font-size:20px !important;

font-weight:700;


}
}

