/* Start custom CSS for html, class: .elementor-element-aef8731 *//*==========================================
KRR HIGH SCHOOL - ACADEMICS HERO
Simple Corporate Style
==========================================*/

.krr-academics-hero{
    position:relative;
    width:100%;
    height:360px;
    background:url("https://krrhighschool.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-23-2026-04_44_16-PM.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(8,38,88,.75),
        rgba(8,38,88,.70)
    );
}

/* Content */

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:90%;
    max-width:900px;
    color:#fff;

    animation:fadeUp .9s ease;
}

/* Breadcrumb */

.hero-breadcrumb{
    margin-bottom:18px;
    font-size:15px;
    font-weight:500;
}

.hero-breadcrumb a{
    color:#FFD54F;
    text-decoration:none;
    transition:.3s;
}

.hero-breadcrumb a:hover{
    color:#fff;
}

.hero-breadcrumb span{
    margin:0 6px;
}

/* Heading */

.hero-content h1{
    font-size:54px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
    text-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* Paragraph */

.hero-content p{
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.95);
}

/*==========================
Animation
==========================*/

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* Background Zoom */

.krr-academics-hero{

animation:bgZoom 18s ease-in-out infinite alternate;

}

@keyframes bgZoom{

from{

background-size:100%;

}

to{

background-size:108%;

}

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.krr-academics-hero{

height:320px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

}

}

@media(max-width:767px){

.krr-academics-hero{

height:280px;
padding:20px;

}

.hero-breadcrumb{

font-size:13px;

}

.hero-content h1{

font-size:32px;
margin-bottom:12px;

}

.hero-content p{

font-size:14px;
line-height:1.7;

}

}

@media(max-width:480px){

.krr-academics-hero{

height:250px;

}

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:13px;

}

.hero-breadcrumb{

font-size:12px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8a44a0 *//*=========================================
KRR HIGH SCHOOL
ACADEMIC EXCELLENCE
Part 1 : Layout + Typography + Buttons
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0A4DA2;
    --secondary:#FFD54F;
    --dark:#1E293B;
    --text:#555;
    --light:#F8FAFC;
    --white:#ffffff;
    --border:#E5E7EB;
    --shadow:0 15px 45px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.academic-excellence{

    position:relative;
    padding:100px 20px;
    background:var(--white);
    overflow:hidden;

}

/* Background Shape */

.academic-excellence::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#EEF5FF;
    border-radius:50%;
    top:-180px;
    right:-180px;
    z-index:0;

}

.academic-container{

    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;
    position:relative;
    z-index:2;

}

/*=========================
LEFT CONTENT
==========================*/

.academic-content{

    width:100%;

}

.section-tag{

    display:inline-block;

    background:#EDF4FF;

    color:var(--primary);

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    letter-spacing:.5px;

}

.academic-content h2{

    font-size:46px;

    font-weight:700;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:25px;

}

.academic-content h2 span{

    color:var(--primary);

}

.academic-content p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:35px;

}

/*=========================
FEATURE LIST
==========================*/

.academic-list{

    list-style:none;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:45px;

}

.academic-list li{

    position:relative;

    padding-left:34px;

    font-size:16px;

    color:var(--dark);

    font-weight:500;

}

.academic-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

}

/*=========================
BUTTONS
==========================*/

.academic-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:8px;

    transition:.35s;

    box-shadow:0 12px 30px rgba(10,77,162,.20);

}

.btn-primary:hover{

    background:#083D80;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    border-radius:8px;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
RIGHT IMAGE
==========================*/

.academic-image{

    position:relative;

}

.academic-image img{

    width:100%;

    display:block;

    border-radius:20px;

    box-shadow:var(--shadow);

    object-fit:cover;

}

/* Floating Badge */

.academic-image::after{

    content:"25+ Years of Excellence";

    position:absolute;

    bottom:25px;

    left:-25px;

    background:var(--secondary);

    color:#222;

    font-size:15px;

    font-weight:700;

    padding:16px 24px;

    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}
/*=========================================
KRR HIGH SCHOOL
ACADEMIC EXCELLENCE
Part 2 : Animation + Hover + Responsive
==========================================*/

/*=========================
SCROLL REVEAL
==========================*/

.academic-content,
.academic-image{

    opacity:0;
    transform:translateY(50px);
    transition:all .9s ease;

}

.academic-content.show,
.academic-image.show{

    opacity:1;
    transform:translateY(0);

}

/*=========================
SECTION TAG
==========================*/

.section-tag{

    transition:.35s ease;

}

.section-tag:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);

}

