
.hero-section{
    position:relative;
    height:100vh;
    min-height:600px;
    overflow:hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item{
    height:100%;
}

.hero-section .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.1);
    animation:zoomHero 8s linear infinite;
}

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.15);
    }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.65)
    );
    z-index:2;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:3;
    text-align:center;
    width:90%;
    max-width:1000px;
    color:white;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:90px;
    color:white;
    margin-bottom:20px;
    font-weight:800;
    text-shadow:0 5px 25px rgba(0,0,0,.4);
}

.hero-slogan{
    font-size:28px;
    line-height:1.7;
    margin-bottom:40px;
    color:#f1f5f9;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-outline-light-custom{
    border:2px solid rgba(255,255,255,.5);
    color:white;
    padding:14px 30px;
    border-radius:50px;
    transition:.4s;
}

.btn-outline-light-custom:hover{
    background:white;
    color:#081120;
}

.hero-scroll{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
}

.hero-scroll span{
    display:block;
    width:30px;
    height:50px;
    border:2px solid white;
    border-radius:30px;
    position:relative;
}

.hero-scroll span::before{
    content:'';
    position:absolute;
    width:6px;
    height:10px;
    background:white;
    border-radius:10px;
    left:50%;
    transform:translateX(-50%);
    top:8px;
    animation:scrollAnim 1.5s infinite;
}

@keyframes scrollAnim{

    0%{
        opacity:1;
        top:8px;
    }

    100%{
        opacity:0;
        top:28px;
    }
}

/* Responsive */

@media(max-width:991px){

    .hero-content h1{
        font-size:55px;
    }

    .hero-slogan{
        font-size:22px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-slogan{
        font-size:18px;
    }

    .hero-section{
        min-height:700px;
    }
}

.welcome-section{
    background:#081120;
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.welcome-section::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(197,157,95,.08);
    border-radius:50%;
    top:-300px;
    right:-200px;
}

.welcome-image-wrapper{
    position:relative;
}

.welcome-image{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:
    0 30px 60px rgba(0,0,0,.35);
}

.welcome-shape{
    position:absolute;
    width:250px;
    height:250px;
    border:3px solid rgba(197,157,95,.4);
    border-radius:30px;
    top:-25px;
    left:-25px;
    z-index:0;
}

.welcome-content{
    color:white;
}

.section-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#ff6b35;
    margin-bottom:25px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.welcome-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:30px;
    color:white;
}

.welcome-content p{
    color:#cbd5e1;
    line-height:2;
    margin-bottom:20px;
    font-size:16px;
}

.philosophy-box{
    margin-top:20px;
    padding:25px;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
}

.philosophy-box span{
    color:#ff6b35;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.philosophy-box h4{
    color:white;
    font-size:20px;
    margin:10px 0;
}

.founder-quote{
    margin-top:40px;
    position:relative;
    padding-left:30px;
    border-left:4px solid #ff6b35;
}

.founder-quote i{
    color:#ff6b35;
    font-size:30px;
    margin-bottom:15px;
}

.founder-quote p{
    font-size:15px;
    color:white;
    font-style:italic;
}

.founder-quote h6{
    margin-top:20px;
    color:#ff6b35;
    font-size:18px;
}

.founder-quote span{
    color:#94a3b8;
}

.floating-card{
    position:absolute;
    background:white;
    border-radius:20px;
    padding:18px 25px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    z-index:10;
}

.floating-card i{
    width:55px;
    height:55px;
    border-radius:50%;
   background:linear-gradient(
135deg,
var(--primary),
var(--accent)
);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}

.floating-card strong{
    display:block;
    color:#081120;
}

.floating-card span{
    color:#64748b;
    font-size:14px;
}

.card-1{
    left:-40px;
    bottom:120px;
}

.card-2{
    right:-30px;
    bottom:50px;
}

@media(max-width:991px){

    .welcome-content{
        margin-top:40px;
    }

    .welcome-content h2{
        font-size:38px;
    }

    .welcome-image{
        height:500px;
    }

    .card-1{
        left:10px;
    }

    .card-2{
        right:10px;
    }

}

