/* ==================================================
   VASHISTHA BRANCH WEBSITE
   PART 1
   GLOBAL + NAVBAR + HERO SECTION
================================================== */

/* ==========================================
   GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root{

    --primary:#8E1414;
    --primary-dark:#6D1010;

    --accent:#F4B400;
    --accent-light:#FFD54A;

    --white:#FFFFFF;
    --ivory:#FFF8EE;
    --cream:#FFF5E6;

    --dark:#111111;
    --dark-light:#444444;

    --text:#666666;
    --heading:#111111;

    --border:rgba(244,180,0,.15);

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:
    0 20px 60px rgba(0,0,0,.12);

}

/* =====================================================
   RESET
===================================================== */

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);

    overflow-x:hidden;

}

h1,h2,h3,h4,h5,h6{

    font-family:
    'Cormorant Garamond',
    serif;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    position:relative;
}

/* /* =====================================================
   COMMON SPACING
===================================================== */

.section-padding{

    padding:120px 0;

}

/* =====================================================
   SCROLLBAR
===================================================== */

/* ::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

} */

/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
    rgba(244,180,0,.12);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-heading h2{

    font-size:4rem;

    font-weight:700;

    margin-top:18px;

    margin-bottom:18px;

    color:var(--heading);

}

.section-heading p{

    max-width:800px;

    margin:auto;

    line-height:1.9;

    font-size:17px;

}

/* =====================================================
   BUTTONS
===================================================== */

.primary-btn{

    display:inline-flex;

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

    gap:10px;

    padding:16px 34px;

    border:none;

    border-radius:60px;

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

    color:#fff;

    font-weight:600;

    transition:.4s;

}

.primary-btn:hover{

    color:#fff;

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 35px rgba(142,20,20,.25);

}

.secondary-btn{

    display:inline-flex;

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

    gap:10px;

    padding:16px 34px;

    border-radius:60px;

    border:2px solid var(--accent);

    color:var(--primary);

    background:#fff;

    font-weight:600;

    transition:.4s;

}

.secondary-btn:hover{

    background:var(--accent);

    color:var(--dark);

}

/* =====================================================
   BODY OFFSET FOR FIXED NAVBAR
===================================================== */

/* body{

    padding-top:105px;

}  */

/* =====================================================
   PREMIUM ANNOUNCEMENT BAR
===================================================== */

.announcement-bar{

    background:
    linear-gradient(
        90deg,
        #B71C1C,
        #C62828,
        #8E1414
    );

    border-bottom:3px solid #F4B400;

    height:50px;

    overflow:hidden;

    display:flex;

    align-items:center;

    position:relative;

    z-index:100;

}


/* =====================================================
   MOVING TRACK
===================================================== */

.announcement-track{

    display:flex;

    align-items:center;

    width:max-content;

    white-space:nowrap;

    animation:
    marquee 25s linear infinite;

}


/* =====================================================
   ANNOUNCEMENT TEXT
===================================================== */

.announcement-track span{

    display:flex;

    align-items:center;

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    letter-spacing:.3px;

    padding-right:60px;

}


/* =====================================================
   GOLD SEPARATOR
===================================================== */

.announcement-track span::after{

    content:"★";

    color:#F4B400;

    margin-left:25px;

    font-size:12px;

}


/* =====================================================
   MARQUEE ANIMATION
===================================================== */

@keyframes marquee{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}


/* =====================================================
   PAUSE ON HOVER
===================================================== */

.announcement-track:hover{

    animation-play-state:paused;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    .announcement-bar{

        height:45px;

    }

    .announcement-track{

        animation-duration:22s;

    }

    .announcement-track span{

        font-size:13px;

        padding-right:45px;

    }

    .announcement-track span::after{

        margin-left:20px;

        font-size:11px;

    }

}

/* =====================================================
   PREMIUM CONTACT BAR
===================================================== */

.contact-bar{

    background:#FFFFFF;

    padding:14px 0;

    border-bottom:
    2px solid #F4B400;

    position:relative;

    z-index:100;
}

/* Contact Links */

.contact-bar a{

    color:#444444;

    font-size:14px;

    font-weight:500;

    transition:.35s ease;

}

.contact-bar a:hover{

    color:#C62828;

}

/* Icons */

.contact-bar i{

    color:#C62828;

    margin-right:8px;

    font-size:15px;

    transition:.35s;

}

.contact-bar a:hover i{

    color:#F4B400;

}

/* Social Icons */

.social-icons{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:12px;

}

/* Individual Social Icon */

.social-icons a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #FFF7E0,
    #FFE9A8
    );

    color:#C62828;

    border:
    1px solid rgba(244,180,0,.35);

    transition:.4s ease;

    box-shadow:
    0 5px 15px rgba(0,0,0,.06);

}

/* Remove extra spacing from icons */

.social-icons a i{

    margin-right:0;

    color:#C62828;

    font-size:17px;

}

/* Hover */

.social-icons a:hover{

    background:
    linear-gradient(
    135deg,
    #C62828,
    #8E1414
    );

    border-color:#C62828;

    transform:
    translateY(-4px);

    box-shadow:
    0 12px 25px rgba(198,40,40,.25);

}