/*=========================
HEADING
==========================*/

.academic-content h2{

    transition:.4s;

}

.academic-content h2:hover{

    color:var(--primary);

}

.academic-content h2 span{

    position:relative;

}

.academic-content h2 span::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:var(--secondary);
    border-radius:20px;

}

/*=========================
FEATURE LIST
==========================*/

.academic-list li{

    transition:.35s;

}

.academic-list li:hover{

    transform:translateX(8px);
    color:var(--primary);

}

.academic-list li::before{

    transition:.35s;

}

.academic-list li:hover::before{

    background:var(--secondary);
    color:#222;
    transform:scale(1.1);

}

/*=========================
BUTTONS
==========================*/

.btn-primary,
.btn-outline{

    position:relative;
    overflow:hidden;

}

.btn-primary:hover{

    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(10,77,162,.30);

}

.btn-outline:hover{

    transform:translateY(-5px);

}

/* Shine Effect */

.btn-primary::before,
.btn-outline::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.6s;

}

.btn-primary:hover::before,
.btn-outline:hover::before{

    left:140%;

}

/*=========================
IMAGE
==========================*/

.academic-image{

    overflow:hidden;
    border-radius:20px;

}

.academic-image img{

    transition:transform .8s ease;

}

.academic-image:hover img{

    transform:scale(1.08);

}

/*=========================
FLOATING BADGE
==========================*/

.academic-image::after{

    animation:floatBadge 3s ease-in-out infinite;

}

@keyframes floatBadge{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
SECTION FADE
==========================*/

.academic-excellence{

    animation:fadeSection .9s ease;

}

@keyframes fadeSection{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:1024px){

.academic-container{

grid-template-columns:1fr;
gap:60px;

}

.academic-content{

order:2;

}

.academic-image{

order:1;

}

.academic-content h2{

font-size:40px;

}

}

@media(max-width:768px){

.academic-excellence{

padding:70px 20px;

}

.academic-content{

text-align:center;

}

.section-tag{

margin:auto auto 20px;

}

.academic-content h2{

font-size:32px;

}

.academic-content p{

font-size:15px;

line-height:1.8;

}

.academic-list{

grid-template-columns:1fr;

text-align:left;

margin-bottom:35px;

}

.academic-buttons{

justify-content:center;

}

.academic-image::after{

left:50%;
transform:translateX(-50%);
bottom:18px;

}

}

@media(max-width:480px){

.academic-content h2{

font-size:28px;

}

.academic-content p{

font-size:14px;

}

.btn-primary,
.btn-outline{

width:100%;
padding:14px 20px;

}

.academic-image::after{

font-size:13px;
padding:12px 18px;

}

}

/*=========================
PERFORMANCE
==========================*/

.academic-image img,
.btn-primary,
.btn-outline,
.section-tag,
.academic-list li{

will-change:transform;

}

html{

scroll-behavior:smooth;

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7670071 *//*=========================================
KRR HIGH SCHOOL
CURRICULUM SECTION
Part 1 : Layout + Cards + Typography
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0A4DA2;
    --secondary:#FFD54F;
    --dark:#1E293B;
    --text:#6B7280;
    --white:#ffffff;
    --light:#F8FAFC;
    --border:#E5E7EB;

    --shadow:0 15px 45px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.curriculum-section{

    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;

}

/* Background Shape */

.curriculum-section::before{

    content:"";
    position:absolute;

    width:450px;
    height:450px;

    background:#EAF3FF;

    border-radius:50%;

    top:-220px;
    right:-220px;

}

.curriculum-container{

    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;

}

/*=========================
SECTION HEADER
==========================*/

.section-header{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    background:#EAF3FF;
    color:var(--primary);

    padding:10px 24px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    letter-spacing:.5px;

}

.section-header h2{

    font-size:46px;

    color:var(--dark);

    line-height:1.3;

    margin-bottom:20px;

    font-weight:700;

}

.section-header h2 span{

    color:var(--primary);

}

.section-header p{

    font-size:17px;

    color:var(--text);

    line-height:1.9;

}

/*=========================
GRID
==========================*/

.curriculum-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================
CARD
==========================*/

.curriculum-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

/* Top Accent */

.curriculum-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:var(--primary);

}

/*=========================
ICON
==========================*/

.card-icon{

    width:80px;
    height:80px;

    background:#EDF5FF;

    color:var(--primary);

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin-bottom:25px;

}

/*=========================
TITLE
==========================*/

.curriculum-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:600;

}

/*=========================
DESCRIPTION
==========================*/