.stats-section{
    position:relative;
    padding:120px 0;
    background:url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?q=80&w=2200&auto=format&fit=crop') center center;
    background-size:cover;
    overflow:hidden;
}

.stats-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(8,17,32,.90),
        rgba(8,17,32,.90)
    );
}

.stats-section .container{
    position:relative;
    z-index:2;
}

.section-heading{
    margin-bottom:70px;
}

.section-heading h2{
    color:white;
    font-size:55px;
    margin-top:20px;
}

.section-heading p{
    color:#cbd5e1;
    max-width:700px;
    margin:auto;
}

.stat-card{
    height:100%;
    text-align:center;
    padding:40px 25px;
    border-radius:25px;
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    transition:.4s;
}

.stat-card:hover{
     transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(249,115,22,.15);
    border-color:#ff6b35;
}

.stat-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #ff6b35,
        #e5c58f
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-icon i{
    color:white;
    font-size:32px;
}

.stat-card h3{
    font-size:55px;
    color:#fff;
    margin-bottom:10px;
    font-weight:800;
}

.stat-card span{
    color:#dbe3ec;
    font-size:15px;
    display:block;
    line-height:1.6;
}

@media(max-width:991px){

    .section-heading h2{
        font-size:38px;
    }

    .stat-card h3{
        font-size:40px;
    }

}

.formations-section{
    padding:120px 0;
    background:#f8fafc;
}

.formations-section .section-title{
    max-width:800px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.formations-section .section-title span{
    color:#ff6b35;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.formations-section .section-title h2{
    margin-top:15px;
    font-size:52px;
    color:#081120;
}

.formations-section .section-title p{
    margin-top:20px;
    color:#64748B;
}

.formation-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.formation-card:hover{
     transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(249,115,22,.15);
}

.formation-image{
    position:relative;
    overflow:hidden;
    height:280px;
}

.formation-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.formation-card:hover img{
    transform:scale(1.12);
}

.formation-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(8,17,32,.2),
        rgba(8,17,32,.85)
    );

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.4s;
}

.formation-card:hover .formation-overlay{
    opacity:1;
}

.formation-btn{
   background:linear-gradient(
135deg,
var(--primary),
var(--accent)
);
    color:white;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
}

.formation-btn:hover{
    color:white;
}

.formation-content{
    padding:30px;
}

.formation-content h4{
    color:#081120;
    margin-bottom:15px;
}

.formation-content p{
    color:#64748B;
    line-height:1.8;
}

.formations-footer{
    text-align:center;
    margin-top:60px;
}

.btn-formations{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:18px 40px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:white;
    border-radius:60px;

    font-weight:600;
    font-size:16px;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(249,115,22,.25);
}

.btn-formations:hover{

    color:white;

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 45px rgba(249,115,22,.35);
}

.btn-formations i{
    transition:.4s;
}

.btn-formations:hover i{
    transform:translateX(5px);
}

.cta-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;

    background:url('https://images.unsplash.com/photo-1559339352-11d035aa65de?q=80&w=2000&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.cta-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(8,17,32,.92),
        rgba(220,38,38,.82)
    );
}

.cta-content{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;
    text-align:center;
}

.cta-badge{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    color:#fff;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:25px;
}

.cta-content h2{

    color:white;

    font-size:65px;

    line-height:1.15;

    margin-bottom:25px;
}