.social-icons a:hover i{

    color:#FFFFFF;

}

/* Mobile */

@media(max-width:991px){

    .contact-bar{

        padding:12px 0;

    }

    .contact-bar .col-lg-4{

        margin-bottom:10px;

    }

    .contact-bar .col-lg-4:last-child{

        margin-bottom:0;

    }

    .social-icons{

        justify-content:center;

        margin-top:8px;

    }

}

/*=====================================================
            PREMIUM LUXURY NAVBAR
=====================================================*/

.custom-navbar{

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:2px solid rgba(244,180,0,.18);

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    padding:10px 0;

    transition:.4s ease;

}

/* ==========================================
   PREMIUM LARGE LOGO
========================================== */

.navbar-brand{

    display:flex;

    align-items:center;

    padding:0;

    margin:0;

    flex-shrink:0;

}

.navbar-brand img{

    width:250px;

    height:auto;

    object-fit:contain;

    transition:.35s ease;

    display:block;

}

/* Navbar on Scroll */

.custom-navbar.scrolled .navbar-brand img{

    width:165px;

}

/* ==========================================
   DESKTOP NAVBAR HEIGHT
========================================== */

.custom-navbar{

    min-height:105px;

    display:flex;

    align-items:center;

    padding:10px 0;

}
/*=========================================
              NAVIGATION
=========================================*/

.navbar-nav{

    align-items:center;

    gap:12px;

}

.nav-link{

    color:#222!important;

    font-size:18px;

    font-weight:600;

    padding:10px 6px!important;

    position:relative;

    transition:.35s;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:3px;

    background:#F4B400;

    border-radius:30px;

    transition:.35s;

}

.nav-link:hover{

    color:#C62828!important;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link.active{

    color:#C62828!important;

}

.nav-link.active::after{

    width:100%;

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .custom-navbar{

        min-height:90px;

    }

    .navbar-brand img{

        width:150px;

    }

    .custom-navbar.scrolled .navbar-brand img{

        width:140px;

    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:576px){

    .custom-navbar{

        min-height:80px;

    }

    .navbar-brand img{

        width:120px;

    }

    .custom-navbar.scrolled .navbar-brand img{

        width:115px;

    }

}

/* ==================================================
   HERO SECTION - RED & GOLD PREMIUM
================================================== */

.branch-hero{

    position:relative;

    padding:180px 0 120px;

    background:
    linear-gradient(
    135deg,
    #8E1414 0%,
    #6D1010 50%,
    #4A0808 100%
    );

    overflow:hidden;

}

/* GOLD GLOW */

.branch-hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(244,180,0,.12);

    filter:blur(120px);

    top:-180px;
    right:-150px;

}

.branch-hero::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(255,215,0,.08);

    filter:blur(100px);

    bottom:-150px;
    left:-150px;

}

.branch-hero .container{

    position:relative;

    z-index:2;

}

.branch-hero .row{

    min-height:80vh;

    align-items:center;

}

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

.branch-tag{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
    rgba(244,180,0,.15);

    border:
    1px solid rgba(244,180,0,.25);

    color:#FFD54A;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;

}

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

.branch-hero h1{

    font-size:5.2rem;

    font-weight:700;

    line-height:1.05;

    color:#ffffff;

    margin-bottom:20px;

}

.branch-hero h1 span{

    display:block;

    color:#FFD54A;

}

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

.branch-hero p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.85);

    max-width:650px;

    margin-bottom:40px;

}

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

.hero-highlights{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.hero-highlights div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 20px;

    border-radius:18px;

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

    backdrop-filter:
    blur(12px);

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

    color:#ffffff;

    font-weight:500;

    transition:.4s;

}

.hero-highlights div:hover{

    transform:
    translateY(-5px);

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

}

.hero-highlights i{

    color:#FFD54A;

    font-size:20px;

}

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

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* PRIMARY BUTTON */

.hero-buttons .primary-btn{

    padding:16px 35px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #FFD54A,
    #F4B400
    );

    color:#111111;

    font-weight:700;

    transition:.4s;

}

.hero-buttons .primary-btn:hover{

    transform:
    translateY(-5px);

    color:#111111;

    box-shadow:
    0 15px 35px rgba(244,180,0,.35);

}

/* SECONDARY BUTTON */

.hero-buttons .secondary-btn{

    padding:16px 35px;

    border-radius:60px;

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

    color:#ffffff;

    font-weight:600;

    background:transparent;

    transition:.4s;

}

.hero-buttons .secondary-btn:hover{

    background:#ffffff;

    color:#8E1414;

}

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

.branch-image{

    position:relative;

    text-align:center;

}

.branch-image::before{

    content:"";

    position:absolute;

    inset:-20px;

    border-radius:45px;

    background:
    linear-gradient(
    135deg,
    rgba(244,180,0,.25),
    transparent
    );

    z-index:-1;

}

.branch-image img{

    width:100%;

    max-width:560px;

    border-radius:40px;

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

    box-shadow:
    0 35px 80px rgba(0,0,0,.30);

    transition:.6s;

}

