@import url('variables.css');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fa;
    padding-top: 85px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 80px;
    background:rgba(15,23,42,0.85);
    position:fixed;
    left:0;
    top:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}
/* LOGO SECTION START */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-text h2{
    margin:0;
    color:var(--white);
}

.logo-text span{
    display:block;
    color:var(--secondary);
    font-size:12px;
    letter-spacing:1px;
}
/* LOGO SECTION END */

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    position:relative;
    text-decoration:none;
    color:white;
    font-size:16px;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}
.nav-links a.active{

    color:#f4c542;

    font-weight:700;

}

/* HAMBURGER MENU */

.menu-toggle {

    display: none;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.08);

    color: white;

    width: 45px;

    height: 45px;

    border-radius: 12px;

    font-size: 26px;

    cursor: pointer;

    line-height: 1;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}

.menu-toggle:hover {

    background: rgba(244, 197, 66, 0.15);

    transform: translateY(-2px);

}
/* HERO SECTION */
.hero{
    position: relative;
    overflow: hidden;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
    linear-gradient(
    rgba(15,23,42,0.65),
    rgba(15,23,42,0.65)
    ),

    url('../images/hero/school\ Image1.webp');
    background-size:cover;
    background-position:center;
}

.hero-content{
    color:white;
    max-width:800px;
}
.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:var(--secondary);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:1px;
    border:1px solid rgba(255,255,255,0.2);
}
.hero-content h4{
    font-size:22px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:clamp(40px,6vw,70px);
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    background:gold;
    color:black;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    transition:0.3s;
}
.btn-secondary:hover{
    background:white;
    color:black;
}
.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:white;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
    font-size:14px;
}

/* HERO FLOATING CARDS */

.floating-card{
    position:absolute;
    min-width:140px;
    padding:18px 15px;
    text-align:center;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,0.15);
    z-index:2;

}

.floating-card h3{
    font-size:18px;
    color:var(--secondary);
    margin-bottom:5px;

}

.floating-card p{
    color:#fff;
    font-size:13px;
    margin:0;
}

.card-one{
    top:25%;
    left:8%;
    animation:floatOne 5s ease-in-out infinite;
}

.card-two{
    bottom:18%;
    left:12%;
    animation:floatTwo 6s ease-in-out infinite;
}

.card-three{
    top:30%;
    right:8%;
    animation:floatThree 7s ease-in-out infinite;
}
@keyframes floatOne{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes floatTwo{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(12px);
    }
}

@keyframes floatThree{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
}

/* SCROLL ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* ABOUT SECTION START */

.about{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    padding:100px 8%;
    background:#ffffff;
    flex-wrap:wrap;
   
}

/* ABOUT IMAGE SLIDER START */

.about-image{

    flex:1;

    min-width:300px;

    height:420px;

    position:relative;

    perspective:1200px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.18);

}


/* ALL IMAGES */

.about-slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:20px;

    opacity:0;

    animation-duration:48s;

    animation-timing-function:cubic-bezier(.77,0,.18,1);

    animation-iteration-count:infinite;

}


/* IMAGE 1 — RIGHT */

.slide-1{
    animation-name:slideRight;
}

.slide-2{
    animation-name:slideTop;
}

.slide-3{
    animation-name:slideLeft;
}

.slide-4{
    animation-name:slideBottom;
}

.slide-5{
    animation-name:foldTopRight;
}

.slide-6{
    animation-name:foldBottomLeft;
}


/* =====================================================
   ABOUT IMAGE — 48 SECOND CINEMATIC SLIDER
   ===================================================== */


/* IMAGE 1 — RIGHT */

@keyframes slideRight{

    0%{
        opacity:0;
        transform:
            translateX(110%)
            scale(1.08);
    }

    3%{
        opacity:1;
    }

    7%{
        opacity:1;
        transform:
            translateX(0)
            scale(1);
    }

    14%{
        opacity:1;
        transform:
            translateX(0)
            scale(1);
    }

    16.66%{
        opacity:0;
        transform:
            translateX(-8%)
            scale(.98);
    }

    100%{
        opacity:0;
    }

}


/* IMAGE 2 — TOP */

