

/* ANIMATED BACKGROUND */

.animated-bg{

    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top left,#0f4c81,transparent 30%),
    radial-gradient(circle at bottom right,#00d4ff,transparent 30%),
    linear-gradient(135deg,#020617,#07152d,#0a1931);

    z-index:-3;
    animation:bgmove 12s infinite alternate;
}

@keyframes bgmove{

    from{
        filter:hue-rotate(0deg);
    }

    to{
        filter:hue-rotate(60deg);
    }
}

/* FLOATING SHAPES */

.floating-shapes span{

    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    animation:float 10s linear infinite;
    border-radius:30px;
}

.floating-shapes span:nth-child(1){
    top:10%;
    left:10%;
}

.floating-shapes span:nth-child(2){
    top:60%;
    left:20%;
}

.floating-shapes span:nth-child(3){
    top:20%;
    right:15%;
}

.floating-shapes span:nth-child(4){
    bottom:10%;
    right:20%;
}

.floating-shapes span:nth-child(5){
    top:45%;
    left:50%;
}

@keyframes float{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    50%{
        transform:translateY(-25px) rotate(180deg);
    }

    100%{
        transform:translateY(0px) rotate(360deg);
    }
}

/* HERO SECTION */

.hero-section{

    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-content{

    max-width:900px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    padding:60px;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);

    transform-style:preserve-3d;
    transition:0.5s;
}

.hero-content:hover{

    transform:rotateX(6deg) rotateY(-6deg);
}

.hero-content h1{

    font-size:60px;
    margin-bottom:25px;
    color:#ffffff;
}

.hero-content p{

    font-size:20px;
    line-height:1.8;
    color:#d9d9d9;
}

/* BUTTON */

.hero-btn{

    display:inline-block;
    margin-top:35px;
    padding:16px 35px;
    border-radius:50px;
    background:linear-gradient(45deg,#00c6ff,#0072ff);
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.4s;
}

.hero-btn:hover{

    transform:scale(1.08);
    box-shadow:0 10px 25px rgba(0,114,255,0.5);
}

/* SECTION TITLE */

.section-title{

    text-align:center;
    max-width:1000px;
    margin:auto;
    padding:50px 20px;
}

.section-title h2{

    font-size:42px;
    margin-bottom:25px;
}

.section-title p{

    font-size:18px;
    line-height:1.8;
    color:#d0d0d0;
}

/* WHY SECTION */

.why-section{

    padding:80px 5%;
}

.why-section h2{

    text-align:center;
    font-size:45px;
    margin-bottom:50px;
}

.why-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.why-card{

    background:rgba(255,255,255,0.07);
    padding:50px 35px;
    border-radius:30px;
    text-align:center;
    backdrop-filter:blur(10px);

    transition:0.5s;
    transform-style:preserve-3d;

    border:1px solid rgba(255,255,255,0.08);
}

.why-card:hover{

    transform:translateY(-15px) rotateX(6deg);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.why-card i{

    font-size:55px;
    margin-bottom:25px;
    color:#00c6ff;
}

.why-card h3{

    font-size:28px;
    margin-bottom:20px;
}

.why-card p{

    line-height:1.8;
    color:#d6d6d6;
}

/* MANAGEMENT SECTION */

.management-section{

    padding:100px 5%;
}

.management-section h2{

    text-align:center;
    font-size:45px;
    margin-bottom:70px;
}

.management-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:50px;
}

.leader-card{

    background:rgba(255,255,255,0.06);
    border-radius:35px;
    overflow:hidden;
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.08);

    transition:0.5s;
    transform-style:preserve-3d;
}

.leader-card:hover{

    transform:translateY(-15px) rotateY(5deg);
    box-shadow:0 25px 50px rgba(0,0,0,0.45);
}

.leader-image{

    overflow:hidden;
}

.leader-image img{

    width:100%;
    height:420px;
    object-fit:cover;
    transition:0.5s;
}

.leader-card:hover img{

    transform:scale(1.08);
}

.leader-content{

    padding:35px;
    text-align:center;
}

.leader-content h3{

    font-size:32px;
    margin-bottom:10px;
}

.leader-content span{

    display:block;
    margin-bottom:20px;
    color:#00c6ff;
    font-weight:bold;
    font-size:18px;
}

.leader-content p{

    line-height:1.9;
    color:#d9d9d9;
}

/* FOOTER */

footer{

    text-align:center;
    padding:35px;
    background:rgba(255,255,255,0.04);
    border-top:1px solid rgba(255,255,255,0.08);
}

footer h3{

    font-size:28px;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content{

        padding:35px;
    }

    .hero-content h1{

        font-size:38px;
    }

    .hero-content p{

        font-size:17px;
    }

    .section-title h2,
    .why-section h2,
    .management-section h2{

        font-size:34px;
    }

    .leader-image img{

        height:320px;
    }
}
/* ===================================
   FULL RESPONSIVE SYSTEM
=================================== */

/* LARGE SCREEN */

@media(max-width:1200px){

    .hero-content{

        max-width:90%;
    }

    .management-container{

        gap:30px;
    }
}

/* TABLET */

@media(max-width:992px){

    body{

        padding-top:170px;
    }

    .top-menu{

        flex-direction:column;
        padding:15px;
        gap:18px;
    }

    .top-menu ul{

        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .hero-section{

        padding:80px 20px 50px;
    }

    .hero-content{

        padding:45px 30px;
    }

    .hero-content h1{

        font-size:42px;
        line-height:1.3;
    }

    .hero-content p{

        font-size:17px;
        line-height:1.8;
    }

    .why-container,
    .management-container{

        grid-template-columns:1fr;
    }

    .leader-image img{

        height:380px;
    }
}

/* MOBILE */

@media(max-width:768px){

    body{

        padding-top:230px;
    }

    .top-menu{

        padding:15px 10px;
    }

    .menu-logo{

        font-size:18px;
        text-align:center;
        line-height:1.5;
    }

    .top-menu ul{

        width:100%;
        gap:8px;
    }

    .top-menu ul li a{

        padding:10px 12px;
        font-size:12px;
        border-radius:10px;
    }

    .hero-section{

        min-height:auto;
        padding:60px 15px;
    }

    .hero-content{

        width:100%;
        padding:35px 20px;
        border-radius:25px;
    }

    .hero-content h1{

        font-size:32px;
        line-height:1.4;
    }

    .hero-content p{

        font-size:15px;
        line-height:1.9;
    }

    .hero-btn{

        padding:14px 28px;
        font-size:14px;
    }

    .section-title{

        padding:40px 15px;
    }

    .section-title h2,
    .why-section h2,
    .management-section h2{

        font-size:30px;
        line-height:1.4;
    }

    .section-title p{

        font-size:15px;
        line-height:1.9;
    }

    .why-section,
    .management-section{

        padding:60px 15px;
    }

    .why-card{

        padding:35px 20px;
        border-radius:22px;
    }

    .why-card h3{

        font-size:24px;
    }

    .leader-card{

        border-radius:25px;
    }

    .leader-image img{

        height:300px;
    }

    .leader-content{

        padding:25px 18px;
    }

    .leader-content h3{

        font-size:26px;
    }

    .leader-content p{

        font-size:15px;
        line-height:1.9;
    }

    footer{

        padding:25px 15px;
    }

    footer h3{

        font-size:22px;
    }

    footer p{

        font-size:14px;
        line-height:1.7;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    body{

        padding-top:260px;
    }

    .top-menu ul{

        justify-content:center;
    }

    .top-menu ul li a{

        font-size:11px;
        padding:9px 10px;
    }

    .hero-content h1{

        font-size:26px;
    }

    .hero-content p{

        font-size:14px;
    }

    .why-card i{

        font-size:42px;
    }

    .why-card h3{

        font-size:21px;
    }

    .leader-image img{

        height:250px;
    }

    .leader-content h3{

        font-size:22px;
    }
}