*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
}

:root{
    --primary:#8B1A1A;
}

.topbar{
    background:var(--primary);
    color:#fff;
    padding:12px 0;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar-left span{
    margin-right:25px;
}

.topbar-right a{
    color:#fff;
    margin-left:15px;
}

/* ===========================
   DROPDOWN
=========================== */

.login-btn,
.apply-btn{
    height:50px;
    min-width:130px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.login-btn{
    border:1px solid var(--primary);
    color:var(--primary);
}

.apply-btn{
    background:var(--primary);
    color:#fff;
}


.sidebar-close{
    font-size:24px;
    cursor:pointer;
}

/* NOTICE BAR */

.notice-bar{
    background:#f7f3ed;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.notice-wrapper{
    display:flex;
    align-items:center;
    width:100%;
}

.notice-label{
    background:#8B1A1A;
    color:#fff;
    padding:8px 18px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:3px;
    margin-right:10px;
    flex-shrink:0;
}

.notice-marquee{
    flex:1;
    overflow:hidden;
}

.notice-marquee marquee{
    width:100%;
}

.notice-marquee a{
    color:#333;
    font-size:14px;
    text-decoration:none;
}

.notice-marquee a:hover{
    color:#8B1A1A;
}

.notice-bar .container{
    max-width:100%;
    padding:0;
}


/* LEGACY SECTION */

.legacy-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    color:#fff;
}

.legacy-bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.legacy-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.legacy-section .container{
    position:relative;
    z-index:2;
}

.section-tag{
    color:#d6b36c;
    letter-spacing:3px;
}

.legacy-content h2{
    font-size:58px;
    margin:20px 0;
}

.legacy-content h2 span{
    color:#d6b36c;
}

.legacy-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.legacy-box{
    padding:30px;
    border:1px solid rgba(214,179,108,.3);
    border-radius:20px;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.05);
}

.legacy-video-card{
    border-radius:30px;
    overflow:hidden;
    background:#111;
}

.legacy-video-card video{
    width:100%;
    height:354px;
    object-fit:cover;
}

.legacy-stats{
    display:flex;
    justify-content:space-around;
    padding:25px;
}

.legacy-stats h3{
    color:#d6b36c;
    font-size:42px;
}

.legacy-stats span{
    font-size:12px;
    letter-spacing:2px;
}



/* ==========================
PRESIDENT SECTION
========================== */

.president-section{
    padding:110px 0;
    background:#fff;
    position:relative;
}

.president-image{
    position:relative;
}

.president-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.president-content{
    padding-left:50px;
}

.section-badge{
    display:inline-block;
    padding:8px 22px;
    border:1px solid #d8c5aa;
    border-radius:30px;
    color:#8B1A1A;
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.president-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    font-family:Georgia,serif;
}

.president-content h2 span{
    color:#8B1A1A;
    font-style:italic;
}

.president-content p{
    font-size:17px;
    line-height:2;
    color:#666;
    margin-bottom:35px;
}

.president-signature img{
    width:180px;
    margin-bottom:30px;
}

.president-btn{
    display:inline-block;
    background:#8B1A1A;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    transition:.3s;
}

.president-btn:hover{
    background:#6d1414;
    color:#fff;
}


/* ==========================
EVENT SECTION
========================== */

.events-section{
    padding:100px 0;
    background:#faf8f4;
}