.branch-image:hover img{

    transform:
    translateY(-10px)
    scale(1.02);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

    .branch-hero h1{

        font-size:4.5rem;

    }

}

@media(max-width:991px){

    .branch-hero{

        text-align:center;

        padding:160px 0 90px;

    }

    .branch-hero h1{

        font-size:3.8rem;

    }

    .branch-hero p{

        margin-left:auto;
        margin-right:auto;

    }

    .hero-highlights{

        margin-top:20px;

    }

    .branch-image{

        margin-top:60px;

    }

}

@media(max-width:768px){

    .branch-hero h1{

        font-size:3rem;

    }

    .hero-highlights{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .branch-hero{

        padding:140px 0 80px;

    }

    .branch-hero h1{

        font-size:2.3rem;

    }

    .branch-hero p{

        font-size:15px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .branch-image img{

        border-radius:25px;

    }

}
/* ==================================================
   PART 2
   PRINCIPAL MESSAGE
   ABOUT CAMPUS
   FACILITIES
   GALLERY / CAMPUS LIFE
   ACHIEVEMENTS
================================================== */

/* ==========================================
   LEADERSHIP SECTION
========================================== */

.leadership-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #FFF9EB 0%,
    #FFF4D6 100%
    );

    position:relative;

    overflow:hidden;

}

/* Decorative Shapes */

.leadership-section::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(244,180,0,.12);

    filter:blur(120px);

    top:-180px;
    left:-180px;

}

.leadership-section::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    border-radius:50%;

    background:
    rgba(142,20,20,.08);

    filter:blur(100px);

    bottom:-180px;
    right:-150px;

}

/* ==========================================
   TITLE
========================================== */

.section-title{

    text-align:center;

    margin-bottom:80px;

    position:relative;

    z-index:2;

}

.section-title span{

    display:inline-block;

    padding:12px 26px;

    border-radius:50px;

    background:
    rgba(142,20,20,.08);

    color:#8E1414;

    font-weight:700;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-title h2{

    font-size:3.8rem;

    color:#111111;

    font-weight:700;

    margin-bottom:15px;

}

.section-title p{

    max-width:750px;

    margin:auto;

    color:#555;

    line-height:1.9;

    font-size:17px;

}

/* ==========================================
   LEADERSHIP CARD
========================================== */

.leadership-card{

    background:#8E1414;

    border-radius:35px;

    overflow:hidden;

    position:relative;

    height:100%;

    transition:.45s;

    box-shadow:
    0 20px 50px rgba(142,20,20,.18);

    border:
    1px solid rgba(244,180,0,.20);

}

/* GOLD CORNER GLOW */

.leadership-card::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    rgba(244,180,0,.18);

    top:-100px;
    right:-100px;

    filter:blur(70px);

}

.leadership-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 35px 70px rgba(142,20,20,.25);

}

/* ==========================================
   IMAGE
========================================== */

.leader-image{

    display:flex;

    justify-content:center;

    padding-top:40px;

    position:relative;

    z-index:2;

}

.leader-image img{

    width:210px;
    height:210px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #F4B400;

    transition:.5s;

    box-shadow:
    0 15px 40px rgba(244,180,0,.25);

}

.leadership-card:hover .leader-image img{

    transform:
    scale(1.05);

}

/* ==========================================
   CONTENT
========================================== */

.leader-content{

    padding:35px;

    text-align:center;

    position:relative;

    z-index:2;

}

.leader-content h3{

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    margin-bottom:8px;

}

.leader-content h6{

    color:#F4B400;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.leader-content p{

    color:
    rgba(255,255,255,.85);

    line-height:1.9;

    font-size:15px;

    margin-bottom:28px;

}

/* ==========================================
   BUTTON
========================================== */

.leader-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border-radius:50px;

    background:#F4B400;

    color:#111111;

    font-weight:700;

    transition:.4s;

}

.leader-btn:hover{

    background:#FFD54A;

    color:#111111;

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 35px rgba(244,180,0,.30);

}

.leader-btn i{

    transition:.3s;

}

.leader-btn:hover i{

    transform:
    translateX(5px);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .leadership-card{

        margin-bottom:30px;

    }

}

@media(max-width:768px){

    .leadership-section{

        padding:90px 0;

    }

    .section-title h2{

        font-size:2.5rem;

    }

    .leader-image img{

        width:180px;
        height:180px;

    }

    .leader-content{

        padding:25px;

    }

    .leader-content h3{

        font-size:24px;

    }

}

@media(max-width:576px){

    .section-title h2{

        font-size:2rem;

    }

}

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

.about-campus{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #FFFDF5 0%,
    #FFF8E8 50%,
    #FFFDF5 100%
    );

    position:relative;

    overflow:hidden;

}

/* DECORATIVE BLOBS */

.about-campus::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(244,180,0,.08);

    filter:blur(120px);

    top:-180px;
    left:-180px;

}

.about-campus::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(142,20,20,.05);

    filter:blur(100px);

    bottom:-150px;
    right:-120px;

}

/* ==========================================
   IMAGE AREA
========================================== */