.curriculum-card p{

    font-size:16px;

    color:var(--text);

    line-height:1.8;

}

/*=========================
BOTTOM DECORATION
==========================*/

.curriculum-card::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    background:rgba(10,77,162,.05);

    border-radius:50%;

    right:-50px;
    bottom:-50px;

}
/*=========================================
KRR HIGH SCHOOL
CURRICULUM SECTION
Part 2 : Hover Effects + Animations
==========================================*/

/*=========================
CARD HOVER
==========================*/

.curriculum-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    border-color:rgba(10,77,162,.20);

}

/*=========================
TOP BORDER
==========================*/

.curriculum-card::before{

    transition:.4s;

}

.curriculum-card:hover::before{

    height:7px;

    background:linear-gradient(90deg,#0A4DA2,#FFD54F);

}

/*=========================
ICON
==========================*/

.card-icon{

    transition:all .4s ease;

}

.curriculum-card:hover .card-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg) scale(1.08);

    box-shadow:0 15px 35px rgba(10,77,162,.30);

}

/*=========================
TITLE
==========================*/

.curriculum-card h3{

    transition:.35s;

}

.curriculum-card:hover h3{

    color:var(--primary);

}

/*=========================
DESCRIPTION
==========================*/

.curriculum-card p{

    transition:.35s;

}

.curriculum-card:hover p{

    color:#475569;

}

/*=========================
BACKGROUND CIRCLE
==========================*/

.curriculum-card::after{

    transition:.5s;

}

.curriculum-card:hover::after{

    transform:scale(1.35);

    background:rgba(255,213,79,.12);

}

/*=========================
SECTION TAG
==========================*/

.section-tag{

    transition:.35s;

}

.section-tag:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*=========================
HEADING
==========================*/

.section-header h2 span{

    position:relative;

}

.section-header h2 span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:3px;

    background:var(--secondary);

    border-radius:50px;

}

/*=========================
SCROLL REVEAL
==========================*/

.section-header,
.curriculum-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .9s ease;

}

.section-header.show,
.curriculum-card.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================
STAGGER EFFECT
==========================*/

.curriculum-card:nth-child(1){

transition-delay:.1s;

}

.curriculum-card:nth-child(2){

transition-delay:.2s;

}

.curriculum-card:nth-child(3){

transition-delay:.3s;

}

.curriculum-card:nth-child(4){

transition-delay:.4s;

}

.curriculum-card:nth-child(5){

transition-delay:.5s;

}

.curriculum-card:nth-child(6){

transition-delay:.6s;

}

/*=========================
FLOATING ICON
==========================*/

.card-icon{

    animation:floatIcon 3s ease-in-out infinite;

}

