/* =========================
   GLOBAL
========================= */

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Montserrat',sans-serif;
}


/* =========================
   NAVBAR BRAND
========================= */

.navbar{
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.navbar-brand img{
    height:55px;
    width:auto;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-title{
    font-size:22px;
    font-weight:800;
    color:#1F2937;
}

.brand-subtitle{
    font-size:12px;
    color:#6B7280;
    letter-spacing:.5px;
}

.navbar-brand:hover img{
    transform:scale(1.05);
    transition:.3s ease;
}

/* =========================
   NAVBAR MENU
========================= */

.navbar-nav{
    gap:10px;
}

.nav-link{
    position:relative;
    font-weight:600;
    color:#374151 !important;
    padding:10px 18px !important;
    border-radius:12px;
    transition:.3s ease;
}

.nav-link:hover{
    color:#D71920 !important;
    background:
    rgba(215,25,32,.08);
}


.nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:3px;
    background:#D71920;
    border-radius:10px;
    transition:.3s ease;
    transform:
    translateX(-50%);
}

.nav-link:hover::after{
    width:70%;
}




/* =========================
   HERO
========================= */

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;

}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:10;
    color:white;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.hero-title{
    font-size:36px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    max-width:600px;
}

.hero-subtitle{
    font-size:20px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary-custom{
    background:#D71920;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#B51218;
    color:white;
}

.btn-outline-custom{
    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;

}

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

/* =========================
   STATISTICS PREMIUM
========================= */

.statistics-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.stat-card{
    background:
    linear-gradient(
    135deg,
    #D71920,
    #B51218
    );
    color:white;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s ease;
    box-shadow:
    0 15px 40px rgba(215,25,32,.25);
    overflow:hidden;
    position:relative;
}

.stat-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:
    rgba(255,255,255,.08);
    border-radius:50%;
    top:-30px;
    right:-30px;
}

.stat-card:hover{
    transform:
    translateY(-10px);
    box-shadow:
    0 25px 50px rgba(215,25,32,.35);
}

.stat-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:
    rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
}

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

.stat-card h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;
    color:white;
}

.stat-card p{
    margin:0;
    font-size:16px;
    color:rgba(255,255,255,.9);
}

.stat-card:hover .stat-icon{
    transform:
    rotate(10deg)
    scale(1.1);
    transition:.4s ease;
}

/* =========================
   ABOUT SECTION
========================= */

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

}

.section-badge{
    display:inline-block;
    background:rgba(215,25,32,.1);
    color:#D71920;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;

}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#1F2937;
    margin-bottom:25px;
}

.about-text{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:30px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.10);

}

.about-features{
    margin-top:30px;
}

.feature-item{
    background:#F8F9FA;
    padding:18px 25px;
    border-radius:16px;
    margin-bottom:15px;
    font-weight:500;
    transition:.3s;

}

.feature-item:hover{
    background:#D71920;
    color:white;
    transform:translateX(10px);
}

/* =========================
   WHY CERTIFICATION
========================= */

.why-section{
    padding:120px 0;
    background:#F8F9FA;
}

.section-description{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.why-card{
    background:white;
    padding:40px 30px;
    border-radius:24px;
    height:100%;
    text-align:center;
    transition:.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
    border-bottom:
    5px solid #D71920;
}

.why-card:hover .why-icon{
    transform:scale(1.15);
}

.why-card h4{
    font-weight:700;
    margin-bottom:20px;
    color:#1F2937;

}

.why-card p{
    color:#666;
    line-height:1.8;
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:
    linear-gradient(
    135deg,
    #D71920,
    #B51218
    );
    color:#ffffff;
    font-size:36px;
    transition:.4s ease;
}

.why-card:hover .why-icon{
    transform:
    translateY(-5px)
    scale(1.05);

}

/* =========================
   STRATEGIC ROLE
========================= */

.strategic-section{
    padding:120px 0;
    background:white;
}

.orbit-wrapper{
    position:relative;
    width:750px;
    height:750px;
    margin:auto;
}

.orbit-wrapper::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border:2px dashed #D71920;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

}

.orbit-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:220px;
    height:220px;
    background:#D71920;
    color:white;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:
    0 20px 50px rgba(215,25,32,.30);

}

.orbit-center h4{
    font-size:40px;
    font-weight:800;
    margin:0;
}

.orbit-center span{
    font-size:18px;
}

.orbit-item{
    position:absolute;
}