.cta-content p{

    color:#e2e8f0;

    font-size:18px;

    line-height:2;

    max-width:750px;

    margin:auto;

    margin-bottom:40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.cta-btn-primary{

    background:linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    padding:18px 35px;

    border-radius:60px;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(255,107,53,.35);
}

.cta-btn-primary:hover{

    color:white;

    transform:translateY(-5px);
}

.cta-btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:white;

    padding:18px 35px;

    border-radius:60px;

    font-weight:600;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.cta-btn-secondary:hover{

    background:white;

    color:#081120;
}

.cta-btn-primary i,
.cta-btn-secondary i{

    margin-right:10px;
}

@media(max-width:991px){

    .cta-content h2{

        font-size:42px;
    }

    .cta-content p{

        font-size:16px;
    }
}

@media(max-width:576px){

    .cta-content h2{

        font-size:34px;
    }

    .cta-section{

        padding:60px 0;
    }
}

.blog-section{
    padding:120px 0;
    background:#ffffff;
}

.featured-post{
    position:relative;
    height:650px;
    overflow:hidden;
    border-radius:30px;
}

.featured-post img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.featured-post:hover img{
    transform:scale(1.08);
}

.featured-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:50px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.category-badge{
    display:inline-block;
    width:fit-content;

    background:linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:20px;
}

.featured-overlay h3{
    color:white;
    font-size:40px;
    margin-bottom:15px;
}

.featured-overlay p{
    color:#e2e8f0;
    margin-bottom:20px;
}

.post-meta{
    display:flex;
    gap:25px;
    color:#cbd5e1;
    margin-bottom:25px;
}

.blog-btn{
    width:fit-content;

    background:white;

    color:#081120;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;
}

.blog-side{
    display:flex;
    flex-direction:column;
    gap:25px;
    height:100%;
}

.side-post{
    display:flex;
    gap:20px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.side-post:hover{
    transform:translateY(-5px);
}

.side-image{
    width:180px;
    min-width:180px;
}

.side-image img{
    width:100%;
    height:190px;
    object-fit:cover;
}

.side-content{
    padding:20px;
}

.side-category{
    color:#ff6b35;
    font-weight:600;
    font-size:13px;
    text-transform:uppercase;
}

.side-content h4{
    margin:10px 0;
    font-size:20px;
}

.side-meta{
    color:#94a3b8;
    margin-bottom:10px;
}

.side-content a{
    color:#dc2626;
    font-weight:600;
}

.blog-footer{
    text-align:center;
    margin-top:60px;
}

.btn-blog{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:18px 40px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    font-weight:600;
}

.btn-blog:hover{
    color:white;
}

.testimonials-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #081120,
        #101c33
    );

    position:relative;
    overflow:hidden;
}

.testimonials-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(255,107,53,.08);

    border-radius:50%;

    top:-200px;
    right:-100px;
}

.testimonials-section .section-title h2{
    color:white;
}

.testimonials-section .section-title p{
    color:#cbd5e1;
}

.testimonial-card{

    max-width:850px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:30px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);
}

.quote-icon{

    font-size:60px;

    color:#ff6b35;

    margin-bottom:20px;
}

.testimonial-photo{

    width:120px;
    height:120px;

    margin:auto;
    margin-bottom:25px;
}

.testimonial-photo img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #ff6b35;
}

.stars{

    color:#ff6b35;

    margin-bottom:25px;

    font-size:18px;
}

.testimonial-text{

    color:white;

    font-size:22px;

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;
}

.testimonial-card h4{

    color:white;

    margin-bottom:8px;
}

.testimonial-card span{

    color:#ff6b35;

    font-weight:600;
}

.carousel-control-prev,
.carousel-control-next{

    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:#ff6b35;

    border-radius:50%;

    width:50px;
    height:50px;
}

@media(max-width:768px){

    .testimonial-card{

        padding:35px 25px;
    }

    .testimonial-text{

        font-size:18px;
    }
}

.partners-section{
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
}

.partners-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-top:60px;
}

.partners-track{
    display:flex;
    width:max-content;
    animation:scrollPartners 30s linear infinite;
}

.partner-item{

    width:260px;
    min-width:260px;

    height:140px;

    background:white;

    border-radius:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 15px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.partner-item:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(255,107,53,.15);
}

.partner-item img{

    max-width:140px;
    max-height:70px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.4s;
}

.partner-item:hover img{

    filter:none;

    opacity:1;
}

@keyframes scrollPartners{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}