@keyframes floatIcon{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

/*=========================
CARD FADE
==========================*/

.curriculum-section{

    animation:fadeSection .8s ease;

}

@keyframes fadeSection{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================
SMOOTH EFFECTS
==========================*/

.curriculum-card,
.card-icon,
.section-tag,
.curriculum-card h3,
.curriculum-card p{

will-change:transform;

}
/*=========================================
KRR HIGH SCHOOL
CURRICULUM SECTION
Part 3 : Responsive + Performance
==========================================*/

/*=========================
Large Laptop
==========================*/

@media (max-width:1200px){

    .curriculum-container{

        max-width:1100px;

    }

}

/*=========================
Tablet
==========================*/

@media (max-width:991px){

    .curriculum-section{

        padding:80px 20px;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2{

        font-size:38px;

    }

    .curriculum-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}

/*=========================
Mobile
==========================*/

@media (max-width:767px){

    .curriculum-section{

        padding:70px 18px;

    }

    .section-header{

        margin-bottom:40px;

    }

    .section-tag{

        font-size:13px;

        padding:8px 20px;

    }

    .section-header h2{

        font-size:30px;

    }

    .section-header p{

        font-size:15px;

        line-height:1.8;

    }

    .curriculum-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .curriculum-card{

        padding:30px 25px;

    }

    .card-icon{

        width:70px;
        height:70px;

        font-size:30px;

    }

    .curriculum-card h3{

        font-size:22px;

    }

    .curriculum-card p{

        font-size:15px;

    }

}

/*=========================
Small Mobile
==========================*/

@media (max-width:480px){

    .curriculum-section{

        padding:60px 15px;

    }

    .section-header h2{

        font-size:26px;

    }

    .curriculum-card{

        padding:25px 20px;

        border-radius:16px;

    }

    .card-icon{

        width:65px;
        height:65px;

        font-size:28px;

        margin-bottom:20px;

    }

    .curriculum-card h3{

        font-size:20px;

    }

    .curriculum-card p{

        font-size:14px;

        line-height:1.7;

    }

}

/*=========================
Performance
==========================*/

.curriculum-card,
.card-icon,
.section-header{

    backface-visibility:hidden;

    transform-style:preserve-3d;

}

.curriculum-card img{

    max-width:100%;

    display:block;

}

html{

    scroll-behavior:smooth;

}

/* Reduce Motion */

@media (prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-81ca497 *//*=========================================
KRR HIGH SCHOOL
TEACHING METHODOLOGY
PART 1 : Layout + Typography + Cards
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0A4DA2;
    --secondary:#FFD54F;
    --dark:#1E293B;
    --text:#64748B;
    --white:#ffffff;
    --light:#F8FBFF;
    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/*=========================================
SECTION
==========================================*/

.methodology-section{

    position:relative;

    padding:100px 20px;

    background:#fff;

    overflow:hidden;

}

/* Background Decoration */

.methodology-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-220px;
    left:-220px;

    background:#EDF5FF;

    border-radius:50%;

}

.methodology-container{

    max-width:1250px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*=========================================
SECTION HEADER
==========================================*/

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 24px;

    background:#EDF5FF;

    color:var(--primary);

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:20px;

}

.section-header h2{

    font-size:46px;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:700;

}

.section-header h2 span{

    color:var(--primary);

}

.section-header p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

}

/*=========================================
GRID
==========================================*/

.methodology-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================================
CARD
==========================================*/

.method-card{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 30px;

    box-shadow:var(--shadow);

    overflow:hidden;

    transition:.4s ease;

}

/* Top Border */

.method-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

}

/* Decorative Circle */

.method-card::after{

    content:"";

    position:absolute;

    width:130px;
    height:130px;

    background:rgba(10,77,162,.05);

    border-radius:50%;

    right:-55px;
    bottom:-55px;

}

/*=========================================
ICON
==========================================*/

.method-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EDF5FF;

    color:var(--primary);

    font-size:36px;

    border-radius:18px;

    margin-bottom:25px;

}

/*=========================================
TITLE
==========================================*/

.method-card h3{

    font-size:23px;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:600;

}

/*=========================================
DESCRIPTION
==========================================*/

.method-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

}

/*=========================================
COMMON
==========================================*/

img{

    max-width:100%;

    display:block;

}
/*=========================================
KRR HIGH SCHOOL
TEACHING METHODOLOGY
PART 2 : Hover + Animation
==========================================*/

/*=========================================
CARD HOVER
==========================================*/

.method-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,77,162,.20);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*=========================================
TOP BORDER
==========================================*/

.method-card::before{

    transition:.4s ease;

}

.method-card:hover::before{

    height:7px;

    background:linear-gradient(90deg,#0A4DA2,#FFD54F);

}

/*=========================================
ICON
==========================================*/

.method-icon{

    transition:all .45s ease;

}

.method-card:hover .method-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg) scale(1.08);

    box-shadow:0 15px 35px rgba(10,77,162,.30);

}

/* Floating Animation */

.method-icon{

    animation:iconFloat 3.5s ease-in-out infinite;

}

@keyframes iconFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
TITLE
==========================================*/

.method-card h3{

    transition:.35s;

}

.method-card:hover h3{

    color:var(--primary);

}

/*=========================================
DESCRIPTION
==========================================*/

.method-card p{

    transition:.35s;

}

.method-card:hover p{

    color:#475569;

}

/*=========================================
BACKGROUND CIRCLE
==========================================*/

.method-card::after{

    transition:.5s ease;

}

.method-card:hover::after{

    transform:scale(1.35);

    background:rgba(255,213,79,.15);

}

/*=========================================
SECTION TAG
==========================================*/

.section-tag{

    transition:.35s;

}

.section-tag:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================
HEADING EFFECT
==========================================*/

.section-header h2 span{

    position:relative;

}

.section-header h2 span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:3px;

    border-radius:50px;

    background:var(--secondary);

}

/*=========================================
SCROLL REVEAL
==========================================*/

.section-header,
.method-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .9s ease;

}

.section-header.show,
.method-card.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
STAGGER EFFECT
==========================================*/

.method-card:nth-child(1){

transition-delay:.10s;

}

.method-card:nth-child(2){

transition-delay:.20s;

}

.method-card:nth-child(3){

transition-delay:.30s;

}

.method-card:nth-child(4){

transition-delay:.40s;

}