@keyframes slideTop{

    0%{
        opacity:0;
        transform:
            translateY(-110%)
            scale(1.08);
    }

    16.66%{
        opacity:0;
    }

    19.66%{
        opacity:1;
    }

    23%{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

    30%{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

    33.33%{
        opacity:0;
        transform:
            translateY(8%)
            scale(.98);
    }

    100%{
        opacity:0;
    }

}


/* IMAGE 3 — LEFT */

@keyframes slideLeft{

    0%{
        opacity:0;
        transform:
            translateX(-110%)
            scale(1.08);
    }

    33.33%{
        opacity:0;
    }

    36.33%{
        opacity:1;
    }

    40%{
        opacity:1;
        transform:
            translateX(0)
            scale(1);
    }

    47%{
        opacity:1;
        transform:
            translateX(0)
            scale(1);
    }

    50%{
        opacity:0;
        transform:
            translateX(8%)
            scale(.98);
    }

    100%{
        opacity:0;
    }

}


/* IMAGE 4 — BOTTOM */

@keyframes slideBottom{

    0%{
        opacity:0;
        transform:
            translateY(110%)
            scale(1.08);
    }

    50%{
        opacity:0;
    }

    53%{
        opacity:1;
    }

    56.66%{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

    63%{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

    66.66%{
        opacity:0;
        transform:
            translateY(-8%)
            scale(.98);
    }

    100%{
        opacity:0;
    }

}


/* =====================================================
   IMAGE 5 — TOP RIGHT FOLD
   ===================================================== */

@keyframes foldTopRight{

    0%{
        opacity:0;

        clip-path:polygon(
            100% 0,
            100% 0,
            100% 0,
            100% 0
        );

        transform:rotate(12deg) scale(.85);
        transform-origin:100% 0;
    }

    66.66%{
        opacity:0;
    }

    /* Corner appears */
    68.5%{
        opacity:1;

        clip-path:polygon(
            100% 0,
            100% 12%,
            88% 0
        );

        transform:rotate(10deg) scale(.88);
    }

    /* Fold opens further */
    70%{
        clip-path:polygon(
            100% 0,
            100% 30%,
            70% 0
        );

        transform:rotate(7deg) scale(.92);
    }

    /* More of the image revealed */
    72%{
        clip-path:polygon(
            100% 0,
            100% 55%,
            45% 0
        );

        transform:rotate(4deg) scale(.96);
    }

    /* Almost completely open */
    74.5%{
        clip-path:polygon(
            100% 0,
            100% 80%,
            20% 0
        );

        transform:rotate(2deg) scale(.99);
    }

    /* Fully open */
    77%{
        clip-path:polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );

        transform:rotate(0deg) scale(1);
    }

    /* Stay */
    80%{
        opacity:1;
    }

    83.33%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
}


/* =====================================================
   IMAGE 6 — BOTTOM LEFT FOLD
   ===================================================== */

@keyframes foldBottomLeft{

    0%{
        opacity:0;

        clip-path:polygon(
            0 100%,
            0 100%,
            0 100%,
            0 100%
        );

        transform:rotate(-12deg) scale(.85);
        transform-origin:0 100%;
    }

    83.33%{
        opacity:0;
    }

    /* Corner appears */
    85%{
        opacity:1;

        clip-path:polygon(
            0 100%,
            0 88%,
            12% 100%
        );

        transform:rotate(-10deg) scale(.88);
    }

    /* Fold opens */
    86.5%{
        clip-path:polygon(
            0 100%,
            0 70%,
            30% 100%
        );

        transform:rotate(-7deg) scale(.92);
    }

    /* More image revealed */
    88.5%{
        clip-path:polygon(
            0 100%,
            0 45%,
            55% 100%
        );

        transform:rotate(-4deg) scale(.96);
    }

    /* Almost completely open */
    90.5%{
        clip-path:polygon(
            0 100%,
            0 20%,
            80% 100%
        );

        transform:rotate(-2deg) scale(.99);
    }

    /* Fully open */
    93%{
        clip-path:polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );

        transform:rotate(0deg) scale(1);
    }

    /* Stay */
    96%{
        opacity:1;
    }

    100%{
        opacity:0;
    }
}

/* Images slide end */

.about-content{
    flex:1;
    min-width:300px;
}

.section-tag{
    display:inline-block;
    background:#e8f0ff;
    color:#f89808;
    padding:8px 20px;
    border-radius:50px;
    font-size:44px;
    margin-bottom:20px;
    
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#0f172a;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.about-btn{
    display:inline-block;
    background:#0f172a;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    transition:0.3s;
}

.about-btn:hover{
    transform:translateY(-4px);
}

/* ABOUT SECTION END */

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:60px 20px;
    background:white;
}
.stat-box{
    width:220px;
    text-align:center;
    padding:30px;
    border-radius:15px;
    background:#f8fafc;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}
.stat-box:hover{
    transform:translateY(-8px);
}
.stat-box h2{
    color:#0f172a;
    font-size:40px;
}

/* WHY CHOOSE US SECTION START */

.why-us{
    padding:100px 8%;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.section-heading p{
    font-size:18px;
    color:#666;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
        transition:all 0.35s ease;
    cursor:pointer;
}
.why-icon{
    text-align: center;
    font-size:42px;
    margin-bottom:15px;
}
.why-card:hover{
    transform:translateY(-12px);
}

.why-card h3{
    color:#0f172a;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}
/* WHY CHOOSE US SECTION END */

/* COURSES SECTION START */
.courses{
    padding:100px 8%;
    background:#ffffff;
}

.courses-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.course-card{
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    transition:0.3s;
    border-top:4px solid #0f172a;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-card h3{
    color:#0f172a;
    margin-bottom:15px;
    font-size:24px;
}

.course-card p{
    color:#666;
    line-height:1.8;
}

/* COURSES SECTION END */
/* ACHIEVEMENTS SECTION START */

.achievements{
    padding:100px 8%;
   
}

.achievement-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.achievement-card{
    background:white;
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    transition:0.3s;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.achievement-card:hover{
    transform:translateY(-10px);
}

.achievement-card h3{
    font-size:50px;
    color:#0f172a;
    margin-bottom:15px;
}

.achievement-card p{
    color:#555;
    font-size:18px;
}

/* ACHIEVEMENTS SECTION END */
/* GALLERY SECTION START */

.gallery{
    padding:100px 8%;
    background:var(--light);
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* GALLERY SECTION END */
/* TESTIMONIALS SECTION START */

.testimonials{
    padding:100px 8%;
    background:#ffffff;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:var(--light);
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:var(--primary);
    margin-bottom:5px;
}

.testimonial-card span{
    color:#888;
}

/* TESTIMONIALS SECTION END */
/* CALL TO ACTION SECTION START */

.cta{
    padding:100px 8%;
    background:var(--primary);
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:auto;
}

.cta-content h2{
    color:var(--white);
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    color:#d1d5db;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    background:var(--secondary);
    color:#000;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.cta-btn-primary:hover{
    transform:translateY(-5px);
}

.cta-btn-secondary{
    border:2px solid var(--white);
    color:var(--white);
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    transition:0.3s;
}

.cta-btn-secondary:hover{
    background:var(--white);
    color:var(--primary);
}

/* CALL TO ACTION SECTION END */
/* STATS SECTION START */

.stats{
    padding:100px 8%;
    background:var(--light);
}

.stats-heading{
    text-align:center;
    margin-bottom:60px;
}

.stats-heading h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.stats-heading p{
    color:var(--text);
    font-size:18px;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.stat-card{
    background:var(--white);
    padding:40px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h3{
    font-size:48px;
    color:var(--secondary);
    margin-bottom:10px;
}

.stat-card p{
    color:var(--text);
    font-size:18px;
}

/* STATS SECTION END */

/* SECTION BUTTONS START */
.section-btn{
    text-align:center;
    margin-top:40px;
}

.explore-btn{
    display:inline-block;
    padding:14px 32px;
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
    box-shadow:0 0 20px rgba(244,197,66,0.4);
     animation:floatBtn 2s ease-in-out infinite;
}
@keyframes floatBtn{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
    100%{
        transform:translateY(0);
    }
}
.explore-btn span{
    display:inline-block;
    margin-left:8px;
    animation:arrowMove 1.2s infinite;
}
@keyframes arrowMove{
    0%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(6px);
    }
    100%{
        transform:translateX(0);
    }
}
.explore-btn:hover{
    background:var(--secondary);
    color:var(--primary);
    transform:translateY(-5px);
    box-shadow:0 0 35px rgba(244,197,66,0.7);
}

/* SECTION BUTTONS END */

/* FOOTER SECTION START */
.footer{
    background:var(--primary);
    color:var(--white);
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:80px 8%;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
}

.footer-box p{
    line-height:1.8;
    color:#d1d5db;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#d1d5db;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:var(--secondary);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.15);
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#d1d5db;
}

/* FOOTER SECTION END */

/*=========================================
   CONTACT & CONNECT HUB
=========================================*/

.contact-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#0d1b2a,#123F4D,#1d3557);
}

.contact-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.contact-section .section-title span{
    color:#FFD54F;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.contact-section .section-title h2{
    font-size:2.6rem;
    margin:15px 0;
    color:#fff;
}

.contact-section .section-title p{
    color:#d6d6d6;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.contact-card{

    background:rgba(255,255,255,.08);

backdrop-filter:blur(14px);

border:1px solid rgba(255,255,255,.15);

    text-decoration:none;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-card:hover{

    transform:translateY(-15px) scale(1.04);
    border-color:#FFD54F;

    box-shadow:0 20px 45px rgba(18,63,77,.20);

}

.contact-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#123F4D;
    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

    transition:.4s;

}
.contact-card:nth-child(1) .icon{

background:#ff9800;

}
.contact-card:nth-child(2) .icon{

background:#25D366;

}
.contact-card:nth-child(3) .icon{

background:#F44336;

}
.contact-card:nth-child(4) .icon{

background:#2196F3;

}
.contact-card:nth-child(5) .icon{

background:#1877F2;

}
.contact-card:nth-child(6) .icon{

background:linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);

}
.contact-card:hover .icon{

    transform:rotate(10deg) scale(1.15);

}

.contact-card h3{

    color:#fff;

    margin-bottom:12px;

    font-size:22px;

}

.contact-card p{

    color:#fff;

    font-size:15px;

}

/* Mobile */

@media(max-width:768px){

.contact-section{

padding:70px 20px;

}

.contact-section .section-title h2{

font-size:2rem;

}

.contact-card{

padding:25px 18px;

}

.contact-card .icon{

width:70px;
height:70px;
font-size:30px;

}

}

/* QUICK ACCESS SIDEBAR */

.quick-sidebar{

    position:fixed;

    left:0;

    top:0;

    height:100vh;

    width:68px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:18px;

    padding:20px 10px;

    background:rgba(15,23,42,0.72);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border-right:1px solid rgba(255,255,255,0.12);

    box-shadow:
        8px 0 30px rgba(0,0,0,0.18);

    z-index:1500;

}


/* ICON BUTTON */

.quick-link{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    text-decoration:none;

    color:white;

    font-size:20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* HOVER */

.quick-link:hover{

    transform:
        translateX(5px)
        scale(1.08);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.30);

}


/* COLORS */

.quick-link.erp{

    width:52px;

    height:52px;

    flex-direction:column;

    gap:3px;

    background:#2563eb;

}


.quick-link.erp i{

    font-size:18px;

}


.quick-link.erp span{

    font-size:11px;

    font-weight:800;

    letter-spacing:0.5px;

}


.quick-link.whatsapp{

    background:#25D366;

}


.quick-link.facebook{

    background:#1877F2;

}


.quick-link.youtube{

    background:#FF0000;

}


.quick-link.phone{

    background:#14b8a6;

}


.quick-link.email{

    background:#f59e0b;

}

/* QUICK ACCESS SIDEBAR END */

/* WHATSAPP FLOATING BUTTON */

.whatsapp-float{

    position:fixed;

    right:18px;

    bottom:22px;

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    font-size:30px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25);

    z-index:1600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.whatsapp-float:hover{

    transform:scale(1.1);

    box-shadow:
        0 10px 30px rgba(37,211,102,0.45);

}


/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{

        right:15px;

        bottom:18px;

        width:50px;

        height:50px;

        font-size:27px;

    }

}
