﻿:root {
      --blue-light:  #002c99;
      --blue-mid:   #001a5a;
      --blue-dark: #001b66;
      --gold-light: #c78426;
      --gold:        #f5a623;
      --gold-dark:   #d4891a;
      --white:       #ffffff;
      --text-dark:   #1a1a1a;
      --topbar-bg:   #002374;
    }

/**======== Floating Right Buttons ===========**/
/*=========================
 FLOATING BUTTONS
=========================*/

.floating-links{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.float-btn{
    position:relative;
    display:flex;
    align-items:center;
   /* width:55px;*/
    height:55px;
    margin-bottom:10px;
    color:#000;
    text-decoration:none;
    border-radius:0 12px 12px 0;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.float-btn i{
    min-width:55px;
    text-align:center;
    font-size:20px;
}

.float-btn span{
    white-space:nowrap;
    font-size:14px;
    font-weight:600;
    opacity:1;
    padding-right:20px;
    transition:.3s;
}

/*.float-btn:hover{
    width:220px;
    color:#fff;
    text-decoration:none;
}

.float-btn:hover span{
    opacity:1;
}
*/

/* Admission */
.admission{
    background:#0d6efd;
}

/* Career */
.career{
    background:#fdf01e;
}

/* Hover Colors */
.admission:hover{
    background:#0b5ed7;
}

.career:hover{
    background:#0a1026;
}

/* New Badge */
.new-badge{
    position:absolute;
    top:-5px;
    right:5px;
    width:38px;
    z-index:2;
}

/* Mobile */
@media(max-width:768px){

    .float-btn{
        width:50px;
        height:50px;
    }

    .float-btn i{
        min-width:50px;
        font-size:18px;
    }

    .float-btn:hover{
        width:180px;
    }

    .float-btn span{
        font-size:13px;
    }

    .new-badge{
        width:30px;
    }
}
/**===== Floating Button Style END ======**/


/*=================== Notice Style =================*/

.notice-bar {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    border: 1px solid #e9e9e9;
}

.notice-title {
    min-width: 240px;
    background: linear-gradient(135deg,#002147,#003c7d);
    color: #fff;
    padding: 3px 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.notice-marquee {
    flex: 1;
    background: #fff;
    padding: 3px 0;
}

.notice-item{
    display:inline-flex;
    align-items:center;
    margin-right:50px;
}

.notice-date{
    color:#0a3d91;
    font-weight:700;
    font-size:14px;
    margin-right:10px;
}

.notice-date::before{
    content:"📅";
    margin-right:5px;
}

.notice-text{
    color:#333;
    font-size:15px;
    font-weight:500;
}

.notice-text::after{
    content:"|";
    color:#d4a017;
    margin-left:25px;
    font-weight:bold;
}

.bell-animation {
    color: #ffc107;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}


@media(max-width:768px){

    .notice-bar{
        flex-direction:column;
    }

    .notice-title{
        width:100%;
        min-width:100%;
        justify-content:center;
        padding:12px;
        font-size:16px;
    }

    .notice-marquee{
        width:100%;
        padding:10px 0;
    }

    .notice-item{
        font-size:13px;
    }

    .notice-date{
        padding:4px 8px;
        font-size:12px;
    }
}

/*============ Notice Style END ===================*/

/*============ Contact Strip ============*/
.contact-premium-section{
    position:relative;
    margin-top:-35px;
    z-index:100;
}

.premium-contact-card{
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#001b4d,#002d7a);
    border-radius:25px;

    padding:35px 25px;
    min-height:170px;

    display:flex;
    align-items:center;
    gap:20px;

    transition:.5s;
    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,.25),
    0 0 20px rgba(255,193,7,.15);
}

.premium-contact-card:before{
    content:'';
    position:absolute;
    width:130px;
    height:130px;

    background:rgba(255,193,7,.12);

    border-radius:50%;

    top:-80px;
    right:-80px;
}

.premium-contact-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 45px rgba(0,0,0,.35),
    0 0 35px rgba(255,193,7,.35);
}

.contact-icon{
    width:50px;
    height:50px;
    min-width:50px;

    border-radius:20px;

    background:linear-gradient(135deg,#ffc107,#ff9800);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    color:#001b4d;

    box-shadow:0 10px 25px rgba(255,193,7,.4);
}

.contact-content span{
    display:block;
    font-family:'Oswald', sans-serif;
    color:#ffc107;

    font-size:14px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:2px;

    margin-bottom:8px;
}

.contact-content h5{
    color:#fff;
    font-family:'Montserrat', sans-serif;
    font-size:15px;
    font-weight:600;
    line-height:1.6;
    margin:0;
}

@media(max-width:991px){

    .contact-premium-section{
        margin-top:30px;
    }

    .premium-contact-card{
        min-height:auto;
        padding:25px;
    }

    .contact-icon{
        width:65px;
        height:65px;
        min-width:65px;
        font-size:24px;
    }

    .contact-content h5{
        font-size:16px;
    }
}

/*============ Contact Strip END ============*/


/* ===== HERO CAROUSEL ===== */

#header-carousel {
    overflow: hidden;
}

#header-carousel .carousel-item {
    height: 620px;
    position: relative;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
}

#header-carousel .carousel-item.active img {
    transform: scale(1.08);
}

/* Overlay */
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.45));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Box */
.caption-content {
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.caption-content h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.caption-content h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Button */
.caption-content .btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
}

/* Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: #fff;
    opacity: .5;
}

.carousel-indicators .active {
    opacity: 1;
    background: #0d6efd;
}

/* Navigation */
.custom-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-arrow i {
    color: #fff;
    font-size: 28px;
}