.method-card:nth-child(5){

transition-delay:.50s;

}

.method-card:nth-child(6){

transition-delay:.60s;

}

/*=========================================
SECTION FADE
==========================================*/

.methodology-section{

    animation:sectionFade .8s ease;

}

@keyframes sectionFade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================================
SMOOTH PERFORMANCE
==========================================*/

.method-card,
.method-icon,
.section-tag,
.method-card h3,
.method-card p{

    will-change:transform;

}
/*=========================================
KRR HIGH SCHOOL
TEACHING METHODOLOGY
PART 3 : Responsive + Performance
==========================================*/

/*=========================
Large Laptop
==========================*/

@media (max-width:1200px){

.methodology-container{

max-width:1100px;

}

}

/*=========================
Tablet
==========================*/

@media (max-width:991px){

.methodology-section{

padding:80px 20px;

}

.section-header{

margin-bottom:55px;

}

.section-header h2{

font-size:38px;

}

.methodology-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

}

/*=========================
Mobile
==========================*/

@media (max-width:767px){

.methodology-section{

padding:70px 18px;

}

.section-header{

margin-bottom:40px;

}

.section-tag{

font-size:13px;

padding:8px 20px;

}

.section-header h2{

font-size:30px;

}

.section-header p{

font-size:15px;

line-height:1.8;

}

.methodology-grid{

grid-template-columns:1fr;

gap:20px;

}

.method-card{

padding:30px 25px;

}

.method-icon{

width:70px;
height:70px;

font-size:30px;

}

.method-card h3{

font-size:22px;

}

.method-card p{

font-size:15px;

}

}

/*=========================
Small Mobile
==========================*/

@media (max-width:480px){

.methodology-section{

padding:60px 15px;

}

.section-header h2{

font-size:26px;

}

.method-card{

padding:25px 20px;

border-radius:16px;

}

.method-icon{

width:65px;
height:65px;

font-size:28px;

margin-bottom:20px;

}

.method-card h3{

font-size:20px;

}

.method-card p{

font-size:14px;

line-height:1.7;

}

}

/*=========================
Performance
==========================*/

.method-card,
.method-icon,
.section-header{

backface-visibility:hidden;

transform-style:preserve-3d;

}

html{

scroll-behavior:smooth;

}

/* Accessibility */

@media (prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-df82b14 *//*=========================================
KRR HIGH SCHOOL
WHY CHOOSE KRR HIGH SCHOOL
PART 1 : Layout + Typography + Cards
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0A4DA2;
    --secondary:#FFD54F;
    --dark:#1E293B;
    --text:#64748B;
    --white:#FFFFFF;
    --light:#F8FBFF;
    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/*=========================================
SECTION
==========================================*/

.why-krr-section{

    position:relative;

    padding:100px 20px;

    background:linear-gradient(180deg,#ffffff 0%,#F8FBFF 100%);

    overflow:hidden;

}

/* Background Decorations */

.why-krr-section::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    top:-180px;
    left:-180px;

    background:#EDF5FF;

    border-radius:50%;

}

.why-krr-section::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    bottom:-140px;
    right:-140px;

    background:rgba(255,213,79,.15);

    border-radius:50%;

}

.why-krr-container{

    max-width:1250px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*=========================================
SECTION HEADER
==========================================*/

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:10px 24px;

    background:#EDF5FF;

    color:var(--primary);

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:20px;

}

.section-header h2{

    font-size:46px;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:700;

}

.section-header h2 span{

    color:var(--primary);

}

.section-header p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

}

/*=========================================
FEATURE GRID
==========================================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*=========================================
CARD
==========================================*/

.why-card{

    position:relative;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 28px;

    box-shadow:var(--shadow);

    overflow:hidden;

    transition:.4s ease;

}

/* Premium Top Border */

.why-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

}

/* Decorative Circle */

.why-card::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    right:-55px;
    bottom:-55px;

    background:rgba(10,77,162,.05);

    border-radius:50%;

}

/*=========================================
ICON
==========================================*/

.why-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EDF5FF;

    border-radius:18px;

    color:var(--primary);

    font-size:34px;

    margin-bottom:22px;

}

/*=========================================
TITLE
==========================================*/

.why-card h3{

    font-size:22px;

    font-weight:600;

    color:var(--dark);

    margin-bottom:15px;

    line-height:1.4;

}

/*=========================================
DESCRIPTION
==========================================*/

.why-card p{

    font-size:15px;

    line-height:1.8;

    color:var(--text);

}