.about-image{

    position:relative;

    z-index:2;

}

.about-image img{

    width:100%;

    border-radius:35px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);

    transition:.5s;

    border:
    6px solid rgba(255,255,255,.80);

}

.about-image:hover img{

    transform:
    scale(1.02);

}

/* GOLD CORNER ACCENT */

.about-image::before{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-top:5px solid #F4B400;
    border-left:5px solid #F4B400;

    top:-15px;
    left:-15px;

    border-radius:20px;

}

.about-image::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-bottom:5px solid #8E1414;
    border-right:5px solid #8E1414;

    bottom:-15px;
    right:-15px;

    border-radius:20px;

}

/* ==========================================
   CONTENT
========================================== */

.about-content{

    position:relative;

    z-index:2;

    padding-left:25px;

}

.about-content .section-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(244,180,0,.15);

    color:#8E1414;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-content h3{

    font-size:3.4rem;

    line-height:1.15;

    color:#8E1414;

    margin-bottom:25px;

    font-weight:700;

}

.about-content p{

    font-size:16px;

    line-height:2;

    color:#555555;

    margin-bottom:18px;

}

/* ==========================================
   FEATURES GRID
========================================== */

.about-features{

    margin-top:35px;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

}

/* FEATURE CARD */

.about-feature{

    background:#ffffff;

    padding:18px 20px;

    border-radius:18px;

    border:
    1px solid rgba(244,180,0,.15);

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    display:flex;

    align-items:center;

    gap:15px;

    transition:.4s;

}

.about-feature:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 18px 45px rgba(142,20,20,.12);

}

/* ICON */

.about-feature i{

    width:50px;
    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    #F4B400,
    #FFD54A
    );

    color:#8E1414;

    font-size:22px;

    flex-shrink:0;

}

/* TEXT */

.about-feature span{

    font-weight:600;

    color:#222222;

    line-height:1.5;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .about-content{

        padding-left:0;

        margin-top:50px;

    }

    .about-content h3{

        font-size:2.8rem;

    }

}

@media(max-width:768px){

    .about-campus{

        padding:90px 0;

    }

    .about-content h3{

        font-size:2.2rem;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .about-image::before,
    .about-image::after{

        display:none;

    }

}

@media(max-width:576px){

    .about-content h3{

        font-size:2rem;

    }

    .about-content p{

        font-size:15px;

    }

    .about-feature{

        padding:16px;

    }

}

/* ==========================================
   FACILITIES SECTION
========================================== */

.facilities-section{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #2B0505 0%,
    #4A0808 40%,
    #6D1010 100%
    );

    overflow:hidden;

}

/* GOLD GLOW */

.facilities-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    filter:blur(130px);

    top:-200px;
    right:-150px;

}

.facilities-section::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(244,180,0,.08);

    filter:blur(110px);

    bottom:-180px;
    left:-120px;

}

/* ==========================================
   SECTION TITLE
========================================== */

.facilities-section .section-heading{

    position:relative;

    z-index:2;

}

.facilities-section .section-heading span{

    background:
    rgba(244,180,0,.15);

    color:#FFD54A;

    border:1px solid rgba(255,213,74,.20);

}

.facilities-section .section-heading h2{

    color:#ffffff;

}

.facilities-section .section-heading p{

    color:
    rgba(255,255,255,.80);

}

/* ==========================================
   FACILITY CARD
========================================== */

.facility-card{

    background:
    linear-gradient(
    180deg,
    #FFF8E8 0%,
    #FFF3D0 100%
    );

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.45s;

    border:
    1px solid rgba(244,180,0,.20);

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

}

/* TOP GOLD LINE */

.facility-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #F4B400,
    #FFD54A
    );

}

/* GOLD SHINE */

.facility-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    rgba(244,180,0,.08);

    top:-120px;
    right:-120px;

    transition:.5s;

}

.facility-card:hover::after{

    transform:scale(1.4);

}

.facility-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.25);

}

/* ==========================================
   ICON
========================================== */

.facility-icon{

    width:95px;
    height:95px;

    margin:auto auto 25px;

    border-radius:24px;

    display:flex;

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

    background:
    linear-gradient(
    135deg,
    #8E1414,
    #C91F1F
    );

    box-shadow:
    0 15px 35px rgba(142,20,20,.30);

    transition:.45s;

}

.facility-card:hover .facility-icon{

    transform:
    rotate(-8deg)
    scale(1.08);

}

.facility-icon i{

    font-size:40px;

    color:#FFD54A;

}

/* ==========================================
   TEXT
========================================== */

.facility-card h4{

    color:#8E1414;

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.facility-card p{

    color:#555555;

    line-height:1.9;

    font-size:15px;

    margin-bottom:0;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .facility-card{

        margin-bottom:25px;

    }

}

@media(max-width:768px){

    .facilities-section{

        padding:90px 0;

    }

    .facility-card{

        padding:35px 25px;

    }

    .facility-icon{

        width:85px;
        height:85px;

    }

    .facility-icon i{

        font-size:34px;

    }

    .facility-card h4{

        font-size:24px;

    }

}

@media(max-width:576px){

    .facility-card{

        border-radius:24px;

    }

}

/* ==========================================
   GALLERY SECTION
========================================== */

.branch-gallery{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #FFFDF5 0%,
    #FFF4D6 50%,
    #FFFDF5 100%
    );

    position:relative;

    overflow:hidden;

}