.event-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-image{
    position:relative;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.event-card:hover .event-image img{
    transform:scale(1.1);
}

.event-date{
    position:absolute;
    top:20px;
    left:20px;
    background:#8B1A1A;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
}

.event-content{
    padding:30px;
}

.event-content h4{
    font-size:26px;
    margin-bottom:20px;
    line-height:1.4;
}

.event-meta{
    margin-bottom:20px;
}

.event-meta span{
    color:#8B1A1A;
    font-weight:500;
}

.event-meta i{
    margin-right:8px;
}

.event-content p{
    color:#666;
    line-height:1.8;
}

.event-content a{
    display:inline-block;
    margin-top:15px;
    color:#8B1A1A;
    font-weight:600;
}

.event-content a i{
    margin-left:8px;
}

/* ==========================
LATEST NEWS
========================== */

.latest-news-section{
    padding:100px 0;
    background:#fff;
}

.news-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    border:1px solid #eee;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-image{
    position:relative;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.news-card:hover .news-image img{
    transform:scale(1.08);
}

.news-date{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#8B1A1A;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-size:14px;
}

.news-content{
    padding:30px;
}

.news-content h4{
    font-size:24px;
    line-height:1.5;
    margin-bottom:15px;
}

.news-content h4 a{
    color:#222;
}

.news-content h4 a:hover{
    color:#8B1A1A;
}

.news-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.read-more{
    color:#8B1A1A;
    font-weight:600;
}

.read-more i{
    margin-left:8px;
}

/* ==========================
GALLERY SECTION
========================== */

.gallery-section{
    padding:100px 0;
    background:#faf8f4;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.gallery-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
}

.gallery-overlay h4{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.gallery-overlay a{
    color:#d6b36c;
    font-weight:600;
}

/* ==========================
VIDEO GALLERY
========================== */

.video-gallery-section{
    padding:100px 0;
    background:#fff;
}

.video-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.video-card:hover{
    transform:translateY(-10px);
}

.video-frame iframe{
    width:100%;
    height:260px;
    border:none;
}

.video-content{
    padding:25px;
}

.video-content h4{
    font-size:22px;
    line-height:1.5;
    margin:0;
    color:#222;
}

/* ==========================
COUNTER SECTION
========================== */

.counter-section{
    padding:100px 0;
    background:linear-gradient(rgba(139,26,26,.92),rgba(139,26,26,.92)),
    url('../images/counter-bg.jpg');
    background-size:cover;
    background-position:center;
}

.counter-box{
    text-align:center;
    color:#fff;
    padding:40px 20px;
}

.counter-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.counter-icon i{
    font-size:36px;
    color:#fff;
}

.counter-box h2{
    font-size:55px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box h5{
    font-size:20px;
    letter-spacing:1px;
    margin:0;
}

/* ==========================
TESTIMONIAL SECTION
========================== */

.testimonial-section{
    padding:100px 0;
    background:#faf8f4;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    text-align:center;
    height:100%;
}

.testimonial-stars{
    margin-bottom:25px;
}

.testimonial-stars i{
    color:#d4af37;
    margin:0 3px;
}

.testimonial-card p{
    color:#666;
    line-height:2;
    font-size:17px;
    margin-bottom:35px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    color:#222;
}

.testimonial-user span{
    color:#8B1A1A;
    font-size:14px;
}



/*For Contact Us Page*/
/*==================================
CONTACT CHANNELS
==================================*/

.contact-channels-section{
    padding:100px 0;
    background:#FAF6EE;
}

.contact-channels-section .section-title{
    margin-bottom:60px;
}

.contact-channels-section .section-title span{
    color:#C9943B;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;
}

.contact-channels-section .section-title h2{
    font-size:55px;
    margin:20px 0;
    color:#111;
}

.contact-channels-section .section-title p{
    color:#666;
}

.channel-card{
    background:#fff;
    border:1px solid #eadfcf;
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:.4s;
}

.channel-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.channel-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#8B1A1A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.channel-label{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    color:#b89254;
    margin-bottom:15px;
}

.channel-card h4{
    color:#8B1A1A;
    margin-bottom:15px;
    font-size:24px;
}

.channel-card p{
    color:#666;
    line-height:1.8;
}

.channel-card a{
    color:#8B1A1A;
    font-weight:600;
}

@media(max-width:991px){

    .contact-channels-section{
        padding:70px 0;
    }

    .contact-channels-section .section-title h2{
        font-size:38px;
    }

}

/*==============================
OFFICE LOCATOR
==============================*/

.office-locator-section{
    padding:100px 0;
    background:#FAF6EE;
}

.section-badge{
    color:#C9943B;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.office-heading{
    font-size:58px;
    margin:15px 0 35px;
}

.office-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.office-tab{
    border:1px solid #e6d6c4;
    background:#fff;
    padding:12px 22px;
    border-radius:40px;
    cursor:pointer;
}

.office-tab.active{
    background:#8B1A1A;
    color:#fff;
}

.office-panel{
    display:none;
}

.office-panel.active{
    display:block;
}

.office-map iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:25px 25px 0 0;
}

.office-details-card{
    background:#fff;
    padding:35px;
    border-radius:0 0 25px 25px;
}

.office-details-card span{
    color:#C9943B;
    font-size:12px;
    letter-spacing:3px;
}

.office-details-card h4{
    margin:15px 0 25px;
}

.office-details-card p{
    margin-bottom:18px;
}

.office-hours{
    margin-top:30px;
    background:#faf4eb;
    padding:15px;
    border-radius:12px;
}

.premium-contact-form{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.premium-contact-form h3{
    margin-bottom:15px;
}

.premium-contact-form .form-control{
    height:60px;
    border-radius:15px;
    border:1px solid #eadfcf;
}

.premium-contact-form textarea{
    height:auto !important;
}

.send-btn{
    width:100%;
    border:none;
    background:#8B1A1A;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-weight:600;
}

.send-btn:hover{
    background:#6e1414;
}

/*==================================
CONTACT CTA
==================================*/

.contact-cta-section{
    padding:100px 0;
    background:
    linear-gradient(90deg,
    #5b0000 0%,
    #8B1A1A 50%,
    #2c1600 100%);
}

.contact-cta-content{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.contact-cta-content h2{
    color:#fff;
    font-size:56px;
    margin-bottom:20px;
}

.contact-cta-content p{
    color:rgba(255,255,255,.8);
    font-size:18px;
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{
    padding:18px 35px;
    border-radius:15px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.primary-btn{
    background:#C9943B;
    color:#111;
}

.primary-btn:hover{
    background:#ddb05d;
    transform:translateY(-5px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    background:#8B1A1A;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:768px){

    .contact-cta-content h2{
        font-size:36px;
    }

    .cta-btn{
        width:100%;
        justify-content:center;
    }

}


/*==================================
CONTACT FAQ
==================================*/

.contact-faq-section{
    padding:100px 0;
    background:#FAF6EE;
}

.faq-wrapper{
    max-width:950px;
    margin:auto;
}

.contact-faq-section .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:20px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.contact-faq-section .accordion-button{
    background:#fff;
    padding:28px 30px;
    font-size:18px;
    font-weight:600;
    color:#111;
    box-shadow:none !important;
}

.contact-faq-section .accordion-button:not(.collapsed){
    background:#8B1A1A;
    color:#fff;
}

.contact-faq-section .accordion-body{
    padding:30px;
    background:#fff;
    color:#666;
    line-height:1.9;
}

.contact-faq-section .accordion-button:focus{
    box-shadow:none;
}

.contact-faq-section .accordion-button::after{
    filter:brightness(0);
}

.contact-faq-section .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

@media(max-width:768px){

    .contact-faq-section{
        padding:70px 0;
    }

    .contact-faq-section .accordion-button{
        font-size:16px;
        padding:22px;
    }

}

/*==============================
LEADERSHIP SECTION
==============================*/

.leadership-section{
    background:#1A1209;
    padding:110px 0;
    position:relative;
    overflow:hidden;
}

.leadership-section:before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top,
    rgba(255,180,50,.08), transparent 60%);
}

.leadership-header{
    margin-bottom:70px;
}

.board-label{
    display:inline-block;
    color:#D6A84A;
    letter-spacing:4px;
    font-size:12px;
    margin-bottom:20px;
    position:relative;
}

.board-label:before,
.board-label:after{
    content:'';
    width:60px;
    height:1px;
    background:#D6A84A;
    position:absolute;
    top:50%;
}

.board-label:before{
    right:110%;
}

.board-label:after{
    left:110%;
}

.leadership-header h2{
    font-size:70px;
    color:#fff;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.leadership-header h2 span{
    color:#D6A84A;
    font-style:italic;
}

.leadership-header p{
    color:#b8b8b8;
    font-size:18px;
}

.gold-divider{
    width:250px;
    height:2px;
    background:linear-gradient(to right,
    transparent,#D6A84A,transparent);
    margin:30px auto 0;
}

.leader-card{
    border:1px solid rgba(214,168,74,.4);
    border-radius:25px;
    overflow:hidden;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(10px);
    transition:.4s;
}

.leader-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(214,168,74,.12);
}

.leader-image{
    height:350px;
    overflow:hidden;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.leader-card:hover img{
    transform:scale(1.08);
}

.leader-content{
    text-align:center;
    padding:28px 20px;
    background:rgba(0,0,0,.25);
}

.leader-content span{
    display:block;
    color:#D6A84A;
    letter-spacing:3px;
    font-size:11px;
    margin-bottom:10px;
}

.leader-content h4{
    color:#fff;
    font-size:28px;
    font-family:'Playfair Display',serif;
}

.leader-line{
    width:60px;
    height:2px;
    background:#D6A84A;
    margin:18px auto 0;
}

.leadership-btn{
    display:inline-block;
    padding:18px 40px;
    border:1px solid #D6A84A;
    border-radius:50px;
    color:#D6A84A;
    text-decoration:none;
    transition:.4s;
}

.leadership-btn:hover{
    background:#D6A84A;
    color:#111;
}

.leadership-section .swiper{
    padding-bottom:70px;
}

.leadership-section .swiper-button-next,
.leadership-section .swiper-button-prev{
    width:55px;
    height:55px;
    border:1px solid rgba(214,168,74,.4);
    border-radius:50%;
    color:#D6A84A;
}

.leadership-section .swiper-button-next:after,
.leadership-section .swiper-button-prev:after{
    font-size:18px;
}

.leadership-section .swiper-pagination-bullet{
    background:#666;
    opacity:1;
}

.leadership-section .swiper-pagination-bullet-active{
    background:#D6A84A;
}

@media(max-width:768px){

.leadership-header h2{
    font-size:45px;
}

.leader-image{
    height:280px;
}

}


/*==============================
HOME DISCIPLINES
==============================*/
.disciplines-section{
    padding:100px 0;
    background:#f7f2e4;
    position:relative;
}

.discipline-badge{
    display:inline-block;
    padding:12px 35px;
    border:1px solid #d9c8a5;
    border-radius:40px;
    color:#b8860b;
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.discipline-header h2{
    font-size:70px;
    font-family:'Playfair Display',serif;
    margin-bottom:25px;
}

.discipline-header h2 span{
    color:#8B1A1A;
    font-style:italic;
}

.discipline-header p{
    max-width:750px;
    margin:auto;
    color:#6f6558;
    font-size:18px;
    line-height:1.9;
    margin-bottom:70px;
}

.discipline-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

.discipline-card:hover{
    transform:translateY(-10px);
}

.discipline-top{
    height:140px;
    background:linear-gradient(135deg,#8B1A1A,#5a0000);
    position:relative;
}

.discipline-icon{
    width:110px;
    height:110px;
    background:#5a0000;
    border:4px solid #fff;
    border-radius:50%;
    position:absolute;
    left:50%;
    bottom:-55px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
}

.discipline-icon i{
    color:#FFD700;
    font-size:45px;
}

.discipline-content{
    padding:80px 35px 35px;
    text-align:center;
}

.discipline-content h3{
    font-size:38px;
    font-family:'Playfair Display',serif;
    color:#6b0f0f;
   margin-bottom:15px;
    min-height:auto;
}

.mini-line{
    width:70px;
    height:2px;
    background:#d4a54d;
    margin:20px auto;
}

.discipline-content ul{
    list-style:none;
    padding:0;
    margin:20px 0 0;
    min-height:110px;
}

.discipline-content ul li{
    margin-bottom:12px;
    color:#444;
    position:relative;
}

.discipline-content ul li:before{
    content:"✦";
    color:#d4a54d;
    margin-right:10px;
}

.discipline-footer{
    border-top:1px solid #f1ece2;
    padding:20px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.discipline-footer span{
    color:#555;
    font-size:15px;
}

.discipline-footer a{
    color:#8B1A1A;
    text-decoration:none;
    font-weight:600;
}

.view-all-btn{
    background:#8B1A1A;
    color:#fff;
    padding:18px 50px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    font-size:18px;
}

.view-all-btn:hover{
    color:#fff;
}

@media(max-width:991px){

.discipline-header h2{
    font-size:50px;
}

}

@media(max-width:768px){

.discipline-header h2{
    font-size:38px;
}

.discipline-content h3{
    font-size:28px;
}

}


/*================ EXAM PAGE ================*/

.exam-hero{
    padding:100px 0;
    background:#f8f4ea;
}

.exam-badge{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #e6d9be;
    border-radius:50px;
    color:#8B1A1A;
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:25px;
}

.exam-title{
    font-size:75px;
    font-family:'Playfair Display',serif;
    line-height:1.1;
    margin-bottom:25px;
}

.exam-title span{
    display:block;
    color:#8B1A1A;
    font-style:italic;
}

.exam-desc{
    color:#6c625c;
    line-height:2;
    font-size:18px;
}

.exam-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:40px;
}

.exam-stat-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
}

.exam-stat-box h3{
    color:#8B1A1A;
    font-size:42px;
}

.exam-btn{
    display:inline-block;
    margin-top:35px;
    background:#8B1A1A;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
}

.exam-btn:hover{
    color:#fff;
}

.exam-oval{
    height:520px;
    border:4px solid #d2a347;
    border-radius:50%/45%;
    overflow:hidden;
    display:flex;
}

.exam-panel{
    flex:1;
}

.exam-panel img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.exam-counter-section{
    background:#f8f4ea;
}

.exam-counter-box{
    background:linear-gradient(90deg,#7d0707,#9f0d0d);
    border-radius:25px;
    padding:35px;
}

.counter-item{
    text-align:center;
    color:#fff;
}

.counter-item i{
    font-size:40px;
    color:#ffcc4d;
    margin-bottom:15px;
}

.counter-item h3{
    font-size:36px;
}

.overview-section{
    background:#f8f4ea;
    padding:100px 0;
}

.overview-badge{
    color:#d6a144;
    letter-spacing:4px;
    font-size:12px;
}

.overview-section h2{
    font-size:58px;
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.overview-content{
    border-left:4px solid #8B1A1A;
    padding-left:30px;
}

.overview-content p{
    line-height:2;
    color:#6d615a;
}

.exam-feature-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:20px;
    display:flex;
    gap:20px;
}

.exam-feature-card i{
    font-size:35px;
    color:#d8a236;
}

@media(max-width:768px){

.exam-title{
    font-size:45px;
}

.exam-stats{
    grid-template-columns:repeat(2,1fr);
}

.exam-oval{
    margin-top:40px;
    height:300px;
}

}


/*================ HISTORY PAGE ================*/
.history-hero{
    padding:120px 0 80px;
    text-align:center;
    background:#f7f2e4;
    position:relative;
    overflow:hidden;
}

.history-watermark{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:180px;
    font-weight:700;
    opacity:.03;
    white-space:nowrap;
}

.history-badge{
    color:#a31616;
    letter-spacing:4px;
    font-size:13px;
    display:block;
    margin-bottom:20px;
}

.history-hero h1{
    font-size:72px;
    font-family:'Playfair Display',serif;
}

.history-hero h1 span{
    color:#8B1A1A;
}

.history-hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    color:#6b6259;
}

.timeline-wrapper{
    position:relative;
    padding:80px 0;
}

.timeline-wrapper:before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:#a31616;
}

.timeline-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-bottom:100px;
    position:relative;
    align-items:center;
}

.timeline-year{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#8B1A1A;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    z-index:9;
    box-shadow:0 5px 25px rgba(0,0,0,.15);
}

.timeline-media img,
.timeline-media video{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.timeline-content{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 5px 30px rgba(0,0,0,.05);
}

.timeline-content h3{
    font-size:40px;
    color:#8B1A1A;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.timeline-content p{
    line-height:2;
    color:#666;
}

.history-quote-section{
    padding:80px 0;
    background:#f7f2e4;
}

.quote-box{
    background:linear-gradient(135deg,#6b0000,#8B1A1A);
    color:#fff;
    padding:70px;
    text-align:center;
    border-radius:30px;
}

.quote-box h3{
    font-size:40px;
    font-family:'Playfair Display',serif;
}

.history-stats{
    padding:80px 0;
    background:#f7f2e4;
}

.stat-box{
    background:#fff;
    border-radius:25px;
    text-align:center;
    padding:40px;
}

.stat-box h2{
    color:#8B1A1A;
    font-size:50px;
}

@media(max-width:991px){

.timeline-wrapper:before{
left:20px;
}

.timeline-item{
grid-template-columns:1fr;
padding-left:60px;
}

.timeline-year{
left:20px;
width:60px;
height:60px;
font-size:20px;
}

.timeline-content{
order:2;
}

.timeline-media{
order:1;
}

.history-hero h1{
font-size:45px;
}

}

/*================ SECRETARY PAGE ================*/
.secretary-page{
    background:#f9f5ef;
    padding:100px 0;
    position:relative;
}

.secretary-title h1{
    font-size:70px;
    color:#6d0f13;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

.sub-heading{
    letter-spacing:3px;
    color:#7b5b2d;
    font-weight:600;
}

.title-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.title-divider span{
    width:120px;
    height:2px;
    background:#d4b06d;
}

.secretary-hero-row{
    margin-top:70px;
}

.secretary-main-image img{
    width:100%;
    border-radius:25px;
    border:8px solid #fff;
    box-shadow:0 15px 50px rgba(0,0,0,.12);
}

.icon-circle{
    width:70px;
    height:70px;
    border:1px solid #c8a85b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a85b;
    font-size:28px;
    margin-bottom:25px;
}

.secretary-info h2{
    font-size:56px;
    color:#6d0f13;
    font-family:'Cormorant Garamond',serif;
}

.secretary-info h5{
    text-transform:uppercase;
    letter-spacing:1px;
    color:#444;
    line-height:1.8;
}

.small-line{
    width:70px;
    height:2px;
    background:#c8a85b;
    margin:30px 0;
}

.intro-message{
    font-size:18px;
    line-height:2;
}

.journey-section{
    margin-top:80px;
}

.journey-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.journey-card h3{
    color:#6d0f13;
    margin-bottom:30px;
    font-size:45px;
    font-family:'Cormorant Garamond',serif;
}

.quote-card{
    background:linear-gradient(135deg,#5a0000,#7d0000);
    padding:60px 40px;
    border-radius:25px;
    color:#fff;
    text-align:center;
    height:100%;
}

.quote-card i{
    font-size:55px;
    color:#d7b46d;
}

.quote-card p{
    font-size:30px;
    line-height:1.8;
    margin:30px 0;
    font-family:'Cormorant Garamond',serif;
}

.quote-author{
    background:#fff;
    color:#6d0f13;
    border-radius:20px;
    padding:25px;
}

.quote-author span{
    display:block;
    color:#666;
}

.legacy-banner{
    margin-top:70px;
    background:linear-gradient(90deg,#5a0000,#7d0000);
    padding:70px 30px;
    border-radius:20px;
    text-align:center;
    color:#fff;
}

.legacy-banner h2{
    font-family:'Cormorant Garamond',serif;
    font-size:46px;
}

.secretary-stats{
    margin-top:60px;
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.stat-box{
    text-align:center;
}

.stat-box i{
     width:65px;
    height:65px;
    line-height:65px;
    border-radius:50%;
    background:#8b0000;
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.stat-box h3{
    color:#6d0f13;
    font-size:42px;
    font-family:'Cormorant Garamond',serif;
}

@media(max-width:991px){

.secretary-title h1{
    font-size:42px;
}

.secretary-info h2{
    font-size:38px;
}

.journey-card,
.quote-card{
    margin-bottom:30px;
}

.quote-card p{
    font-size:24px;
}

}

/* ===================================================
SECRETARY DESK PREMIUM RESPONSIVE FIX
=================================================== */

.secretary-page{
    background:#f8f4ee;
    padding:80px 0;
    overflow:hidden;
}

.secretary-title{
    margin-bottom:70px;
}

.secretary-title h1{
    font-family:'Cormorant Garamond', serif;
    font-size:72px;
    font-weight:700;
    color:#6f0000;
    line-height:1.1;
}

.sub-heading{
    display:block;
    color:#b78a3f;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:15px;
}

.title-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:20px;
}

.title-divider span{
    width:120px;
    height:2px;
    background:#d4b170;
}

.title-divider i{
    color:#b78a3f;
}

.secretary-hero-row{
    margin-bottom:80px;
}

.secretary-main-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.15);
}

.secretary-info{
    padding-left:40px;
}

.icon-circle{
    width:80px;
    height:80px;
    border:2px solid #d4b170;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.icon-circle i{
    font-size:35px;
    color:#b78a3f;
}

.secretary-info h2{
    font-family:'Cormorant Garamond', serif;
    font-size:52px;
    color:#6f0000;
}

.secretary-info h5{
    color:#555;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-top:10px;
    line-height:1.8;
}

.small-line{
    width:100px;
    height:2px;
    background:#d4b170;
    margin:30px 0;
}

.intro-message{
    font-size:18px;
    line-height:2;
    text-align:justify;
}

/* JOURNEY SECTION */

.journey-section{
    margin-top:60px;
}

.journey-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.journey-card h3{
    font-family:'Cormorant Garamond', serif;
    color:#6f0000;
    font-size:52px;
    margin-bottom:30px;

    display:flex;
    gap:15px;
    align-items:center;

    flex-wrap:wrap;
}

.journey-card h3 i{
    color:#6f0000;
    font-size:42px;
}

.journey-card p,
.journey-card{
    font-size:18px;
    line-height:2;
    text-align:justify;
}

.signature{
    margin-top:35px;
    color:#6f0000;
    font-weight:600;
}

.quote-card{
    background:linear-gradient(135deg,#7a0000,#9d0000);
    border-radius:30px;
    color:#fff;
    text-align:center;
    padding:60px 35px;
    height:100%;
}

.quote-card i{
    font-size:60px;
    color:#d4b170;
    margin-bottom:30px;
}

.quote-card p{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    line-height:1.7;
    color:#fff;
}

.quote-author{
    background:#fff;
    color:#6f0000;
    padding:35px;
    border-radius:25px;
    margin-top:40px;
    font-size:28px;
    font-family:'Cormorant Garamond', serif;
}

.quote-author span{
    display:block;
    margin-top:10px;
    font-size:16px;
    color:#666;
    font-family:inherit;
}

/* BANNER */

.legacy-banner{
    margin:80px 0;
    background:linear-gradient(rgba(100,0,0,.85),rgba(100,0,0,.85)),
    url('../images/banner-bg.jpg');
    background-size:cover;
    border-radius:30px;
    padding:80px 40px;
    text-align:center;
}

.legacy-banner h2{
    color:#fff;
    font-family:'Cormorant Garamond', serif;
    font-size:52px;
}

.legacy-banner p{
    color:#fff;
    margin-top:20px;
    font-size:20px;
}

/* STATS */

.secretary-stats{
    margin-top:60px;
}

.stat-box{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    margin-bottom:25px;
}

.stat-box i{
    font-size:40px;
    color:#7a0000;
    margin-bottom:20px;
}

.stat-box h3{
    color:#7a0000;
    font-size:42px;
    font-family:'Cormorant Garamond', serif;
}

.stat-box p{
    margin:0;
}

/* ===================================================
MOBILE RESPONSIVE
=================================================== */

@media(max-width:991px){

    .secretary-page{
        padding:50px 0;
    }

    .secretary-title h1{
        font-size:48px;
    }

    .secretary-info{
        padding-left:0;
        margin-top:40px;
        text-align:center;
    }

    .small-line{
        margin:25px auto;
    }

    .secretary-info h2{
        font-size:42px;
    }

    .journey-card{
        padding:30px;
    }

    .journey-card h3{
        font-size:38px;
        justify-content:center;
        text-align:center;
    }

    .quote-card{
        margin-top:30px;
    }

    .quote-card p{
        font-size:28px;
    }

    .legacy-banner h2{
        font-size:36px;
    }

}

@media(max-width:767px){

    .secretary-title h1{
        font-size:34px;
    }

    .secretary-info h2{
        font-size:34px;
    }

    .journey-card h3{
        font-size:30px;
    }

    .journey-card,
    .quote-card{
        padding:25px;
    }

    .journey-card p,
    .intro-message{
        font-size:17px;
        text-align:justify;
    }

    .quote-card p{
        font-size:24px;
    }

    .quote-author{
        font-size:22px;
        padding:25px;
    }

    .legacy-banner{
        padding:50px 25px;
    }

    .legacy-banner h2{
        font-size:28px;
    }
.journey-card h3{
    flex-wrap:wrap;
}
.journey-card,
.intro-message{
    text-align:justify;
}
    .stat-box h3{
        font-size:32px;
    }
}




/*==================================================
MISSION & VALUES PAGE
==================================================*/

.mission-page{
    background:#faf8f4;
    overflow:hidden;
}

/* HERO */

.mission-hero-section{
    padding:90px 0 60px;
    position:relative;
}

.hero-subtitle{
    display:inline-block;
    color:#9d7b3f;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:20px;
    font-weight:600;
}

.mission-hero-content h1{
    font-family:'Cormorant Garamond', serif;
    font-size:72px;
    color:#6b0000;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-divider{
    display:flex;
    align-items:center;
    gap:15px;
    margin:25px 0;
}

.hero-divider span{
    width:120px;
    height:2px;
    background:#d8c08c;
}

.hero-divider i{
    color:#c7a557;
}

.mission-hero-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:35px;
    text-align:justify;
}

.mission-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#7b0000,#a10000);
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.mission-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.hero-image-wrapper img{
    width:100%;
    border-radius:0 0 0 120px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* FEATURE */

.mission-feature-section{
    padding:20px 0 80px;
}

.feature-main-card{
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.mission-box h2{
    font-family:'Cormorant Garamond', serif;
    color:#6b0000;
    font-size:46px;
    margin-bottom:20px;
}

.mission-box p{
    line-height:2;
    text-align:justify;
    color:#555;
}

.icon-wrap{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#faf3e7;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-wrap i{
    color:#c39b4f;
    font-size:28px;
}

.feature-card{
    text-align:center;
    padding:20px;
    border-left:1px solid #eee;
    height:100%;
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#faf3e7;
    margin:auto auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    color:#c39b4f;
    font-size:28px;
}

.feature-card h4{
    color:#6b0000;
    font-family:'Cormorant Garamond', serif;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

/* SECTION TITLE */

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-family:'Cormorant Garamond', serif;
    font-size:55px;
    color:#6b0000;
}

/* CORE VALUES */

.core-values-section{
    padding:80px 0;
}

.value-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
    height:100%;
    margin-bottom:25px;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-icon{
    width:80px;
    height:80px;
    background:#7b0000;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.value-icon i{
    color:#fff;
    font-size:30px;
}

.value-card h4{
    color:#6b0000;
    font-family:'Cormorant Garamond', serif;
    font-size:30px;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

/* COMMITMENT */

.commitment-section{
    padding:80px 0;
}

.commitment-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.commitment-item i{
    color:#7b0000;
    font-size:20px;
    margin-top:8px;
}

.commitment-item h5{
    color:#333;
    font-weight:700;
}

.commitment-item p{
    color:#666;
}

.commitment-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.1);
}

/* BELIEF */

.belief-section{
    padding:70px 0;
}

.belief-box{
    background:linear-gradient(rgba(123,0,0,.92),rgba(123,0,0,.92)),
    url('../images/banner-bg.jpg');
    background-size:cover;
    padding:80px 50px;
    border-radius:25px;
}

.belief-box i{
    font-size:60px;
    color:#d8c08c;
    margin-bottom:20px;
}

.belief-box h2{
    color:#fff;
    font-family:'Cormorant Garamond', serif;
    font-size:48px;
    line-height:1.6;
}

.belief-box h5{
    color:#fff;
    margin-top:30px;
}

/* INITIATIVES */

.initiatives-section{
    padding:80px 0;
}

.initiative-card{
    text-align:center;
    margin-bottom:25px;
}

.initiative-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
    transition:.3s;
}

.initiative-card:hover img{
    transform:scale(1.05);
}

.initiative-card h5{
    color:#333;
    font-size:18px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mission-hero-content{
        margin-bottom:50px;
        text-align:center;
    }

    .hero-divider{
        justify-content:center;
    }

    .mission-hero-content h1{
        font-size:52px;
    }

    .feature-card{
        border:none;
        margin-top:30px;
    }

    .mission-box{
        text-align:center;
        margin-bottom:40px;
    }

    .icon-wrap{
        margin:auto auto 20px;
    }

    .section-title h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .mission-hero-section{
        padding:60px 0;
    }

    .mission-hero-content h1{
        font-size:42px;
    }

    .hero-divider span{
        width:60px;
    }

    .feature-main-card{
        padding:30px;
    }

    .mission-box h2{
        font-size:34px;
    }

    .section-title h2{
        font-size:34px;
    }

    .belief-box{
        padding:50px 25px;
    }

    .belief-box h2{
        font-size:30px;
    }

    .initiative-card img{
        height:130px;
    }
}

/*=========================================
 CAMPUS PAGE CSS START
=========================================*/

.campus-page{
    background:#f8f5f0;
    padding:70px 0;
}

.campus-hero{
    background:#fff;
    padding:60px;
    border-radius:30px;
    margin-bottom:80px;
    box-shadow:0 10px 50px rgba(0,0,0,.05);
}

.campus-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:40px;
    background:#f4e8e8;
    color:#7a0000;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:20px;
}

.campus-hero h1{
    font-size:65px;
    color:#7a0000;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.hero-campus-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.hero-stat{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    border:1px solid #eee;
}

.hero-stat i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#7a0000;
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#7a0000;
    font-size:48px;
}

.campus-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
}

.campus-sidebar{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    height:fit-content;
}

.campus-sidebar ul{
    padding:0;
    margin:0;
    list-style:none;
}

.campus-sidebar li{
    margin-bottom:12px;
}

.campus-sidebar a{
    display:block;
    padding:15px 20px;
    border-radius:12px;
    text-decoration:none;
    color:#444;
    background:#fafafa;
}

.campus-sidebar li.active a,
.campus-sidebar a:hover{
    background:#7a0000;
    color:#fff;
}

.help-box{
    margin-top:30px;
    background:#7a0000;
    color:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.help-box a{
    color:#fff;
    font-size:24px;
    text-decoration:none;
}

.campus-banner img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:30px;
}

.campus-main-card{
    background:#fff;
    margin-top:-60px;
    position:relative;
    z-index:9;
    width:92%;
    margin-left:auto;
    margin-right:auto;
    padding:40px;
    border-radius:25px;
    display:flex;
    gap:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.campus-icon i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:#7a0000;
    color:#fff;
    text-align:center;
    font-size:35px;
}

.campus-main-card h3{
    color:#7a0000;
    font-size:42px;
    margin-bottom:20px;
}

.campus-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    margin-top:35px;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.campus-box h4{
    color:#7a0000;
    margin-bottom:25px;
    font-size:34px;
}

.highlight-list{
    list-style:none;
    padding:0;
}

.highlight-list li{
    margin-bottom:15px;
}

.highlight-list i{
    color:#7a0000;
    margin-right:10px;
}

.map-section{
    background:#fff;
    padding:40px;
    border-radius:25px;
    margin-top:35px;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
    border-radius:20px;
}

@media(max-width:991px){

    .campus-layout{
        grid-template-columns:1fr;
    }

    .campus-main-card{
        flex-direction:column;
        width:100%;
        margin-top:20px;
    }

    .campus-hero{
        padding:30px;
    }

    .campus-hero h1{
        font-size:45px;
    }

    .hero-campus-image img{
        height:300px;
        margin-top:30px;
    }
}

@media(max-width:767px){

    .hero-stats{
        grid-template-columns:1fr;
    }

    .campus-main-card h3{
        font-size:32px;
    }

    .campus-box{
        padding:25px;
    }

    .campus-box h4{
        font-size:28px;
    }

    .map-section iframe{
        height:300px;
    }
}

/*=========================================
 CAMPUS PAGE CSS END
=========================================*/

/*SAMPLE PAGE 1*/
.inner-hero{
padding:100px 0;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('assets/images/heritage-banner.jpg');
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
}

.hero-tag{
display:inline-block;
padding:10px 25px;
background:#fff;
color:#8b0000;
border-radius:30px;
font-size:13px;
letter-spacing:2px;
font-weight:600;
margin-bottom:20px;
}

.inner-hero h1{
font-size:60px;
font-weight:700;
margin-bottom:20px;
font-family:'Playfair Display',serif;
}

.inner-hero p{
font-size:20px;
max-width:700px;
margin:auto;
}

.content-section{
padding:80px 0;
background:#f9f7f3;
}

.content-section{
    background:#F7F2E4;
    padding:80px 0;
}

.content-card{
    background:none;
    padding:0;
    box-shadow:none;
    border-radius:0;
    margin-bottom:50px;
}

.content-card p{
    font-size:18px;
    line-height:2.1;
    color:#444;
    text-align:justify;
    margin-bottom:25px;
}

.middle-section{
    margin:70px 0;
}

.left-box,
.right-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.left-box h3,
.right-box h3{
    color:#7a0000;
    font-size:38px;
    margin-bottom:30px;
    font-family:'Playfair Display',serif;
}

.left-box p{
    text-align:justify;
    line-height:2;
    color:#555;
}

.right-box ul{
    list-style:none;
    padding:0;
}

.right-box ul li{
    padding:15px 0;
    border-bottom:1px solid #eee;
    font-size:17px;
    position:relative;
    padding-left:35px;
}

.right-box ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#7a0000;
    font-weight:bold;
}

.quote-banner{
    margin-top:70px;
    background:linear-gradient(135deg,#7a0000,#a10000);
    padding:80px 50px;
    border-radius:20px;
    text-align:center;
}

.quote-banner h2{
    color:#fff;
    font-size:40px;
    line-height:1.8;
    font-family:'Playfair Display',serif;
}

.cta-box{
    margin-top:70px;
    text-align:center;
    padding:60px 0 20px;
    border-top:1px solid #d8cfc0;
}

.cta-box h2{
    color:#7a0000;
    font-size:45px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:#555;
}

.theme-btn{
    display:inline-block;
    margin-top:30px;
    background:#7a0000;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
}

.theme-btn:hover{
    background:#570000;
    color:#fff;
}
.middle-section{
margin:50px 0;
}

.left-box,
.right-box{
background:#fff;
padding:45px;
height:100%;
border-radius:20px;
box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.left-box h3,
.right-box h3{
font-size:36px;
color:#8b0000;
margin-bottom:25px;
font-family:'Playfair Display',serif;
}

.left-box p{
text-align:justify;
line-height:2;
}

.right-box ul{
padding:0;
margin:0;
list-style:none;
}

.right-box ul li{
padding:15px 0;
border-bottom:1px solid #eee;
font-size:17px;
position:relative;
padding-left:35px;
}

.right-box ul li:before{
content:'✓';
position:absolute;
left:0;
color:#8b0000;
font-weight:bold;
}

.quote-banner{
background:#8b0000;
padding:70px;
border-radius:20px;
text-align:center;
color:#fff;
margin:60px 0;
}

.quote-banner h2{
font-size:38px;
font-family:'Playfair Display',serif;
line-height:1.8;
}

.cta-box{
background:#fff;
padding:60px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.cta-box h2{
font-size:42px;
color:#8b0000;
margin-bottom:20px;
}

.theme-btn{
display:inline-block;
padding:15px 40px;
background:#8b0000;
color:#fff;
border-radius:40px;
text-decoration:none;
margin-top:20px;
}

.theme-btn:hover{
background:#600000;
color:#fff;
}
@media(max-width:768px){

.left-box,
.right-box{
    padding:30px;
    margin-bottom:30px;
}

.left-box h3,
.right-box h3{
    font-size:30px;
}

.content-card p{
    font-size:16px;
}

.quote-banner{
    padding:50px 25px;
}

.quote-banner h2{
    font-size:28px;
}

.cta-box h2{
    font-size:32px;
}

}

@media(max-width:991px){

.inner-hero{
padding:80px 0;
}

.inner-hero h1{
font-size:42px;
}

.left-box,
.right-box,
.content-card{
margin-bottom:30px;
padding:30px;
}

.quote-banner{
padding:40px 25px;
}

.quote-banner h2{
font-size:28px;
}

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:30px;
}

}

@media(max-width:767px){

.inner-hero h1{
font-size:34px;
}

.inner-hero p{
font-size:16px;
}

.left-box h3,
.right-box h3{
font-size:28px;
}

.content-card p,
.left-box p,
.right-box ul li{
font-size:16px;
}

.quote-banner h2{
font-size:22px;
}

}

/*=========================================
OUR SUBJECTS 
=========================================*/

/*==================================
GENERAL
==================================*/

.subject-page,
.subject-categories{
    background:#faf8f3;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:58px;
    color:#6e0000;
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/*==================================
HERO SECTION
==================================*/

.subject-hero{
    position:relative;
    background:#f8f1e4;
    overflow:hidden;
    padding:90px 0 150px;
}

.subject-hero:before{

    content:'';

    position:absolute;

    top:0;
    right:0;

    width:55%;
    height:100%;

    background:url('assets/images/subjects-banner.png')
    no-repeat center right;

    background-size:contain;

    opacity:1;
}

.subject-hero .container{
    position:relative;
    z-index:10;
}

.hero-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:#fff;
    color:#8b0000;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:25px;
}

.subject-hero h1{
    font-size:72px;
    line-height:1.05;
    color:#6d0000;
    font-family:'Playfair Display',serif;
    margin-bottom:25px;
}

.hero-divider{
    width:220px;
    height:2px;
    background:#d7b26a;
    margin-bottom:30px;
}

.subject-hero p{
    max-width:600px;
    font-size:22px;
    line-height:1.9;
    color:#333;
}

/*==================================
STATS
==================================*/

.subject-stats{
    margin-top:-65px;
    position:relative;
    z-index:20;
}

.stats-wrapper{
    row-gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:22px;
    padding:35px 20px;
    text-align:center;

    border:1px solid #efe3d5;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    height:100%;
}

.stat-box i{
    width:60px;
    height:60px;
    line-height:60px;

    border-radius:50%;

    background:#8b0000;
    color:#fff;

    font-size:24px;

    margin-bottom:18px;
}

.stat-box h2{
    color:#7a0000;
    font-size:46px;
    font-family:'Playfair Display',serif;
    margin-bottom:5px;
}

.stat-box p{
    margin:0;
    color:#555;
}

/*==================================
SUBJECT CATEGORY SECTION
==================================*/

.subject-categories{
    padding:90px 0;
}

.subject-card{
    background:#fff;

    border:1px solid #e8d8c8;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:25px;

    transition:.3s;
}

.subject-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.subject-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 35px;

    cursor:pointer;
}

.subject-card.active .subject-header{
    background:linear-gradient(90deg,#860000,#b00000);
}

.subject-header .left{

    display:flex;

    align-items:center;

    gap:22px;
}

.subject-header .icon{

    width:58px;
    height:58px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#8b0000;
    color:#fff;

    font-size:22px;

    flex-shrink:0;
}

.subject-card.active .icon{
    background:#fff;
    color:#8b0000;
}

.subject-header h3{
    margin:0;
    font-size:32px;
    font-family:'Playfair Display',serif;
    color:#222;
}

.subject-card.active h3{
    color:#fff;
}

.subject-header p{
    margin:5px 0 0;
    color:#777;
    font-size:14px;
}

.subject-card.active p{
    color:#f2f2f2;
}

.subject-header .right{

    display:flex;

    align-items:center;

    gap:18px;
}

.count{

    padding:8px 18px;

    border-radius:30px;

    border:1px solid #dcc6b4;

    color:#8b0000;

    font-size:13px;

    font-weight:600;
}

.subject-card.active .count{
    border-color:rgba(255,255,255,.45);
    color:#fff;
}

.toggle-icon{
    color:#8b0000;
    font-size:16px;
}

.subject-card.active .toggle-icon{
    color:#fff;
}

.subject-body{

    padding:30px 35px;

    border-top:1px solid #f1e6d8;
}

.subject-item{

    font-size:15px;

    color:#444;

    padding:12px 0;
}

.subject-item i{
    color:#b10000;
    font-size:7px;
    margin-right:10px;
}

/*==================================
CTA
==================================*/

.subject-cta{

    background:linear-gradient(135deg,#760000,#9d0000);

    padding:90px 0;

    margin-top:70px;

    text-align:center;
}

.subject-cta h2{

    color:#fff;

    font-size:58px;

    font-family:'Playfair Display',serif;

    margin-bottom:20px;
}

.subject-cta p{

    color:#fff;

    font-size:18px;

    margin-bottom:35px;
}

.subject-cta .btn{

    background:#f0c46b;

    color:#000;

    border:none;

    border-radius:50px;

    padding:14px 38px;

    font-weight:600;
}

.subject-cta .btn:hover{
    background:#e0b04b;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1199px){

.subject-hero:before{
    width:50%;
}

.subject-hero h1{
    font-size:60px;
}

}

@media(max-width:991px){

.subject-hero{
    padding:70px 0 90px;
}

.subject-hero:before{
    opacity:.12;
    width:100%;
}

.subject-hero h1{
    font-size:48px;
}

.subject-hero p{
    font-size:18px;
}

.subject-stats{
    margin-top:40px;
}

.stat-box{
    margin-bottom:20px;
}

.subject-header{
    padding:25px;
}

.subject-header h3{
    font-size:26px;
}

.subject-body .col-lg-3{
    width:50%;
}

.section-title h2{
    font-size:44px;
}

.subject-cta h2{
    font-size:42px;
}

}

@media(max-width:767px){

.subject-hero:before{
    display:none;
}

.subject-hero{
    padding:60px 0;
}

.hero-tag{
    font-size:11px;
}

.subject-hero h1{
    font-size:38px;
}

.subject-hero p{
    font-size:16px;
    line-height:1.8;
}

.subject-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.subject-header .right{
    width:100%;
    justify-content:space-between;
}

.subject-header .left{
    gap:15px;
}

.subject-header .icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.subject-header h3{
    font-size:24px;
}

.subject-body{
    padding:20px;
}

.subject-body .col-lg-3,
.subject-body .col-md-4,
.subject-body .col-6{
    width:100%;
}

.section-title h2{
    font-size:34px;
}

.subject-cta{
    padding:60px 20px;
}

.subject-cta h2{
    font-size:30px;
}

}


/*FOR HERO SLIDES*/
/* =====================================================
   SSSP HERO SLIDER V3
   PART 1
===================================================== */

.ssspHero{

    position:relative;
    overflow:hidden;
    background:#000;

}

.ssspHeroSwiper{

    width:100%;
    height:100%;

}

.ssspHero .swiper-slide{

    overflow:hidden;

}

/*===================================
ITEM
===================================*/

.ssspHeroItem{

    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;
    overflow:hidden;

}

/*===================================
BACKGROUND
===================================*/

.ssspHeroBackground{

    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;

}

.ssspHeroBackgroundImage{

    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 8s linear;

}

.swiper-slide-active .ssspHeroBackgroundImage{

    transform:scale(1.10);

}

/*===================================
OVERLAY
===================================*/

.ssspHeroOverlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(23,12,8,.88) 0%,
        rgba(44,16,8,.72) 35%,
        rgba(0,0,0,.45) 70%,
        rgba(0,0,0,.18) 100%
    );

}

/*===================================
CONTAINER
===================================*/

.ssspHero .container{

    position:relative;
    z-index:10;

}

/*===================================
LEFT CONTENT
===================================*/

.ssspHeroContent{

    max-width:680px;
    color:#fff;

}

/*===================================
BADGE
===================================*/

.ssspHeroBadge{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:10px 22px;

    border-radius:100px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    margin-bottom:25px;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.ssspHeroBadge i{

    color:#f6c35c;

}

/*===================================
TOP TITLE
===================================*/

.ssspHeroTopTitle{

    color:#f6c35c;

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;

    letter-spacing:2px;

}

/*===================================
TITLE
===================================*/

.ssspHeroTitle{

    font-size:68px;

    line-height:1.15;

    font-weight:800;

    color:#fff;

    margin-bottom:22px;

    text-shadow:0 12px 40px rgba(0,0,0,.45);

}

/*===================================
DIVIDER
===================================*/

.ssspHeroDivider{

    width:120px;

    height:4px;

    border-radius:100px;

    background:#d8b25b;

    margin:25px 0;

}

/*===================================
DESCRIPTION
===================================*/

.ssspHeroDescription{

    font-size:22px;

    line-height:1.9;

    color:#f5f5f5;

    margin-bottom:40px;

}

/*===================================
BUTTON AREA
===================================*/

.ssspHeroButtons{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

/*===================================
PRIMARY BUTTON
===================================*/

.ssspHeroPrimaryButton{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:210px;

    height:60px;

    border-radius:12px;

    background:#8b1d1d;

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.ssspHeroPrimaryButton:hover{

    background:#b22626;

    color:#fff;

    transform:translateY(-4px);

}

/*===================================
SECONDARY BUTTON
===================================*/

.ssspHeroSecondaryButton{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:210px;

    height:60px;

    border-radius:12px;

    border:2px solid rgba(255,255,255,.55);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.ssspHeroSecondaryButton:hover{

    background:#fff;

    color:#222;

    transform:translateY(-4px);

}

/*===================================
RIGHT SIDE
===================================*/

.ssspHeroVisual{

    position:relative;

    width:480px;

    height:480px;

    margin:auto;

}
/* =====================================================
   SSSP HERO SLIDER V3
   PART 2
   Logo • Rings • Glow • Navigation • Pagination
===================================================== */

/*=========================
 HERO VISUAL
=========================*/

.ssspHeroVisual{

    position:relative;

    width:480px;

    height:480px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*=========================
 GOLD GLOW
=========================*/

.ssspHeroGlow{

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(255,210,120,.65) 0%,
        rgba(255,210,120,.18) 45%,
        rgba(255,210,120,0) 75%);

    filter:blur(35px);

    animation:ssspGlow 5s ease-in-out infinite;

    z-index:1;

}

@keyframes ssspGlow{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    50%{

        transform:scale(1.15);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.7;

    }

}

/*=========================
 LOGO
=========================*/

.ssspHeroLogo{

    position:relative;

    width:190px;

    z-index:20;

    filter:
        drop-shadow(0 15px 35px rgba(0,0,0,.45));

    animation:ssspLogoFloat 4.5s ease-in-out infinite;

}

@keyframes ssspLogoFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
 RINGS
=========================*/

.ssspHeroRing{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(255,215,120,.28);

}

/* Ring 1 */

.ringOne{

    width:240px;

    height:240px;

    animation:ssspRotateClock 18s linear infinite;

}

/* Ring 2 */

.ringTwo{

    width:300px;

    height:300px;

    border-style:dashed;

    animation:ssspRotateAnti 25s linear infinite;

}

/* Ring 3 */

.ringThree{

    width:360px;

    height:360px;

    opacity:.75;

    animation:ssspRotateClock 34s linear infinite;

}

/* Ring 4 */

.ringFour{

    width:430px;

    height:430px;

    border-color:rgba(255,255,255,.12);

    animation:ssspRotateAnti 42s linear infinite;

}

/*=========================
 RING ANIMATION
=========================*/

@keyframes ssspRotateClock{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes ssspRotateAnti{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}

/*=========================
 HOVER
=========================*/

.ssspHeroVisual:hover .ringOne{

    animation-duration:8s;

}

.ssspHeroVisual:hover .ringTwo{

    animation-duration:12s;

}

.ssspHeroVisual:hover .ringThree{

    animation-duration:16s;

}

.ssspHeroVisual:hover .ringFour{

    animation-duration:22s;

}

.ssspHeroVisual:hover .ssspHeroLogo{

    transform:scale(1.05);

}

/*=========================
 NAVIGATION
=========================*/

.ssspHero .swiper-button-next,
.ssspHero .swiper-button-prev{

    width:64px;

    height:64px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    transition:.35s;

}

.ssspHero .swiper-button-next:hover,
.ssspHero .swiper-button-prev:hover{

    background:#8b1d1d;

    border-color:#8b1d1d;

    transform:scale(1.08);

}

.ssspHero .swiper-button-next:after,
.ssspHero .swiper-button-prev:after{

    font-size:22px;

    font-weight:700;

}

/*=========================
 PAGINATION
=========================*/

.ssspHero .swiper-pagination{

    bottom:35px !important;

}

.ssspHero .swiper-pagination-bullet{

    width:14px;

    height:14px;

    opacity:1;

    background:rgba(255,255,255,.45);

    transition:.35s;

}

.ssspHero .swiper-pagination-bullet-active{

    width:40px;

    border-radius:50px;

    background:#d8b25b;

}

/*=========================
 ENTRY ANIMATION
=========================*/

.swiper-slide-active .ssspHeroBadge{

    animation:ssspFadeUp .7s ease forwards;

}

.swiper-slide-active .ssspHeroTopTitle{

    animation:ssspFadeUp .9s ease forwards;

}

.swiper-slide-active .ssspHeroTitle{

    animation:ssspFadeUp 1.1s ease forwards;

}

.swiper-slide-active .ssspHeroDivider{

    animation:ssspFadeUp 1.3s ease forwards;

}

.swiper-slide-active .ssspHeroDescription{

    animation:ssspFadeUp 1.5s ease forwards;

}

.swiper-slide-active .ssspHeroButtons{

    animation:ssspFadeUp 1.7s ease forwards;

}

.swiper-slide-active .ssspHeroVisual{

    animation:ssspZoom .9s ease forwards;

}

/*=========================
 KEYFRAMES
=========================*/

@keyframes ssspFadeUp{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes ssspZoom{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}
/* =====================================================
   SSSP HERO SLIDER V3
   PART 3
   Responsive + Mobile + Performance
===================================================== */

/*=========================
 LARGE DESKTOP
=========================*/

@media (max-width:1600px){

    .ssspHeroItem{

        min-height:720px;

    }

    .ssspHeroTitle{

        font-size:60px;

    }

    .ssspHeroVisual{

        width:430px;
        height:430px;

    }

    .ringFour{

        width:390px;
        height:390px;

    }

}

/*=========================
 LAPTOP
=========================*/

@media (max-width:1200px){

    .ssspHeroItem{

        min-height:680px;

    }

    .ssspHeroTitle{

        font-size:50px;

    }

    .ssspHeroDescription{

        font-size:20px;

    }

    .ssspHeroVisual{

        width:360px;
        height:360px;

    }

    .ringOne{

        width:190px;
        height:190px;

    }

    .ringTwo{

        width:240px;
        height:240px;

    }

    .ringThree{

        width:290px;
        height:290px;

    }

    .ringFour{

        width:340px;
        height:340px;

    }

    .ssspHeroLogo{

        width:150px;

    }

}

/*=========================
 TABLET
=========================*/

@media (max-width:991px){

    .ssspHeroItem{

        min-height:auto;

        padding:120px 0 80px;

    }

    .ssspHeroContent{

        max-width:100%;

        text-align:center;

    }

    .ssspHeroDivider{

        margin:20px auto 30px;

    }

    .ssspHeroButtons{

        justify-content:center;

    }

    .ssspHeroVisual{

        margin-top:60px;

        width:320px;

        height:320px;

    }

    .ssspHeroTitle{

        font-size:42px;

    }

    .ssspHeroDescription{

        font-size:18px;

        line-height:1.8;

    }

    .ssspHeroBadge{

        justify-content:center;

    }

    .ssspHeroTopTitle{

        font-size:18px;

    }

}

/*=========================
 MOBILE
=========================*/

@media (max-width:767px){

    .ssspHeroItem{

        padding:90px 0 70px;

    }

    .ssspHeroTitle{

        font-size:34px;

        line-height:1.3;

    }

    .ssspHeroDescription{

        font-size:16px;

    }

    .ssspHeroButtons{

        flex-direction:column;

        gap:15px;

    }

    .ssspHeroPrimaryButton,
    .ssspHeroSecondaryButton{

        width:100%;

        min-width:100%;

    }

    .ssspHeroVisual{

        width:260px;

        height:260px;

        margin-top:45px;

    }

    .ringOne{

        width:150px;
        height:150px;

    }

    .ringTwo{

        width:190px;
        height:190px;

    }

    .ringThree{

        width:230px;
        height:230px;

    }

    .ringFour{

        width:270px;
        height:270px;

    }

    .ssspHeroLogo{

        width:120px;

    }

    .ssspHero .swiper-button-next,
    .ssspHero .swiper-button-prev{

        display:none;

    }

}

/*=========================
 SMALL MOBILE
=========================*/

@media (max-width:480px){

    .ssspHeroItem{

        padding:80px 0 60px;

    }

    .ssspHeroTitle{

        font-size:28px;

    }

    .ssspHeroDescription{

        font-size:15px;

    }

    .ssspHeroBadge{

        font-size:12px;

        padding:8px 16px;

    }

    .ssspHeroTopTitle{

        font-size:15px;

    }

    .ssspHeroVisual{

        width:220px;

        height:220px;

    }

    .ringOne{

        width:130px;
        height:130px;

    }

    .ringTwo{

        width:165px;
        height:165px;

    }

    .ringThree{

        width:195px;
        height:195px;

    }

    .ringFour{

        width:225px;
        height:225px;

    }

    .ssspHeroLogo{

        width:105px;

    }

}

/*=========================
 TOUCH DEVICES
=========================*/

@media (hover:none){

    .ssspHeroPrimaryButton:hover,
    .ssspHeroSecondaryButton:hover{

        transform:none;

    }

}

/*=========================
 ACCESSIBILITY
=========================*/

.ssspHeroPrimaryButton:focus,
.ssspHeroSecondaryButton:focus{

    outline:3px solid #f5c65d;

    outline-offset:4px;

}

/*=========================
 PERFORMANCE
=========================*/

.ssspHeroBackgroundImage,
.ssspHeroLogo,
.ssspHeroRing{

    will-change:transform;

}

.ssspHero *,
.ssspHero *::before,
.ssspHero *::after{

    box-sizing:border-box;

}

/*=========================
 REDUCE MOTION
=========================*/

@media (prefers-reduced-motion:reduce){

    .ssspHero *,
    .ssspHero *::before,
    .ssspHero *::after{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}
/* =====================================================
   SSSP HERO SLIDER V3
   PART 5
   FINAL PREMIUM EFFECT
===================================================== */

/*=========================
 BACKGROUND DARK LAYER
=========================*/

.ssspHero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,210,110,.18),
    transparent 45%),

    radial-gradient(circle at bottom left,
    rgba(255,255,255,.08),
    transparent 55%);

    z-index:2;

    pointer-events:none;

}

/*=========================
 GOLD PARTICLES
=========================*/

.ssspHero::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(#d7b36a 1px,transparent 1px),

    radial-gradient(#ffffff 1px,transparent 1px);

    background-size:140px 140px,220px 220px;

    opacity:.12;

    animation:ssspParticleMove 45s linear infinite;

    pointer-events:none;

    z-index:2;

}

@keyframes ssspParticleMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-300px);

    }

}

/*=========================
 GLASS EFFECT
=========================*/

.ssspHeroBadge{

    box-shadow:

    0 8px 35px rgba(0,0,0,.25),

    inset 0 1px 1px rgba(255,255,255,.15);

}

/*=========================
 TITLE
=========================*/

.ssspHeroTitle{

    letter-spacing:-1px;

    text-wrap:balance;

}

/*=========================
 BUTTON
=========================*/

.ssspHeroPrimaryButton,
.ssspHeroSecondaryButton{

    position:relative;

    overflow:hidden;

}

.ssspHeroPrimaryButton::before,
.ssspHeroSecondaryButton::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:80px;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transform:skewX(-20deg);

    transition:.8s;

}

.ssspHeroPrimaryButton:hover::before,
.ssspHeroSecondaryButton:hover::before{

    left:140%;

}

/*=========================
 LOGO
=========================*/

.ssspHeroLogo{

    user-select:none;

    -webkit-user-drag:none;

}

/*=========================
 IMAGE
=========================*/

.ssspHeroBackgroundImage{

    filter:

    brightness(.95)

    saturate(1.05)

    contrast(1.02);

}

/*=========================
 CONTENT
=========================*/

.ssspHeroContent>*{

    opacity:0;

}

.swiper-slide-active .ssspHeroContent>*{

    opacity:1;

}

/*=========================
 NAVIGATION
=========================*/

.ssspHero .swiper-button-next,
.ssspHero .swiper-button-prev{

    box-shadow:

    0 12px 35px rgba(0,0,0,.35);

}

/*=========================
 PAGINATION
=========================*/

.ssspHero .swiper-pagination-bullet{

    box-shadow:

    0 0 15px rgba(255,255,255,.35);

}

/*=========================
 IMAGE LOADING
=========================*/

.ssspHeroBackgroundImage{

    animation:ssspImageFade 1.5s ease;

}

@keyframes ssspImageFade{

    from{

        opacity:0;

        transform:scale(1.12);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*=========================
 SECTION SHADOW
=========================*/

.ssspHero{

    box-shadow:

    inset 0 -120px 120px rgba(0,0,0,.35);

}

/*=========================
 PERFORMANCE
=========================*/

.ssspHeroBackgroundImage,

.ssspHeroLogo,

.ssspHeroRing,

.ssspHeroGlow{

    transform:translateZ(0);

    backface-visibility:hidden;

}

/*=========================
 PRINT
=========================*/

@media print{

    .ssspHero{

        display:none;

    }

}