/*=========================================
COMMON
==========================================*/

img{

    max-width:100%;

    display:block;

}
/*=========================================
KRR HIGH SCHOOL
WHY CHOOSE KRR HIGH SCHOOL
PART 2 : Premium Hover + Animation
==========================================*/

/*=========================================
CARD HOVER
==========================================*/

.why-card:hover{

    transform:translateY(-12px);

    border-color:rgba(10,77,162,.20);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*=========================================
TOP BORDER
==========================================*/

.why-card::before{

    transition:.4s ease;

}

.why-card:hover::before{

    height:7px;

    background:linear-gradient(90deg,#0A4DA2,#FFD54F);

}

/*=========================================
ICON
==========================================*/

.why-icon{

    transition:all .45s ease;

    animation:iconFloat 3.5s ease-in-out infinite;

}

.why-card:hover .why-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg) scale(1.08);

    box-shadow:0 15px 35px rgba(10,77,162,.30);

}

/*=========================================
FLOATING ICON
==========================================*/

@keyframes iconFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
TITLE
==========================================*/

.why-card h3{

    transition:.35s ease;

}

.why-card:hover h3{

    color:var(--primary);

}

/*=========================================
DESCRIPTION
==========================================*/

.why-card p{

    transition:.35s ease;

}

.why-card:hover p{

    color:#475569;

}

/*=========================================
BACKGROUND DECORATION
==========================================*/

.why-card::after{

    transition:.5s ease;

}

.why-card:hover::after{

    transform:scale(1.35);

    background:rgba(255,213,79,.15);

}

/*=========================================
SECTION TAG
==========================================*/

.section-tag{

    transition:.35s ease;

}

.section-tag:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================
HEADING UNDERLINE
==========================================*/

.section-header h2 span{

    position:relative;

}

.section-header h2 span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:3px;

    border-radius:50px;

    background:var(--secondary);

}

/*=========================================
SCROLL REVEAL
==========================================*/

.section-header,
.why-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .9s ease;

}

.section-header.show,
.why-card.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
STAGGER ANIMATION
==========================================*/

.why-card:nth-child(1){transition-delay:.10s;}
.why-card:nth-child(2){transition-delay:.20s;}
.why-card:nth-child(3){transition-delay:.30s;}
.why-card:nth-child(4){transition-delay:.40s;}
.why-card:nth-child(5){transition-delay:.50s;}
.why-card:nth-child(6){transition-delay:.60s;}
.why-card:nth-child(7){transition-delay:.70s;}
.why-card:nth-child(8){transition-delay:.80s;}

/*=========================================
SECTION FADE
==========================================*/

.why-krr-section{

    animation:sectionFade .8s ease;

}

@keyframes sectionFade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================================
SMOOTH PERFORMANCE
==========================================*/

.why-card,
.why-icon,
.section-tag,
.why-card h3,
.why-card p{

    will-change:transform;

}
/*=========================================
KRR HIGH SCHOOL
WHY CHOOSE KRR HIGH SCHOOL
PART 3 : Responsive + Performance
==========================================*/

/*==============================
Large Laptop
==============================*/

@media (max-width:1200px){

.why-krr-container{

max-width:1100px;

}

.why-grid{

grid-template-columns:repeat(4,1fr);

gap:25px;

}

}

/*==============================
Tablet
==============================*/

@media (max-width:991px){

.why-krr-section{

padding:80px 20px;

}

.section-header{

margin-bottom:55px;

}

.section-header h2{

font-size:38px;

}

.why-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.why-card{

padding:30px 25px;

}

}

/*==============================
Mobile
==============================*/

@media (max-width:767px){

.why-krr-section{

padding:70px 18px;

}

.section-header{

margin-bottom:40px;

}

.section-tag{

font-size:13px;

padding:8px 20px;

}

.section-header h2{

font-size:30px;

line-height:1.4;

}

.section-header p{

font-size:15px;

line-height:1.8;

}

.why-grid{

grid-template-columns:1fr;

gap:20px;

}

.why-card{

padding:28px 22px;

border-radius:18px;

}

.why-icon{

width:70px;

height:70px;

font-size:30px;

margin-bottom:20px;

}

.why-card h3{

font-size:20px;

}

.why-card p{

font-size:15px;

}

}

/*==============================
Small Mobile
==============================*/

@media (max-width:480px){

.why-krr-section{

padding:60px 15px;

}

.section-header h2{

font-size:26px;

}

.section-header p{

font-size:14px;

}

.why-card{

padding:24px 20px;

}

.why-icon{

width:65px;

height:65px;

font-size:28px;

}

.why-card h3{

font-size:19px;

}

.why-card p{

font-size:14px;

line-height:1.7;

}

}