/* BACKGROUND GLOW */

.branch-gallery::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    filter:blur(130px);

    top:-200px;
    left:-180px;

}

.branch-gallery::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(142,20,20,.06);

    filter:blur(110px);

    bottom:-180px;
    right:-150px;

}

/* ==========================================
   SECTION HEADING
========================================== */

.branch-gallery .section-heading{

    position:relative;

    z-index:2;

}

.branch-gallery .section-heading span{

    background:
    rgba(142,20,20,.08);

    color:#8E1414;

    font-weight:700;

}

.branch-gallery .section-heading h2{

    color:#111111;

}

.branch-gallery .section-heading p{

    color:#666666;

}

/* ==========================================
   FILTER BUTTONS
========================================== */

.gallery-filters{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:60px;

    position:relative;

    z-index:2;

}

.gallery-btn{

    border:none;

    padding:14px 28px;

    border-radius:50px;

    background:#ffffff;

    color:#8E1414;

    font-weight:600;

    border:
    1px solid rgba(244,180,0,.20);

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

    transition:.4s;

    cursor:pointer;

}

.gallery-btn:hover,
.gallery-btn.active{

    background:
    linear-gradient(
    135deg,
    #8E1414,
    #B51D1D
    );

    color:#ffffff;

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(142,20,20,.20);

}

/* ==========================================
   MASONRY GRID
========================================== */

.gallery-grid{

    column-count:3;

    column-gap:22px;

    position:relative;

    z-index:2;

}

/* ==========================================
   GALLERY ITEM
========================================== */

.gallery-item{

    break-inside:avoid;

    margin-bottom:22px;

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:#ffffff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.gallery-item:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.gallery-item img{

    width:100%;

    display:block;

    border-radius:28px;

    transition:.7s;

}

.gallery-item:hover img{

    transform:
    scale(1.08);

}

/* ==========================================
   OVERLAY
========================================== */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(142,20,20,.95),
    rgba(142,20,20,.20),
    transparent
    );

    opacity:0;

    transition:.45s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

/* ==========================================
   TEXT
========================================== */

.gallery-overlay span{

    position:absolute;

    left:25px;
    bottom:25px;

    color:#FFD54A;

    font-size:18px;

    font-weight:700;

    letter-spacing:.5px;

    transform:
    translateY(15px);

    transition:.4s;

}

.gallery-item:hover .gallery-overlay span{

    transform:
    translateY(0);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .gallery-grid{

        column-count:2;

    }

}

@media(max-width:768px){

    .branch-gallery{

        padding:90px 0;

    }

    .gallery-grid{

        column-count:1;

    }

    .gallery-filters{

        gap:10px;

    }

    .gallery-btn{

        padding:12px 20px;

        font-size:14px;

    }

}

@media(max-width:576px){

    .gallery-overlay span{

        font-size:16px;

    }

}

/* ==========================================
   ACHIEVEMENTS SECTION
========================================== */

.achievements-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #FFF8E8 0%,
    #FFF3D6 100%
    );

    position:relative;

    overflow:hidden;

}

/* Decorative Glow */

.achievements-section::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    filter:blur(120px);

    top:-180px;
    left:-150px;

}

.achievements-section::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(142,20,20,.06);

    filter:blur(120px);

    bottom:-180px;
    right:-150px;

}

/* ==========================================
   ACHIEVEMENT CARD
========================================== */

.achievement-card{

    position:relative;

    background:
    linear-gradient(
    180deg,
    #FFFFFF,
    #FFFDF8
    );

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    overflow:hidden;

    border:
    1px solid rgba(244,180,0,.20);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.45s;

}

/* Premium Gold Top Border */

.achievement-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:
    linear-gradient(
    90deg,
    #F4B400,
    #FFD54A,
    #F4B400
    );

}

/* Gold Glow */

.achievement-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    top:-80px;
    right:-80px;

    filter:blur(60px);

}

/* Hover */

.achievement-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(142,20,20,.15);

    border-color:
    rgba(244,180,0,.45);

}

/* ==========================================
   NUMBER
========================================== */

.achievement-number{

    font-size:4.5rem;

    font-weight:800;

    line-height:1;

    margin-bottom:18px;

    color:#8E1414;

    font-family:'Poppins',sans-serif;

    position:relative;

    z-index:2;

}

/* ==========================================
   TITLE
========================================== */

.achievement-card h4{

    font-size:28px;

    font-weight:700;

    color:#111111;

    margin-bottom:15px;

    position:relative;

    z-index:2;

}

/* ==========================================
   DESCRIPTION
========================================== */

.achievement-card p{

    font-size:15px;

    line-height:1.9;

    color:#666666;

    margin-bottom:0;

    position:relative;

    z-index:2;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .achievement-card{

        margin-bottom:25px;

    }

}