.orbit-top{
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.orbit-right{
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.orbit-bottom{
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.orbit-left{
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.orbit-card{
    width:180px;
    background:white;
    padding:30px;
    border-radius:24px;
    text-align:center;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.orbit-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

.orbit-card h5{
    margin-top:15px;
    font-weight:700;
}

.orbit-card i{
    font-size:48px;
    color:#D71920;
    margin-bottom:15px;
    display:block;
    transition:.4s ease;
}

.orbit-card:hover i{
    transform:
    scale(1.15)
    rotate(5deg);
    color:#B51218;
}

@keyframes floating{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}
}

.orbit-card{
animation:floating 4s ease-in-out infinite;
}

/* =========================
   VISION & MISSION
========================= */

.vision-section{
    padding:120px 0;
    background:
    linear-gradient(
    135deg,
    #D71920,
    #B51218);
    color:white;
}

.vision-badge{
    display:inline-block;
    background:
    rgba(255,255,255,.15);
    padding:12px 25px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.vision-title{
    font-size:48px;
    font-weight:800;
    color:white;
}

.vision-card{
    background:
    rgba(255,255,255,.12);
    padding:60px;
    border-radius:30px;
    text-align:center;
    backdrop-filter:blur(15px);
    border:
    1px solid rgba(255,255,255,.20);
}

.vision-card h3{
    font-size:40px;
    font-weight:800;
    margin-bottom:20px;
}

.vision-card p{
    font-size:20px;
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

.mission-card{
    background:
    rgba(255,255,255,.12);
    border:
    1px solid rgba(255,255,255,.20);
    border-radius:24px;
    padding:35px;
    height:100%;
    backdrop-filter:blur(15px);
    transition:.4s;
    overflow:hidden;
}

.mission-card:hover{
    transform:translateY(-10px);
    background:
    rgba(255,255,255,.18);
}

.mission-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.mission-card p{
    line-height:1.8;
}


.vision-card{
box-shadow:
0 0 50px rgba(255,255,255,.08);
}

.mission-card{
box-shadow:
0 15px 40px rgba(0,0,0,.10);
}

.mission-icon{
    width:90px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    border-radius:50%;
    background:
    rgba(255,255,255,.15);
    font-size:42px;
    transition:.4s ease;
}

.mission-card:hover .mission-icon{
    transform:scale(1.08);

}

/* =========================
   OCCUPATION MAP
========================= */

.occupation-section{
    padding:120px 0;
    background:#F8F9FA;
}

.occupation-wrapper{
    position:relative;
    width:850px;
    height:850px;
    margin:auto;
}

.occupation-wrapper::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border:2px dashed #D71920;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.occupation-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:270px;
    height:270px;
    background:#D71920;
    color:white;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:
    0 20px 60px rgba(215,25,32,.30);
}

.occupation-center h3{
    font-size:34px;
    font-weight:800;
    margin:0;
}

.occupation-center span{
    font-size:20px;
}

.occupation-item{
    position:absolute;
}

.occupation-top{
    top:20px;
    left:50%;
    transform:translateX(-50%);
}

.occupation-right{
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.occupation-bottom{
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

}

.occupation-left{
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.occupation-extra{
    top:150px;
    left:80px;
}

.occupation-card{
    width:240px;
    background:white;
    padding:30px;
    border-radius:24px;
    text-align:center;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.occupation-card:hover{
    transform:translateY(-10px);
    border-bottom:
    5px solid #D71920;
    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

.occupation-icon{
    margin-bottom:15px;
}

.occupation-icon i{
    font-size:48px;
    color:#D71920;
    transition:.4s ease;
}

.occupation-card h5{
    font-weight:700;
    margin:0;
}

.occupation-card{
animation:
occupationFloat 5s ease-in-out infinite;
}


.occupation-card:hover .occupation-icon i{
    transform:
    scale(1.15)
    rotate(5deg);
    color:#B51218;
}

@keyframes occupationFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}
}

/* =========================
   SCHEMES
========================= */

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

.scheme-card{
    background:white;
    border-radius:24px;
    padding:35px;
    text-align:center;
    height:100%;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.scheme-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
    border-bottom:
    5px solid #D71920;
}

.scheme-icon{
    font-size:60px;
    margin-bottom:20px;
}

.scheme-title{
    font-size:22px;
    font-weight:700;
    min-height:70px;
}

.scheme-badge{
    display:inline-block;
    background:#F8F9FA;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    color:#D71920;
    font-weight:600;
}

.scheme-description{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.scheme-button{
    background:#D71920;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:50px;
    cursor:pointer;
}

.scheme-icon{
    font-size:60px;
    color:#D71920;
    margin-bottom:20px;
    transition:.3s ease;
}

.scheme-card:hover .scheme-icon{
    transform:scale(1.1);
    color:#B51218;
}

/* =========================
   CTA PREMIUM
========================= */

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

.cta-wrapper{
    background:
    linear-gradient(
    135deg,
    #D71920,
    #B51218);
    padding:70px;
    border-radius:32px;
    color:white;
    box-shadow:
    0 25px 80px rgba(215,25,32,.25);
}

.cta-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:
    rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    margin-bottom:20px;
}

.cta-title{
    font-size:48px;
    font-weight:800;
    color:white;
    margin-bottom:20px;
}

.cta-description{
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn-cta-wa{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 25px;
    border-radius:50px;
    text-align:center;
    font-weight:600;
}

.btn-cta-wa:hover{
    color:white;
}


/* =========================
   CTA BUTTONS PREMIUM
========================= */

.cta-buttons{
    display:flex;
    gap:15px;
    justify-content:flex-end;
    flex-wrap:wrap;
}

.cta-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 32px;
    border-radius:50px;
    background:#ffffff;
    color:#D71920;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}

.cta-btn-primary:hover{
    color:#D71920;
    transform:translateY(-4px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.20);
}

.cta-btn-wa{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 32px;
    border-radius:50px;
    background:
    linear-gradient(
        135deg,
        #25D366 0%,
        #1FA851 50%,
        #128C45 100%
    );
    color:white;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    box-shadow:
    0 10px 30px rgba(18,140,69,.25);
}

.cta-btn-wa:hover{
    color:white;
    transform:
    translateY(-4px);
    background:
    linear-gradient(
        135deg,
        #2BE06D 0%,
        #25D366 50%,
        #128C45 100%
    );
    box-shadow:
    0 20px 40px rgba(18,140,69,.35);
}

.cta-btn-primary:active,
.cta-btn-wa:active{
    transform:translateY(2px);
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:120px 0;
    background:#F8F9FA;
}

.contact-card{
    background:white;
    border-radius:24px;
    padding:40px;
    height:100%;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.contact-icon{
    width:60px;
    height:60px;
    background:#D71920;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.contact-icon i{
    font-size:24px;
    line-height:1;
}

.contact-item:hover .contact-icon{
    transform:translateY(-3px);
    background:#B51218;
    transition:.3s ease;
}


/* =========================
   FOOTER
========================= */

.footer{
    background:
    linear-gradient(
    135deg,
    #2D3748 0%,
    #1F2937 50%,
    #0F172A 100%
    );
    border-top:
    4px solid #D71920;
    color:white;
    padding:80px 0 30px;
}

.footer-menu{
    list-style:none;
    padding:0;
}

.footer-menu li{
    margin-bottom:10px;
}

.footer-menu a{
    color:#D1D5DB;
    text-decoration:none;
}

.footer-menu a:hover{
    color:white;
}

.footer h4,
.footer h5{
    color:#ffffff;
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#D1D5DB;
    line-height:1.8;
}

.footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-menu li{
    margin-bottom:10px;
}

.footer-menu a{
    color:#D1D5DB;
    text-decoration:none;
    transition:.3s;

}
.footer-menu a:hover{
    color:#D71920;
    padding-left:5px;
}

.footer-credit{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.footer-credit:hover{
    color:#D71920;
    text-shadow:
    0 0 10px rgba(215,25,32,.4);
}

.footer-logo{
    display:inline-block;
    margin-bottom:10px;

}

.footer-logo img{
    max-width:230px;
    width:100%;
    height:auto;
    transition:.4s ease;

}

.footer-logo:hover img{
    opacity:.9;
    transform:scale(1.03);
}

.footer-description{
    color:#D1D5DB;
    line-height:1.8;
    max-width:320px;
}

.footer-social a{
    color:#D1D5DB;
    font-size:22px;
    margin:0 10px;
    transition:.3s;
}

.footer-social a:hover{
    color:#D71920;
}

.footer hr{
    border-color:rgba(255,255,255,.1);
    margin:0px 0;
}

/* =========================
   BACK TO TOP
========================= */

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D71920;
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .3s ease;
    box-shadow:
    0 10px 25px rgba(215,25,32,.35);
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#backToTop:hover{
    background:#B51218;
    transform:translateY(-5px);

}