/*==============================
Performance
==============================*/

.why-card,
.why-icon,
.section-header{

backface-visibility:hidden;

transform-style:preserve-3d;

}

html{

scroll-behavior:smooth;

}

/*==============================
Accessibility
==============================*/

@media (prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d4252dd *//*=========================================
KRR HIGH SCHOOL
PREMIUM ADMISSIONS CTA
PART 1 : Layout + Typography
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0A4DA2;
    --secondary:#FFD54F;
    --dark:#1E293B;
    --white:#FFFFFF;
    --text:#EAF2FF;
    --border:rgba(255,255,255,.18);

    --shadow:0 25px 60px rgba(0,0,0,.18);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/*=========================================
SECTION
==========================================*/

.admission-cta{

    position:relative;

    padding:110px 20px;

    overflow:hidden;

    background:
    linear-gradient(135deg,#0A4DA2 0%,#06397A 100%);

}

/*=========================================
BACKGROUND DECORATION
==========================================*/

.admission-cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    left:-180px;
    top:-180px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

}

.admission-cta::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    right:-120px;
    bottom:-120px;

    background:rgba(255,213,79,.12);

    border-radius:50%;

}

/*=========================================
OVERLAY
==========================================*/

.cta-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        rgba(0,0,0,.08),
        rgba(0,0,0,.12)
    );

}

/*=========================================
CONTAINER
==========================================*/

.cta-container{

    position:relative;

    z-index:2;

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

/*=========================================
LEFT CONTENT
==========================================*/

.cta-content{

    color:#fff;

}

/*=========================================
TAG
==========================================*/

.cta-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    font-size:14px;

    font-weight:600;

    letter-spacing:.6px;

    margin-bottom:25px;

}

/*=========================================
HEADING
==========================================*/

.cta-content h2{

    font-size:52px;

    line-height:1.25;

    font-weight:700;

    margin-bottom:22px;

}

.cta-content h2 span{

    color:var(--secondary);

}

/*=========================================
DESCRIPTION
==========================================*/

.cta-content p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

    max-width:650px;

    margin-bottom:35px;

}

/*=========================================
FEATURES
==========================================*/

.cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:16px;

    font-weight:500;

}

.feature-icon{

    width:32px;
    height:32px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--secondary);

    color:#0A4DA2;

    font-weight:700;

    flex-shrink:0;

}

/*=========================================
BUTTONS
==========================================*/

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.4s ease;

}

.btn-primary{

    background:var(--secondary);

    color:#0A4DA2;

}

.btn-secondary{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.35);

}

/*=========================================
RIGHT IMAGE
==========================================*/

.cta-image{

    position:relative;

}

.cta-image img{

    width:100%;

    display:block;

    border-radius:28px;

    box-shadow:var(--shadow);

    object-fit:cover;

}

/*=========================================
ADMISSION BADGE
==========================================*/

.admission-badge{

    position:absolute;

    right: 200px;

    bottom:-85px;

    background:#fff;

    padding:18px 28px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    text-align:center;

}

.admission-badge h3{

    color:#0A4DA2;

    font-size:20px;

    margin-bottom:6px;

}

.admission-badge span{

    color:#64748B;

    font-size:15px;

    font-weight:600;

}
/*=========================================
KRR HIGH SCHOOL
PREMIUM ADMISSIONS CTA
PART 2 : Hover + Animations
==========================================*/

/*=========================================
BUTTON HOVER
==========================================*/

.btn-primary,
.btn-secondary{

    position:relative;

    overflow:hidden;

}

/* Gold Button */

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(255,213,79,.35);

}

/* Outline Button */

.btn-secondary:hover{

    background:#ffffff;

    color:var(--primary);

    border-color:#ffffff;

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(255,255,255,.18);

}

/*=========================================
BUTTON SHINE EFFECT
==========================================*/

.btn-primary::before,
.btn-secondary::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;

    height:100%;

    background:

    linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:skewX(-25deg);

    transition:.75s;

}

.btn-primary:hover::before,
.btn-secondary:hover::before{

    left:140%;

}

/*=========================================
FEATURE ITEM
==========================================*/

.feature-item{

    transition:.35s ease;

}

.feature-item:hover{

    transform:translateX(8px);

}

.feature-item:hover .feature-icon{

    background:#ffffff;

    color:var(--primary);

    transform:scale(1.1);

}