@media(max-width:768px){

    .achievements-section{

        padding:90px 0;

    }

    .achievement-number{

        font-size:3.8rem;

    }

    .achievement-card{

        padding:35px 25px;

    }

}

@media(max-width:576px){

    .achievement-number{

        font-size:3rem;

    }

    .achievement-card h4{

        font-size:24px;

    }

}



/* ==================================================
   PART 3
   FACULTY
   ADMISSION FORM
   LOCATION MAP
   CONTACT SECTION
   FOOTER
   FLOATING BUTTONS
   RESPONSIVE
================================================== */




/* ==========================================
   ADMISSION SECTION
========================================== */

.admission-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #8E1414 0%,
    #781010 50%,
    #5C0B0B 100%
    );

}

/* GOLD GLOW CIRCLES */

.admission-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    filter:blur(120px);

    top:-200px;
    right:-180px;

}

.admission-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(255,213,74,.08);

    filter:blur(110px);

    bottom:-180px;
    left:-180px;

}

/* ==========================================
   HEADING
========================================== */

.admission-section .section-heading{

    position:relative;

    z-index:2;

    margin-bottom:70px;

}

.admission-section .section-heading span{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

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

    color:#FFD54A;

    font-weight:700;

}

.admission-section .section-heading h2{

    color:#ffffff;

}

.admission-section .section-heading p{

    color:
    rgba(255,255,255,.80);

}

/* ==========================================
   PROCESS WRAPPER
========================================== */

.process-wrapper{

    display:flex;

    flex-direction:column;

    gap:18px;

    position:relative;

    z-index:2;

}

/* ==========================================
   PROCESS CARD
========================================== */

.process-card{

    background:
    linear-gradient(
    135deg,
    #FFD54A,
    #F4B400
    );

    border-radius:22px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

}

.process-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.20);

}

/* ==========================================
   NUMBER
========================================== */

.process-number{

    min-width:55px;

    width:55px;
    height:55px;

    border-radius:50%;

    background:#8E1414;

    display:flex;

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

    color:#ffffff;

    font-size:20px;

    font-weight:700;

}

/* ==========================================
   PROCESS CONTENT
========================================== */

.process-content h5{

    margin-bottom:4px;

    color:#8E1414;

    font-size:18px;

    font-weight:700;

}

.process-content p{

    margin:0;

    color:#5D2020;

    font-size:14px;

    line-height:1.6;

}

/* ==========================================
   FORM CARD
========================================== */

.admission-form-card{

    background:#ffffff;

    border-radius:32px;

    padding:40px;

    position:relative;

    z-index:2;

    box-shadow:
    0 30px 70px rgba(0,0,0,.18);

    border:
    3px solid rgba(244,180,0,.15);

}

/* ==========================================
   FORM HEADER
========================================== */

.form-header{

    margin-bottom:30px;

}

.form-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:
    rgba(244,180,0,.12);

    color:#8E1414;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;

}

.form-header h3{

    color:#111111;

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

}

.form-header p{

    color:#666666;

    line-height:1.8;

    margin:0;

}

/* ==========================================
   FORM FIELDS
========================================== */

.form-control,
.form-select{

    height:58px;

    border-radius:14px;

    border:
    1px solid #E8E8E8;

    background:#fff;

    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:#F4B400;

    box-shadow:
    0 0 0 4px rgba(244,180,0,.15);

}

/* ==========================================
   BUTTONS
========================================== */

.admission-buttons{

    display:flex;

    gap:15px;

    margin-top:15px;

}

.email-btn,
.whatsapp-btn{

    flex:1;

    border:none;

    padding:16px;

    border-radius:60px;

    color:#fff;

    font-weight:600;

    transition:.4s;

}

.email-btn{

    background:
    linear-gradient(
    135deg,
    #8E1414,
    #B71C1C
    );

}

.whatsapp-btn{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #1EBE5D
    );

}

.email-btn:hover,
.whatsapp-btn:hover{

    transform:
    translateY(-4px);

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .process-wrapper{

        margin-bottom:35px;

    }

}

@media(max-width:768px){

    .admission-section{

        padding:90px 0;

    }

    .admission-form-card{

        padding:30px;

    }

    .form-header h3{

        font-size:28px;

    }

    .admission-buttons{

        flex-direction:column;

    }

}

@media(max-width:576px){

    .admission-form-card{

        padding:25px;

    }

    .form-header h3{

        font-size:24px;

    }

}



/* ==========================================
   CONTACT + LOCATION SECTION
========================================== */

.contact-location-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
    135deg,
    #FFF9E9 0%,
    #FFF1C8 25%,
    #FFE08A 60%,
    #F4B400 100%
    );

}

/* ==========================================
   PREMIUM BACKGROUND EFFECTS
========================================== */

.contact-location-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

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

    top:-250px;
    left:-180px;

    filter:blur(140px);

}

.contact-location-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(142,20,20,.08);

    bottom:-220px;
    right:-180px;

    filter:blur(130px);

}

/* ==========================================
   SECTION HEADING
========================================== */

.contact-location-section .section-heading{

    position:relative;

    z-index:2;

    text-align:center;

    margin-bottom:70px;

}