.custom-arrow:hover
{
    background:#D59B37;
}

/* Tablet */
@media(max-width:991px)
{
    #header-carousel .carousel-item {
       /* height: 500px;*/
    }

    .caption-content h1 {
        font-size: 45px;
    }

    .caption-content h3 {
        font-size: 24px;
    }
}

/* Mobile */
@media(max-width:767px)
{
    #header-carousel .carousel-item {
        height: 260px;
    }

    .caption-content h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .caption-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .caption-content .btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .custom-arrow {
        width: 38px;
        height: 38px;
    }

    .custom-arrow i {
        font-size: 18px;
    }
}
/* ===== HERO CAROUSEL END ===== */

 
    /*=========================
 FEATURE STRIP
==========================*/
.feature-strip{
    position: relative;
    margin-top: -74px;
    z-index: 20;
    padding: 0 165px;
}

.feature-strip .row{
    max-width: 1100px;
    margin: auto;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.feature-box{
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 25px;
    transition: .4s;
    cursor: pointer;
}

.feature-box.light{
    background:#f3e6c4;
    color:#111;
}

.feature-box.green{
    background:#0a1026;
    color:#fff;
}

.feature-icon{
    font-size:38px;
    margin-right:20px;
    position:relative;
}

.feature-icon::after{
    content:'';
    position:absolute;
    right:-12px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:45px;
    background:rgba(255,255,255,.4);
}

.feature-box.light .feature-icon::after{
    background:rgba(0,0,0,.2);
}

.feature-content h4{
    font-size:16px;
    margin:0;
    font-weight:600;
    line-height:1.4;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box.green:hover{
    background:var(--blue-light);
}

.feature-box.light:hover{
    background:#ebdbb2;
}

/*=========================
 RESPONSIVE
==========================*/

@media(max-width:991px){

    .feature-strip{
        margin-top:0;
        padding:30px 15px;
    }

    .feature-box{
        min-height:100px;
    }

    .feature-content h4{
        font-size:20px;
    }
}

@media(max-width:767px){

    .feature-box{
        justify-content:flex-start;
        padding:20px;
        min-height:90px;
    }

    .feature-icon{
        font-size:30px;
        margin-right:15px;
    }

    .feature-content h4{
        font-size:18px;
    }
}

@media(max-width:575px){

    .feature-box{
        text-align:left;
    }

    .feature-content h4{
        font-size:17px;
    }
}


.feature-strip .row{
    margin-left:0;
    margin-right:0;
}

.feature-strip [class*="col-"]{
    padding-left:0;
    padding-right:0;
}
 /**============== Card Style END ============**/


.float-admission {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    z-index: 999;
    background: #dc2626;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
/********* == **********/
/*=========================
 ABOUT SCHOOL
=========================*/

.about-school-section{
    padding:90px 0;
    overflow:hidden;
}

.section-heading .sub-title{
    display:inline-block;
    color:#D59B37;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#1b1b1b;
    line-height:1.2;
    margin-bottom:25px;
}

.about-text{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

.about-highlights{
    display:flex;
    gap:20px;
    margin:35px 0;
    flex-wrap:wrap;
}

.highlight-box{
    background:#fff;
    min-width:140px;
    padding:20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.highlight-box:hover{
    transform:translateY(-8px);
}

.highlight-box h3{
    color:#D59B37;
    font-size:32px;
    font-weight:800;
    margin-bottom:5px;
}

.highlight-box span{
    font-size:14px;
    color:#666;
}

.btn-about{
    display:inline-block;
    background:#D59B37;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
}

.btn-about:hover{
    background:#0f3b7a;
    color:#fff;
    text-decoration:none;
}

/* Video */

.video-wrapper{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.video-wrapper iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

.video-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#D59B37;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    z-index:2;
}

/* Responsive */

@media(max-width:991px){

    .section-heading h2{
        font-size:38px;
    }

    .video-wrapper iframe{
        height:420px;
    }
}

@media(max-width:767px){

    .about-school-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:30px;
    }

    .about-highlights{
        gap:12px;
    }

    .highlight-box{
        min-width:110px;
        padding:15px;
    }

    .highlight-box h3{
        font-size:24px;
    }

    .video-wrapper iframe{
        height:260px;
    }
}

/************** END **********/
/* Social Media Icons */
/*
.social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.social-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:all .3s ease;
    font-size:18px;
}

.social-icon:hover{
    transform:translateY(-5px);
    color:#fff;
    text-decoration:none;
}

.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.youtube{
    background:#FF0000;
}

.twitter{
    background:#000;
}

.linkedin{
    background:#0A66C2;
}

.social-icon:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
*/

 /*=========================
   Floating Social Bar
=========================*/

.floating-social{
    position:fixed;
    top:50%;
    right:-118px;
    transform:translateY(-50%);
    z-index:9999;
}

.social-btn{
    display:flex;
    align-items:center;
    width:165px;
    height:48px;
    color:#fff;
    text-decoration:none;
    margin-bottom:3px;
    padding:0 15px;
    font-size:15px;
    font-weight:600;
    transition:all .4s ease;
}

.social-btn i{
    width:35px;
    font-size:18px;
}

.social-btn:hover{
    right:0;
    transform:translateX(-115px);
    color:#fff;
    text-decoration:none;
}

/* Colors */

.facebook{
    background:#1877f2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.youtube{
    background:#ff0000;
}

.twitter{
    background:#1da1f2;
}

.linkedin{
    background:#0077b5;
}
/*=== END ====***/

/*======= Video Gallery =======*/
.video-item{
    padding:10px;
}

.video-item iframe{
    width:100%;
    height:250px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