.feature-icon{

    transition:.35s ease;

}

/*=========================================
IMAGE
==========================================*/

.cta-image{

    overflow:visible;

}

.cta-image img{

    transition:transform .6s ease;

}

.cta-image:hover img{

    transform:scale(1.05);

}

/*=========================================
IMAGE GLOW
==========================================*/

.cta-image::before{

    content:"";

    position:absolute;

    inset:-12px;

    border-radius:32px;

    background:

    linear-gradient(
        135deg,
        rgba(255,213,79,.20),
        rgba(255,255,255,.08)
    );

    z-index:-1;

    opacity:0;

    transition:.45s ease;

}

.cta-image:hover::before{

    opacity:1;

}

/*=========================================
FLOATING BADGE
==========================================*/

.admission-badge{

    transition:.4s ease;

    animation:badgeFloat 4s ease-in-out infinite;

}

.cta-image:hover .admission-badge{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(0,0,0,.22);

}

@keyframes badgeFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
TAG HOVER
==========================================*/

.cta-tag{

    transition:.35s ease;

}

.cta-tag:hover{

    background:rgba(255,255,255,.22);

    transform:translateY(-3px);

}

/*=========================================
HEADING EFFECT
==========================================*/

.cta-content h2 span{

    position:relative;

}

.cta-content h2 span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:3px;

    border-radius:20px;

    background:var(--secondary);

}

/*=========================================
CONTENT REVEAL
==========================================*/

.cta-content,
.cta-image{

    opacity:0;

    transform:translateY(60px);

    transition:all .9s ease;

}

.cta-content.show,
.cta-image.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
STAGGER EFFECT
==========================================*/

.cta-content{

    transition-delay:.15s;

}

.cta-image{

    transition-delay:.35s;

}

/*=========================================
SECTION FADE
==========================================*/

.admission-cta{

    animation:ctaFade .8s ease;

}

@keyframes ctaFade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================================
SMOOTH PERFORMANCE
==========================================*/

.btn-primary,
.btn-secondary,
.cta-image img,
.admission-badge,
.feature-item{

    will-change:transform;

}
/*=========================================
KRR HIGH SCHOOL
PREMIUM ADMISSIONS CTA
PART 3 : Responsive + Performance
==========================================*/

/*==============================
Large Laptop
==============================*/

@media (max-width:1200px){

.cta-container{

gap:50px;

}

.cta-content h2{

font-size:46px;

}

}

/*==============================
Tablet
==============================*/

@media (max-width:991px){

.admission-cta{

padding:90px 20px;

}

.cta-container{

grid-template-columns:1fr;

gap:50px;

text-align:center;

}

.cta-content{

order:1;

}

.cta-image{

order:2;

max-width:650px;

margin:auto;

}

.cta-content p{

margin-left:auto;

margin-right:auto;

}

.cta-features{

grid-template-columns:repeat(2,1fr);

text-align:left;

}

.cta-buttons{

justify-content:center;

}

.admission-badge{

right:20px;

bottom:20px;

}

}

/*==============================
Mobile
==============================*/

@media (max-width:767px){

.admission-cta{

padding:70px 18px;

}

.cta-content h2{

font-size:34px;

line-height:1.35;

}

.cta-content p{

font-size:15px;

line-height:1.8;

}

.cta-features{

grid-template-columns:1fr;

gap:15px;

}

.feature-item{

font-size:15px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

gap:15px;

}

.btn-primary,
.btn-secondary{

width:100%;

max-width:320px;

padding:15px 30px;

}

.admission-badge{

position:relative;

right:auto;

bottom:auto;

margin:20px auto 0;

display:inline-block;

}

}

/*==============================
Small Mobile
==============================*/

@media (max-width:480px){

.admission-cta{

padding:60px 15px;

}

.cta-tag{

font-size:13px;

padding:8px 18px;

}

.cta-content h2{

font-size:28px;

}

.cta-content p{

font-size:14px;

}

.feature-icon{

width:28px;

height:28px;

font-size:14px;

}

.feature-item{

font-size:14px;

}

.admission-badge{

padding:15px 22px;

}

.admission-badge h3{

font-size:18px;

}

.admission-badge span{

font-size:14px;

}

}

/*==============================
Performance
==============================*/

.admission-cta,
.cta-content,
.cta-image,
.btn-primary,
.btn-secondary{

backface-visibility:hidden;

transform-style:preserve-3d;

}

html{

scroll-behavior:smooth;

}

/*==============================
Accessibility
==============================*/

@media (prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}/* End custom CSS */