.contact-location-section .section-heading span{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:
    rgba(142,20,20,.08);

    color:#8E1414;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.contact-location-section .section-heading h2{

    margin-top:18px;

    color:#8E1414;

    font-size:3.5rem;

    font-weight:700;

}

.contact-location-section .section-heading p{

    color:#5A3A00;

    max-width:700px;

    margin:auto;

    line-height:1.9;

}

/* ==========================================
   MAP CARD
========================================== */

.premium-map-card{

    height:100%;

    min-height:620px;

    overflow:hidden;

    border-radius:35px;

    background:#ffffff;

    border:2px solid rgba(142,20,20,.12);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    position:relative;

}

.premium-map-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:35px;

    border:4px solid rgba(244,180,0,.10);

    pointer-events:none;

    z-index:1;

}

.premium-map-card iframe{

    width:100%;

    height:100%;

    min-height:620px;

    border:none;

}

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

.contact-info-card{

    background:
    linear-gradient(
    135deg,
    #FFFFFF,
    #FFF8E8
    );

    border-radius:35px;

    padding:45px;

    height:100%;

    border:2px solid rgba(244,180,0,.15);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    position:relative;

    overflow:hidden;

}

.contact-info-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(244,180,0,.10);

    top:-80px;
    right:-80px;

}

.contact-info-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    rgba(142,20,20,.05);

    bottom:-60px;
    left:-60px;

}

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

.contact-title{

    position:relative;

    z-index:2;

    margin-bottom:35px;

}

.contact-title span{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:
    rgba(142,20,20,.08);

    color:#8E1414;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:12px;

}

.contact-title h3{

    font-size:36px;

    color:#8E1414;

    font-weight:700;

    margin-bottom:10px;

}

.contact-title p{

    color:#666666;

    line-height:1.8;

    margin-bottom:0;

}

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

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

.contact-item:last-child{

    margin-bottom:0;

}

/* ==========================================
   ICON
========================================== */

.contact-icon{

    width:60px;
    height:60px;

    min-width:60px;

    border-radius:18px;

    display:flex;

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

    background:
    linear-gradient(
    135deg,
    #8E1414,
    #B71C1C
    );

    color:#ffffff;

    font-size:22px;

    box-shadow:
    0 15px 30px rgba(142,20,20,.20);

}

/* ==========================================
   TEXT
========================================== */

.contact-text h5{

    color:#8E1414;

    font-size:20px;

    font-weight:700;

    margin-bottom:6px;

}

.contact-text p{

    color:#555555;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/* ==========================================
   BUTTONS
========================================== */

.contact-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

    position:relative;

    z-index:2;

}

.call-btn,
.contact-whatsapp-btn{

    flex:1;

    height:56px;

    border-radius:60px;

    display:flex;

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

    gap:10px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.call-btn{

    background:
    linear-gradient(
    135deg,
    #8E1414,
    #B71C1C
    );

    color:#ffffff;

}

.contact-whatsapp-btn{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #1EBE5D
    );

    color:#ffffff;

}

.call-btn:hover,
.contact-whatsapp-btn:hover{

    transform:
    translateY(-5px);

    color:#ffffff;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .premium-map-card{

        min-height:450px;

        margin-bottom:30px;

    }

    .premium-map-card iframe{

        min-height:450px;

    }

    .contact-info-card{

        padding:35px;

    }

}

@media(max-width:768px){

    .contact-location-section{

        padding:90px 0;

    }

    .contact-location-section .section-heading h2{

        font-size:2.5rem;

    }

    .contact-title h3{

        font-size:28px;

    }

    .contact-buttons{

        flex-direction:column;

    }

}

@media(max-width:576px){

    .contact-info-card{

        padding:28px;

    }

    .contact-location-section .section-heading h2{

        font-size:2rem;

    }

    .contact-title h3{

        font-size:24px;

    }

    .contact-icon{

        width:50px;
        height:50px;

        min-width:50px;

        font-size:18px;

    }

}

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

.premium-footer{

    background:
    linear-gradient(
    180deg,
    #050B14,
    #071423,
    #050B14
    );

    padding:90px 0 25px;

    position:relative;

    overflow:hidden;

}

/* Glow */

.premium-footer::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,171,228,.08);

    border-radius:50%;

    filter:blur(120px);

    top:-180px;
    right:-150px;

}

/* Headings */

.premium-footer h4{

    color:#ffffff;

    margin-bottom:25px;

    font-size:22px;

    font-weight:600;

}

/* Brand */

.footer-brand img{

    width:95px;

    margin-bottom:20px;

}

.footer-brand h3{

    color:#ffffff;

    margin-bottom:15px;

}

.footer-brand p{

    color:
    rgba(255,255,255,.70);

    line-height:1.9;

}

/* Links */

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:
    rgba(255,255,255,.70);

    transition:.4s;

    position:relative;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-4px;

    width:0;

    height:2px;

    background:#00ABE4;

    transition:.4s;

}

.footer-links a:hover{

    color:#00ABE4;

    padding-left:8px;

}

.footer-links a:hover::after{

    width:100%;

}

/* Contact */

