/*=========================================================
THE INTELLECT INSIGHT
STYLE.CSS
=========================================================*/

/*==========================
ROOT
==========================*/

:root{

    --primary:#123B5D;
    --secondary:#A4221F;
    --light:#ffffff;
    --dark:#1a1a1a;
    --text:#4b4b4b;
    --border:#e8e8e8;

    --heading:'Poppins',sans-serif;
    --body:'Poppins',sans-serif;
    --tagline:'Cormorant Garamond',serif;
    --contact:'Oswald',sans-serif;
	
	--slc-primary:#12364E;
    --slc-secondary:#8D221B;
    --slc-white:#ffffff;
    --slc-light:#f5f6fa;
    --slc-border:#12364E;
    --slc-text:#222222;

}

/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body);
    color:var(--text);
    background:#f5f5f5;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/*==========================
HEADER
==========================*/

#header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s;
    padding:18px 0;
	background:rgba(18,59,93,.16);

}

#header.sticky{

    background:rgba(18,59,93,.16);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 35px rgba(0,0,0,.12);
    padding:10px 0;

}

.navbar-brand img{

    height:70px;
    transition:.3s;

}

#header.sticky .navbar-brand img{

    height:58px;

}

.nav-link{

    color:#a4221f;
    font-size:15px;
    font-weight:600;
    margin-left:28px;
    transition:.3s;
    position:relative;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#fff;
    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

/*==========================
BUTTON
==========================*/

.btn-theme{

    background:var(--secondary);
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn-theme:hover{

    background:#861817;
    color:#fff;
    transform:translateY(-4px);

}

/*==========================
MOBILE MENU
==========================*/

.navbar-toggler{

    border:none;
    box-shadow:none;

}

.navbar-toggler span{

    width:28px;
    height:2px;
    display:block;
    background:#fff;
    margin:6px 0;

}

.offcanvas{

    width:320px;

}

.mobile-logo{

    height:55px;

}

.offcanvas-body ul li{

    margin:18px 0;

}

.offcanvas-body ul li a{

    color:#123B5D;
    font-size:18px;
    font-weight:600;

}

.mobile-btn{

    display:inline-block;
    margin-top:25px;
    background:var(--secondary);
    color:#fff !important;
    padding:12px 28px;
    border-radius:40px;

}

/*==========================
HERO
==========================*/

.hero-section{
    position:relative;
    min-height:100vh;
    background:linear-gradient(180deg,#f8f8f8,#f0f0f0);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:120px 0 60px;
}

/*==========================
DECORATIVE SHAPES
==========================*/

.shape-top-left,
.shape-top-right,
.shape-bottom-left,
.shape-bottom-right{
    position:absolute;
    transform:rotate(45deg);
    z-index:0;
}

.shape-top-left{
    width:260px;
    height:260px;
    background:var(--primary);
    top:-130px;
    left:-130px;
}

.shape-top-right{
    width:230px;
    height:230px;
    background:var(--secondary);
    top:-115px;
    right:-115px;
}

.shape-bottom-left{
    width:220px;
    height:220px;
    background:#d9d9d9;
    bottom:-110px;
    left:-110px;
}

.shape-bottom-right{
    width:270px;
    height:270px;
    background:var(--primary);
    bottom:-135px;
    right:-135px;
}

/*==========================
HEXAGON
==========================*/

.hero-hexagon{
    position:relative;
    z-index:2;
    width:min(760px,90%);
    background:#fff;
    margin:0 auto;
    padding:90px 50px;
    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.hero-content{
    text-align:center;
}

.hero-logo img{
    width:170px;
    max-width:100%;
    height:auto;
    margin:0 auto 30px;
    display:block;
}

.hero-content h1{
    font-family:var(--heading);
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:18px;
}

.hero-content h1 sup{
    font-size:18px;
    top:-1.1em;
}

.hero-content p{
    font-family:var(--tagline);
    font-size:26px;
    color:#7b7b7b;
    margin:0;
	font-weight:600
}

/*==========================
BOTTOM CONTACT
==========================*/

.hero-contact{
    position:relative;
    width:100%;
    z-index:5;
    margin-top:50px;
}

.hero-email{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.hero-email a{
    color:var(--primary);
    font-family:var(--contact);
    font-size:18px;
    text-decoration:none;
    letter-spacing:.5px;
    transition:.3s;
}

.hero-email a:hover{
    color:var(--secondary);
}

.instagram{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.instagram:hover{
    color:var(--secondary);
}

/*==========================
TABLET
==========================*/

@media (max-width:991px){

.hero-section{
    min-height:auto;
    padding:100px 0 50px;
}

.hero-hexagon{
    width:90%;
    padding:70px 35px;
}

.hero-logo img{
    width:120px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:44px;
}

.hero-content p{
    font-size:24px;
}

.hero-contact{
    margin-top:40px;
    text-align:center;
}

.hero-email{
    align-items:center;
    margin-bottom:20px;
}

}

/*==========================
MOBILE
==========================*/

@media (max-width:767px){

.hero-section{
    padding:85px 0 40px;
}

.hero-hexagon{
    width:95%;
    padding:50px 20px;
    clip-path:none;
    border-radius:25px;
}

.hero-logo img{
    width:85px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:30px;
    line-height:1.2;
    margin-bottom:10px;
}

.hero-content h1 sup{
    font-size:10px;
}

.hero-content p{
    font-size:16px;
    line-height:1.5;
}

.hero-contact{
    margin-top:30px;
}

.hero-email{
    align-items:center;
    gap:8px;
}

.hero-email a{
    font-size:13px;
    text-align:center;
    word-break:break-word;
}

.instagram{
    justify-content:center;
    font-size:15px;
    margin-top:15px;
}

.shape-top-left{

    width:150px;
    height:150px;
    top:-75px;
    left:-75px;
}

.shape-top-right{
    width:140px;
    height:140px;
    top:-70px;
    right:-70px;
}

.shape-bottom-left{
    width:140px;
    height:140px;
    bottom:-70px;
    left:-70px;
}

.shape-bottom-right{
    width:170px;
    height:170px;
    bottom:-85px;
    right:-85px;
}

}

/*==========================
SMALL MOBILE
==========================*/

@media (max-width:480px){

.hero-content h1{
    font-size:26px;
}

.hero-content p{
    font-size:14px;
}

.hero-email a{
    font-size:12px;
}

.instagram{
    font-size:14px;
}

}


@media(max-width:767px){
#header {
  background: rgba(255,255,255,.16);
}
.hero-content{
    padding-top:30px;
}

.hero-content p{
    margin-top:12px;
    font-size:20px;
}
#header.sticky .navbar-brand img {
  height: 50px;
}
}
@media (max-width:991px){

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand{
    flex:1;
    margin-right:15px;
}

.navbar-toggler{
    flex-shrink:0;
    margin-left:auto;
}

}

/*=========================================================
ABOUT SECTION
=========================================================*/

.about-section{
    position:relative;
    padding:120px 0;
    background:#f7f7f7;
    overflow:hidden;
}

/* Background Pattern */

.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(18,59,93,.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(164,34,31,.05) 2px, transparent 2px);
    background-size:60px 60px;
    pointer-events:none;
}

/*==========================
SECTION TITLE
==========================*/

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.title-ribbon{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:18px 70px;
    border-radius:60px;
    position:relative;
    box-shadow:0 20px 45px rgba(18,59,93,.18);
}

.title-ribbon::before,
.title-ribbon::after{
    content:"";
    position:absolute;
    top:50%;
    width:28px;
    height:28px;
    background:var(--secondary);
    transform:translateY(-50%) rotate(45deg);
}

.title-ribbon::before{
    left:-14px;
}

.title-ribbon::after{
    right:-14px;
}

.title-ribbon h2{
    margin:0;
    font-size:34px;
    font-weight:800;
    color:#fff;
    text-transform:uppercase;
    line-height:1.25;
}

.title-ribbon span{
    display:block;
    color:#ffd36a;
}

/*==========================
CONTENT
==========================*/

.about-content{
    text-align:center;
    max-width:980px;
    margin:auto;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.about-content strong{
    color:var(--primary);
}

/*==========================
FEATURE LIST
==========================*/

.feature-list{
    margin-top:10px;
}

.feature-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:22px;
    font-size:17px;
    line-height:1.8;
    color:#444;
}

.feature-list i{
    color:var(--secondary);
    margin-top:6px;
    font-size:20px;
}

.feature-list strong{
    color:var(--primary);
}

/*==========================
INFO CARDS
==========================*/

.info-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.icon-box{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#1d5d8c);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    transition:.35s;
}

.info-card:hover .icon-box{
    transform:rotate(360deg);
    background:linear-gradient(135deg,var(--secondary),#c53934);
}

.info-card h4{
    font-size:22px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.info-card p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .title-ribbon{
        padding:16px 35px;
    }

    .title-ribbon h2{
        font-size:26px;
    }

    .feature-list{
        margin-bottom:20px;
    }

}

@media (max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .title-ribbon{
        width:100%;
        border-radius:20px;
        padding:18px 20px;
    }

    .title-ribbon h2{
        font-size:21px;
    }

    .about-content p{
        font-size:16px;
    }

    .feature-list li{
        font-size:15px;
    }

    .info-card{
        padding:30px 20px;
    }

    .info-card h4{
        font-size:20px;
    }

}

/*=========================================================
GALLERY
=========================================================*/

.gallery-section{

    position:relative;
    padding:120px 0;
    background:#f4f4f4;

}

.gallery-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
	text-align:center;

}
.gallery-card h5{
    margin:8px 0 12px;
    font-size:25px;
    font-weight:600;
    line-height:1.2;
	color: #a4221f;
}
.gallery-card:hover{

    transform:translateY(-10px);

}

.gallery-image{

    position:relative;
    overflow:hidden;

}

.gallery-image::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:10px;
    height:100%;
    background:var(--secondary);
    z-index:2;

}

.gallery-image::after{

    content:"";
    position:absolute;
    right:0;
    top:0;
    width:10px;
    height:100%;
    background:var(--primary);
    z-index:2;

}

.gallery-image img{

    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

@media(max-width:991px){

.gallery-section{

padding:90px 0;

}

.gallery-image img{

height:280px;

}

}

@media(max-width:767px){

.gallery-section{

padding:70px 0;

}

.gallery-image img{

height:240px;

}

}

/*=========================================================
COMPETITIVE EXAM
=========================================================*/

.exam-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#f7f7f7,#ececec);
    overflow:hidden;
}

/* Decorative Background */

.exam-section::before{
    content:"";
    position:absolute;
    left:-150px;
    top:-120px;
    width:350px;
    height:350px;
    background:rgba(18,59,93,.06);
    transform:rotate(45deg);
}

.exam-section::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:420px;
    height:420px;
    background:rgba(164,34,31,.05);
    transform:rotate(45deg);
}

/* Header */

.exam-header{
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.exam-logo{
    width:120px;
    margin:auto;
    margin-bottom:20px;
}

.exam-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:8px;
}

.exam-header p{
    color:#666;
    font-size:18px;
}

/* Subject Ribbon */

.subject-ribbon{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin:45px 0;
}

.subject-ribbon span{
    background:var(--primary);
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.subject-ribbon span:hover{
    background:var(--secondary);
    transform:translateY(-4px);
}

/* Main Title */

.exam-title{
    text-align:center;
    margin-bottom:50px;
}

.exam-title h3{
    font-size:50px;
    font-weight:800;
    color:var(--primary);
}

.exam-title span{
    display:block;
    color:var(--secondary);
}

/* Winner Banner */

.winner-banner{
    max-width:450px;
    margin:0 auto 70px;
    background:var(--secondary);
    color:#fff;
    text-align:center;
    padding:18px;
    border-radius:60px;
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
}

/* Grade Block */

.grade-block{
    margin-bottom:60px;
}

.grade-title{
    text-align:center;
    color:var(--primary);
    font-size:34px;
    font-weight:700;
    margin-bottom:35px;
}

/* Prize Card */

.prize-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:6px solid var(--primary);
}

.prize-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.prize-card.first{
    border-color:#d4af37;
}

.prize-card.second{
    border-color:#c0c0c0;
}

.prize-card.third{
    border-color:#cd7f32;
}

.rank{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin:0 auto 20px;
}

.first .rank{
    background:#d4af37;
}

.second .rank{
    background:#bdbdbd;
}

.third .rank{
    background:#cd7f32;
}

.prize-card h5{
    font-size:24px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.prize-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/* Quote */

.exam-quote{
    margin-top:70px;
    text-align:center;
}

.exam-quote blockquote{
    max-width:900px;
    margin:auto;
    font-family:var(--tagline);
    font-size:34px;
    font-style:italic;
    color:var(--primary);
}

/* Responsive */

@media(max-width:991px){

    .exam-section{
        padding:90px 0;
    }

    .exam-header h2{
        font-size:34px;
    }

    .exam-title h3{
        font-size:38px;
    }

    .winner-banner{
        font-size:22px;
    }

}

@media(max-width:767px){

    .exam-section{
        padding:70px 0;
    }

    .exam-header h2{
        font-size:28px;
    }

    .exam-title h3{
        font-size:30px;
    }

    .grade-title{
        font-size:28px;
    }

    .winner-banner{
        font-size:18px;
        padding:14px;
    }

    .exam-quote blockquote{
        font-size:24px;
    }

}

/*=========================================================
BOTTOM CTA
=========================================================*/

.exam-bottom{

    margin-top:80px;
    padding:60px;
    background:#fff;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.books-image{

    max-width:250px;
    transition:.4s;

}

.books-image:hover{

    transform:translateY(-8px);

}

.quote-box h3{

    font-size:40px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;

}

.quote-box p{

    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;

}

/*=========================================================
FOOTER
=========================================================*/

.footer{

    background:#123B5D;
    color:#fff;
    padding:30px 0;

}

.footer p{

    margin:0;

}

.footer a{

    color:#fff;
    margin-left:25px;
    transition:.3s;

}

.footer a:hover{

    color:#FFD54F;

}

@media(max-width:767px){

.exam-bottom{

padding:35px 25px;

}

.quote-box{

text-align:center;
margin-top:30px;

}

.quote-box h3{

font-size:30px;

}

.footer{

text-align:center;

}

.footer a{

display:inline-block;
margin:10px;

}

}


.slc_new_section{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    padding:70px 0 90px;
    font-family:'Montserrat',sans-serif;
}

/*==============================
BACKGROUND SHAPES
==============================*/

.slc_new_bg_shape{
    position:absolute;
    z-index:0;
    pointer-events:none;
}

.slc_new_bg_left{
    width:340px;
    height:340px;
    left:-170px;
    top:-140px;
    background:#eef1f6;
    transform:rotate(45deg);
}

.slc_new_bg_right{
    width:320px;
    height:320px;
    right:-160px;
    bottom:-140px;
    background:#d9dde5;
    transform:rotate(45deg);
}

.slc_new_bg_bottom_left{
    width:260px;
    height:260px;
    left:-130px;
    bottom:-120px;
    background:#b98774;
    transform:rotate(45deg);
}

.slc_new_bg_bottom_right{
    width:250px;
    height:250px;
    right:-125px;
    bottom:-125px;
    background:#8d929e;
    transform:rotate(45deg);
}

.slc_new_section .container{
    position:relative;
    z-index:2;
}

/*==============================
HEADER
==============================*/

.slc_new_header{
    margin-bottom:35px;
}

.slc_new_small_title{
    color:var(--slc-secondary);
    font-size:26px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.slc_new_logo{
    max-width:470px;
    margin:auto;
}

.slc_new_grade{
    margin-top:20px;
    font-size:32px;
    color:var(--slc-secondary);
    font-weight:700;
    text-transform:uppercase;
}

.slc_new_grade sup{
    font-size:16px;
}

/*==============================
SUBJECT BOX
==============================*/

.slc_new_subject_box{
    max-width:940px;
    margin:35px auto;
    border:5px solid var(--slc-primary);
    padding:18px;
    background:#fff;
}

.slc_new_subject_box h2{
    margin:0;
    color:var(--slc-secondary);
    font-size:50px;
    text-align:center;
    font-weight:800;
    line-height:1.1;
}

/*==============================
TAGLINE
==============================*/

.slc_new_tagline{
    text-align:center;
    margin:40px 0;
}

.slc_new_tagline h3{
    color:var(--slc-secondary);
    font-size:34px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}

.slc_new_tagline h1{
    color:var(--slc-secondary);
    font-size:50px;
    font-weight:800;
    line-height:1;
}

/*==============================
WINNER BANNER
==============================*/

.slc_new_winner_banner{
    background:var(--slc-primary);
    color:#fff;
    text-align:center;
    font-size:44px;
    font-weight:800;
    padding:18px 30px;
    border-radius:14px;
    margin:50px auto 60px;
    max-width:1050px;
    text-transform:uppercase;
}

/*==============================
GRADE TITLE
==============================*/

.slc_new_grade_section{
    margin-bottom:70px;
}

.slc_new_grade_section h2{
    text-align:center;
    color:var(--slc-secondary);
    font-size:50px;
    font-weight:900;
    margin-bottom:45px;
    text-transform:uppercase;
}

/*=========================================================
  PRIZE CARDS
=========================================================*/

.slc_new_prize_card{
    position: relative;
    background: #fff;
    border: 4px solid var(--slc-primary);
    border-radius: 14px;
    padding: 65px 25px 30px;
    min-height: 430px;
    transition: all .35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: visible;
}
/*=========================================
Cash Prize Highlight
=========================================*/

/*=========================================
Cash Prize Highlight
=========================================*/

.slc_new_cash_prize{
    display:inline-block;
    width:100%;
    background:#8B231D;
    color:#fff;
    padding:6px 14px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    text-align:center;
    text-transform:uppercase;
    box-shadow:0 8px 20px rgba(139,35,29,.25);
    transition:.35s;
}

.slc_new_prize_card:hover .slc_new_cash_prize{
    background:#17384F;
}

.slc_new_prize_card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/*==============================
RANK TAB
==============================*/

.slc_new_rank{
    position:absolute;
    left:50%;
    top:-22px;
    transform:translateX(-50%);
    background:var(--slc-secondary);
    color:#fff;
    font-size:22px;
    font-weight:800;
    padding:10px 28px;
    border-radius:8px;
    letter-spacing:.5px;
    white-space:nowrap;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.slc_new_rank::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-8px;
    margin:auto;
    width:20px;
    height:20px;
    background:var(--slc-secondary);
    transform:rotate(45deg);
    z-index:-1;
}

/*==============================
CARD CONTENT
==============================*/

.slc_new_prize_card h3{
    color:var(--slc-primary);
    text-align:center;
    font-size:34px;
    font-weight:800;
    margin-bottom:25px;
}

.slc_new_prize_card ul{
    padding-left:20px;
    margin:0;
}

.slc_new_prize_card ul li{
    color:var(--slc-text);
    font-size:18px;
    line-height:1.8;
    margin-bottom:10px;
}

/* Trophy */

.slc_new_trophy{
    position:absolute;
    right:18px;
    bottom:15px;
    font-size:42px;
    opacity:.12;
    transition:.35s;
}

.slc_new_prize_card:hover .slc_new_trophy{
    opacity:1;
    transform:scale(1.1);
}

/*==============================
NOTICE
==============================*/

.slc_new_notice{
    background:#f7f7f7;
    border-left:6px solid var(--slc-secondary);
    padding:18px 24px;
    margin:60px auto;
    max-width:1100px;
    font-size:18px;
    line-height:1.8;
    color:#444;
    border-radius:8px;
}

/*==============================
FOOTER QUOTE
==============================*/

.slc_new_footer_quote{
    text-align:center;
    margin-top:70px;
}

.slc_new_footer_quote h4{
    color:var(--slc-secondary);
    font-size:30px;
    font-weight:800;
    line-height:1.5;
    text-transform:uppercase;
    max-width:950px;
    margin:0 auto 30px;
}

.slc_new_books{
    max-width:320px;
    margin:auto;
    transition:.4s ease;
}

.slc_new_books:hover{
    transform:translateY(-8px);
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width:1199px){

    .slc_new_subject_box h2{
        font-size:46px;
    }

    .slc_new_tagline h1{
        font-size:60px;
    }

    .slc_new_grade_section h2{
        font-size:52px;
    }

    .slc_new_winner_banner{
        font-size:40px;
    }

}

@media (max-width:991px){

    .slc_new_small_title{
        font-size:22px;
    }

    .slc_new_logo{
        max-width:340px;
    }

    .slc_new_subject_box h2{
        font-size:36px;
    }

    .slc_new_tagline h3{
        font-size:26px;
    }

    .slc_new_tagline h1{
        font-size:48px;
    }

    .slc_new_grade_section h2{
        font-size:42px;
    }

    .slc_new_winner_banner{
        font-size:30px;
        padding:16px 20px;
    }

    .slc_new_prize_card{
        min-height:auto;
    }

}

@media (max-width:767px){

    .slc_new_section{
        padding:50px 0 70px;
    }

    .slc_new_small_title{
        font-size:18px;
    }

    .slc_new_grade{
        font-size:22px;
    }

    .slc_new_subject_box{
        padding:14px;
        border-width:3px;
    }

    .slc_new_subject_box h2{
        font-size:26px;
        line-height:1.3;
    }

    .slc_new_tagline h3{
        font-size:20px;
    }

    .slc_new_tagline h1{
        font-size:34px;
    }

    .slc_new_winner_banner{
        font-size:22px;
        border-radius:10px;
    }

    .slc_new_grade_section h2{
        font-size:30px;
    }

    .slc_new_rank{
        font-size:18px;
        padding:8px 18px;
    }

    .slc_new_prize_card h3{
        font-size:28px;
    }

    .slc_new_prize_card ul li{
        font-size:16px;
    }

    .slc_new_footer_quote h4{
        font-size:22px;
    }

    .slc_new_books{
        max-width:220px;
    }
}

/*=========================================================
    SLC NEW ABOUT SECTION
=========================================================*/

.slc_new_about_section{
    position:relative;
    background:#ffffff;
    overflow:hidden;
    padding:90px 0 80px;
}

/*==========================
Background Shape
==========================*/

.slc_new_left_shape{
    position:absolute;
    left:0;
    top:0;
    width:340px;
    height:350px;
    background:#eef2f8;
    clip-path:polygon(0 0,100% 0,0 100%);
    z-index:0;
}

.slc_new_about_section .container{
    position:relative;
    z-index:2;
}

/*==========================
Ribbon
==========================*/

.slc_new_title_ribbon{
    display:inline-block;
    position:relative;
    background:#8b231d;
    color:#fff;
    font-size:34px;
    font-weight:700;
    padding:18px 38px;
    border:4px solid #17384f;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    margin-bottom:55px;
}

.slc_new_title_ribbon::before{

    content:"";
    position:absolute;
    inset:6px;
    border:2px solid rgba(255,255,255,.45);

}

/*==========================
Intro
==========================*/

.slc_new_intro{

    max-width:1180px;
    margin:0 auto 45px;

}

.slc_new_intro p{

    font-size:28px;
    line-height:1.55;
    color:#1f1f1f;
    font-weight:400;

}

.slc_new_intro strong{

    font-weight:800;
    color:#111;

}

/*==========================
Feature List
==========================*/

.slc_new_feature_list{

    max-width:1180px;
    margin:auto;

}

.slc_new_feature{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;

}

.slc_new_star{

    color:#8b231d;
    font-size:34px;
    line-height:1;
    margin-top:6px;
    flex-shrink:0;

}

.slc_new_feature p{

    margin:0;
    font-size:24px;
    line-height:1.55;
    color:#222;

}

.slc_new_feature strong{

    font-weight:800;

}

/*==========================
Info Boxes
==========================*/

.slc_new_info_box{

    background:#fff;
    border:3px solid #8b231d;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.slc_new_info_box:hover{

    transform:translateY(-8px);

}

.slc_new_box_title{

    background:#17384f;
    color:#fff;
    font-size:24px;
    font-weight:500;
    padding:14px;

}

.slc_new_info_box h3{

    margin:24px;
    color:#8b231d;
    font-size:34px;
    line-height:1.3;
    font-weight:800;

}

/*=========================================================
Responsive
=========================================================*/

@media (max-width:1200px){

.slc_new_intro p{

font-size:24px;

}

.slc_new_feature p{

font-size:22px;

}

.slc_new_title_ribbon{

font-size:30px;

}

}

@media (max-width:992px){

.slc_new_about_section{

padding:70px 0;

}

.slc_new_left_shape{

width:220px;
height:220px;

}

.slc_new_title_ribbon{

font-size:24px;
padding:15px 28px;

}

.slc_new_intro p{

font-size:21px;

}

.slc_new_feature{

gap:14px;

}

.slc_new_feature p{

font-size:19px;

}

.slc_new_star{

font-size:28px;

}

.slc_new_box_title{

font-size:20px;

}

.slc_new_info_box h3{

font-size:28px;

}

}

@media (max-width:768px){

.slc_new_about_section{

padding:60px 0;

}

.slc_new_left_shape{

width:160px;
height:160px;

}

.slc_new_title_ribbon{

display:block;
font-size:20px;
padding:14px;
margin-bottom:40px;

}

.slc_new_intro p{

font-size:18px;
line-height:1.6;

}

.slc_new_feature{

align-items:flex-start;
margin-bottom:20px;

}

.slc_new_star{

font-size:22px;
margin-top:3px;

}

.slc_new_feature p{

font-size:17px;

}

.slc_new_box_title{

font-size:18px;
padding:12px;

}

.slc_new_info_box h3{

font-size:22px;
margin:18px;

}

}

/*=========================================================
CONTACT SECTION
=========================================================*/

.slc_new_contact_section{
    padding:100px 0;
    background:#f8f9fc;
}

.slc_new_contact_subtitle{
    color:#8b231d;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.slc_new_contact_title{
    font-size:46px;
    font-weight:800;
    color:#17384f;
    margin:15px 0;
}

.slc_new_contact_desc{
    max-width:700px;
    margin:0 auto 20px;
    color:#666;
    font-size:18px;
}

.slc_new_contact_card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-top:5px solid #8b231d;
}

.slc_new_contact_card:hover{
    transform:translateY(-8px);
}

.slc_new_contact_icon{
    width:75px;
    height:75px;
    background:#17384f;
    color:#fff;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.slc_new_contact_card h4{
    color:#17384f;
    font-weight:700;
    margin-bottom:18px;
}

.slc_new_contact_card a{
    display:block;
    color:#555;
    text-decoration:none;
    margin-bottom:8px;
    transition:.3s;
    word-break:break-word;
}

.slc_new_contact_card a:hover{
    color:#8b231d;
}

.slc_new_contact_card p{
    color:#555;
    margin:0;
    line-height:1.8;
}

@media(max-width:991px){

.slc_new_contact_section{
    padding:70px 0;
}

.slc_new_contact_title{
    font-size:36px;
}

}

@media(max-width:767px){

.slc_new_contact_title{
    font-size:30px;
}

.slc_new_contact_card{
    padding:30px 20px;
}

}

/*=========================================================
FLOATING BUTTONS
=========================================================*/

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

/* Back To Top */

.back-to-top{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#17384f;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.20);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:all .35s ease;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:#8b231d;
    transform:translateY(-5px);
}

/* WhatsApp */

.whatsapp-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    transition:.35s;
}

.whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.05);
    color:#fff;
}

/* Pulse Animation */

.whatsapp-btn::before{
    content:"";
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    z-index:-1;
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

0%{
    transform:scale(1);
    opacity:.5;
}

70%{
    transform:scale(1.6);
    opacity:0;
}

100%{
    opacity:0;
}

}

@media (max-width:767px){

.floating-buttons{
    right:18px;
    bottom:18px;
    gap:12px;
}

.back-to-top{
    width:48px;
    height:48px;
    font-size:18px;
}

.whatsapp-btn{
    width:54px;
    height:54px;
    font-size:30px;
}

.whatsapp-btn::before{
    width:54px;
    height:54px;
}

}