.contact-list{

    list-style:none;

    padding:0;

}

.contact-list li{

    color:
    rgba(255,255,255,.75);

    margin-bottom:18px;

    display:flex;

    gap:12px;

}

.contact-list i{

    color:#00ABE4;

}

/* Social */

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:60px;

}

.footer-social a{

    width:52px;
    height:52px;

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

    border-radius:50%;

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

    color:#ffffff;

    font-size:20px;

    transition:.4s;

}

.footer-social a:hover{

    background:#00ABE4;

    color:#fff;

    transform:
    translateY(-6px);

    box-shadow:
    0 10px 30px rgba(0,171,228,.45);

}

/* Bottom */

.footer-bottom{

    text-align:center;

    margin-top:40px;

    padding-top:25px;

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

}

.footer-bottom p{

    color:
    rgba(255,255,255,.65);

    margin:0;

}

/* Responsive */

@media(max-width:768px){

    .premium-footer{

        text-align:center;

    }

    .contact-list li{

        justify-content:center;

    }

}



/* ==========================================
   WHATSAPP FLOAT BUTTON
========================================== */

.whatsapp-float{

    position:fixed;

    left:25px;
    bottom:25px;

    width:60px;
    height:60px;

    display:flex;

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

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    font-size:28px;

    z-index:9999;

    box-shadow:
        0 12px 30px rgba(37,211,102,.35);

    transition:all .35s ease;

    animation:pulseWhatsapp 2s infinite;

}

.whatsapp-float:hover{

    color:#ffffff;

    transform:
        translateY(-6px)
        scale(1.08);

    box-shadow:
        0 18px 40px rgba(37,211,102,.45);

}

.whatsapp-float:active{

    transform:scale(.95);

}

@keyframes pulseWhatsapp{

    0%{

        box-shadow:
            0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:
            0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:
            0 0 0 0 rgba(37,211,102,0);

    }

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:576px){

    .whatsapp-float{

        width:55px;
        height:55px;

        left:15px;
        bottom:20px;

        font-size:24px;

    }

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    section{
        padding:80px 0;
    }

    .contact-card{
        padding:35px;
    }

    .map-card iframe{
        height:400px;
    }

    .footer-brand,
    .branch-footer h4,
    .footer-links{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

}

@media(max-width:768px){

    .process-card{

        flex-direction:column;

        text-align:center;

    }

    .admission-form-card{

        padding:30px;

    }

    .faculty-image{

        height:260px;

    }

    .contact-card{

        padding:30px;

    }

}

@media(max-width:576px){

    .map-card iframe{

        height:320px;

    }

    .scroll-top{

        width:50px;
        height:50px;

    }

    /* .whatsapp-float{

        width:55px;
        height:55px;

        font-size:24px;

    } */

    .contact-card{
        padding:25px;
    }

}
/* Premium Section Spacing */

.principal-section,
.about-campus,
.facilities-section,
.branch-gallery,
.achievements-section,
.faculty-section,
.admission-section,
.location-section,
.contact-section{

    padding:140px 0;

}

/* Bigger heading spacing */

.section-heading{

    margin-bottom:90px;

}

/* More breathing room after cards */

.principal-card,
.contact-card,
.map-card{

    margin-top:20px;

}
.section-heading h2{
    font-size:3.5rem;
    line-height:1.2;
}


/* ==========================================
   APPLY ADMISSION BUTTON
========================================== */

.admission-btn{

    position:fixed;

    right:25px;

    bottom:90px;

    z-index:999;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(
    135deg,
    #FFD54A,
    #F4B400
    );

    color:#7A0F0F;

    font-weight:700;

    font-size:15px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.20);

    transition:.4s;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

}

.admission-btn i{

    font-size:18px;

}

.admission-btn:hover{

    color:#7A0F0F;

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);

}

@media(max-width:768px){

    .admission-btn{

        right:15px;

        bottom:80px;

        padding:12px 18px;

        font-size:13px;

    }

}

/* ==========================================
   FLOATING BACK TO TOP BUTTON
========================================== */

.back-to-top-float{

    position:fixed;

    left:25px;

    bottom:110px;      /* Above WhatsApp button */

    width:60px;
    height:60px;

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

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #FFD54A,
    #F4B400
    );

    color:#7A0F0F;

    font-size:28px;

    text-decoration:none;

    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

    transition:all .35s ease;

    z-index:9999;

}

/* Hover */

.back-to-top-float:hover{

    transform:
    translateY(-8px)
    scale(1.08);

    background:
    linear-gradient(
    135deg,
    #FFE98A,
    #FFD54A
    );

    color:#5A0C0C;

    box-shadow:
    0 20px 45px rgba(244,180,0,.45);

}

/* Active */

.back-to-top-float:active{

    transform:scale(.95);

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .back-to-top-float{

        width:54px;
        height:54px;

        left:18px;

        bottom:95px;      /* Above mobile WhatsApp */

        font-size:24px;

    }

}

@media(max-width:576px){

    .back-to-top-float{

        width:50px;
        height:50px;

        left:15px;

        bottom:90px;

        font-size:22px;

    }

}