/* Start custom CSS for html, class: .elementor-element-02daada *//*=========================================
KRR HIGH SCHOOL - ABOUT HERO SECTION
=========================================*/

.about-hero{
    position:relative;
    width:100%;
    height:100vh;

    background:url("https://krrhighschool.com/wp-content/uploads/2026/07/ChatGPT-Image-Jul-23-2026-02_54_46-PM.png") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    animation:heroZoom 12s ease-in-out infinite alternate;
}

/*=========================================
Overlay
=========================================*/

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,32,71,.72),
        rgba(0,32,71,.55),
        rgba(0,0,0,.35)
    );

    z-index:1;
}

/*=========================================
Content
=========================================*/

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;

    color:#fff;

    max-width:900px;

    padding:20px;

    animation:fadeUp 1.2s ease forwards;
}

/*=========================================
Small Tag
=========================================*/

.hero-tag{

    display:inline-block;

    color:#FFD24A;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

    animation:slideDown .8s ease;
}

/*=========================================
Heading
=========================================*/

.hero-content h1{

    font-size:72px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:22px;

    letter-spacing:-1px;

    color:#fff;

    text-shadow:0 10px 30px rgba(0,0,0,.30);

    animation:heroTitle 1s ease;
}

/*=========================================
Breadcrumb
=========================================*/

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-size:17px;

    animation:fadeIn 1.5s ease;
}

.breadcrumb a{

    color:#ffffff;

    text-decoration:none;

    transition:.35s;
}

.breadcrumb a:hover{

    color:#FFD24A;
}

.breadcrumb span{

    color:rgba(255,255,255,.75);
}

.breadcrumb .active{

    color:#FFD24A;

    font-weight:600;
}

/*=========================================
Animations
=========================================*/

@keyframes heroZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.06);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes slideDown{

from{

opacity:0;

transform:translateY(-20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes heroTitle{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================================
Responsive
=========================================*/

@media(max-width:992px){

.hero-content h1{

font-size:56px;

}

}

@media(max-width:768px){

.about-hero{

height:75vh;

}

.hero-tag{

font-size:13px;

letter-spacing:3px;

}

.hero-content h1{

font-size:40px;

}

.breadcrumb{

font-size:15px;

}

}

@media(max-width:480px){

.about-hero{

height:65vh;

}

.hero-tag{

font-size:12px;

letter-spacing:2px;

}

.hero-content h1{

font-size:30px;

line-height:1.3;

}

.breadcrumb{

font-size:14px;

gap:8px;

}

}
/* JS Animation */

.hero-content{

    opacity:0;

    transform:translateY(40px);

    transition:1s ease;

}

.hero-content.show{

    opacity:1;

    transform:translateY(0);

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3df1060 *//*=========================================
WELCOME TO KRR HIGH SCHOOL
Premium Corporate Style
=========================================*/

.welcome-section{
    padding:140px 8%;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.welcome-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*=========================================
Content
=========================================*/

.section-tag{

    display:inline-block;

    padding:10px 22px;

    background:#eef5ff;

    color:#0A3D91;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;
}

.welcome-content h2{

    font-size:52px;

    font-weight:800;

    color:#0E1B3D;

    line-height:1.2;

    margin-bottom:28px;
}

.welcome-content h2 span{

    color:#0A5BD8;
}

.welcome-content p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:22px;
}

/*=========================================
Features
=========================================*/

.welcome-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;
}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:18px 22px;

    border-radius:14px;

    border:1px solid #edf1f7;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.feature-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.feature-item i{

    color:#0A5BD8;

    font-size:20px;
}

.feature-item span{

    font-size:16px;

    font-weight:600;

    color:#0E1B3D;
}

/*=========================================
Image
=========================================*/

.welcome-image{

    position:relative;
}

.welcome-image img{

    width:100%;

    border-radius:28px;

    display:block;

    transition:.6s;

    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.welcome-image:hover img{

    transform:scale(1.03);
}

/*=========================================
Experience Card
=========================================*/

.experience-card{

    position:absolute;

    bottom:35px;

    left:-35px;

    background:#ffffff;

    padding:28px 34px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    min-width:230px;

    border-left:6px solid #0A5BD8;
}

.experience-card h3{

    font-size:48px;

    font-weight:800;

    color:#0A5BD8;

    margin-bottom:8px;
}

.experience-card p{

    font-size:15px;

    color:#666;

    line-height:1.6;
}

/*=========================================
Animations
=========================================*/

.welcome-content{

    animation:leftFade 1s ease;
}

.welcome-image{

    animation:rightFade 1.2s ease;
}

@keyframes leftFade{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes rightFade{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*=========================================
Responsive
=========================================*/

@media(max-width:1024px){

.welcome-container{

grid-template-columns:1fr;

gap:60px;

}

.experience-card{

left:20px;

bottom:20px;

}

}

@media(max-width:768px){

.welcome-section{

padding:80px 6%;

}

.welcome-content h2{

font-size:36px;

}

.welcome-features{

grid-template-columns:1fr;

}

.experience-card{

position:relative;

left:0;

bottom:0;

margin-top:-40px;

width:90%;

}

}

@media(max-width:480px){

.welcome-content h2{

font-size:30px;

}

.welcome-content p{

font-size:16px;

}

.section-tag{

font-size:12px;

padding:8px 18px;

}

.feature-item{

padding:16px;

}

.experience-card h3{

font-size:36px;

}

}
/*=========================================
PREMIUM ENTRANCE ANIMATIONS
=========================================*/

/* Left Content */

.welcome-content{

    opacity:0;

    transform:translateX(-80px);

    animation:contentLeft 1.2s ease forwards;

}

/* Right Image */

.welcome-image{

    opacity:0;

    transform:translateX(80px);

    animation:imageRight 1.3s ease .3s forwards;

}

/* Experience Card */

.experience-card{

    opacity:0;

    transform:translateX(80px);

    animation:cardRight 1s ease .7s forwards;

}

/* Image Hover */

.welcome-image img{

    transition:.6s ease;

}

.welcome-image:hover img{

    transform:scale(1.05);

}

/* Feature Cards */

.feature-item{

    transition:.4s;

}

.feature-item:hover{

    transform:translateY(-8px);

}

/*=========================================
KEYFRAMES
=========================================*/

@keyframes contentLeft{

0%{

opacity:0;

transform:translateX(-80px);

}

100%{

opacity:1;

transform:translateX(0);

}

}

@keyframes imageRight{

0%{

opacity:0;

transform:translateX(80px) scale(.95);

}

100%{

opacity:1;

transform:translateX(0) scale(1);

}

}

@keyframes cardRight{

0%{

opacity:0;

transform:translateX(80px);

}

100%{

opacity:1;

transform:translateX(0);

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fbfd412 *//*=========================================
OUR JOURNEY SECTION
=========================================*/

.journey-section{
    padding:140px 8%;
    background:#fff;
    overflow:hidden;
}

.journey-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

/*=========================================
IMAGE
=========================================*/

.journey-image{
    position:relative;
    opacity:0;
    transform:translateX(-80px);
}

.journey-image.active{
    animation:imageLeft 1.2s ease forwards;
}

.journey-image img{
    width:100%;
    display:block;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
    transition:.6s;
}

.journey-image:hover img{
    transform:scale(1.05);
}

/*=========================================
BADGE
=========================================*/

.journey-badge{

    position:absolute;

    right:-25px;

    bottom:35px;

    background:#fff;

    padding:28px 35px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    border-left:5px solid #0A5BD8;

    opacity:0;

    transform:translateX(60px);

}

.journey-badge.active{

    animation:badgeRight .9s ease .6s forwards;

}

.journey-badge h3{

    font-size:42px;

    color:#0A5BD8;

    margin-bottom:5px;

}

.journey-badge p{

    color:#666;

    font-size:15px;

}

/*=========================================
CONTENT
=========================================*/

.journey-content{

    opacity:0;

    transform:translateX(80px);

}

.journey-content.active{

    animation:textRight 1.2s ease forwards;

}

.journey-content h2{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    color:#111;

    margin:20px 0;

}

.journey-content h2 span{

    color:#0A5BD8;

}

.journey-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:22px;

}

/*=========================================
HIGHLIGHTS
=========================================*/

.journey-highlights{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

    margin-top:35px;

}

.journey-item{

    display:flex;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:#fff;

    border:1px solid #edf2f7;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.journey-item:hover{

    transform:translateY(-8px);

    border-color:#0A5BD8;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.journey-item i{

    font-size:24px;

    color:#0A5BD8;

    margin-top:3px;

}

.journey-item h4{

    font-size:18px;

    color:#111;

    margin-bottom:8px;

}

.journey-item p{

    font-size:15px;

    margin:0;

    line-height:1.6;

}

/*=========================================
ANIMATIONS
=========================================*/

@keyframes imageLeft{

from{

opacity:0;

transform:translateX(-80px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes textRight{

from{

opacity:0;

transform:translateX(80px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes badgeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.journey-container{

grid-template-columns:1fr;

gap:60px;

}

.journey-highlights{

grid-template-columns:1fr;

}

.journey-badge{

right:20px;

bottom:20px;

}

}

@media(max-width:768px){

.journey-section{

padding:90px 6%;

}

.journey-content h2{

font-size:36px;

}

.journey-badge{

position:relative;

right:0;

bottom:0;

margin-top:-40px;

width:90%;

}

}

@media(max-width:480px){

.journey-content h2{

font-size:30px;

}

.journey-item{

padding:18px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-418a2ed *//*=========================================
OUR VISION & MISSION
=========================================*/

.vision-section{
    padding:140px 8%;
    background:#fff;
    overflow:hidden;
}

.vision-header{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
    opacity:0;
    transform:translateY(60px);
}

.vision-header.active{
    animation:fadeUp 1s ease forwards;
}

.vision-header h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#111;
    margin:20px 0;
}

.vision-header h2 span{
    color:#0A5BD8;
}

.vision-header p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

/*=========================================
CARDS
=========================================*/

.vision-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.vision-card{
    background:#fff;
    padding:45px;
    border-radius:28px;
    border:1px solid #edf2f7;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
    transition:.45s;
}

.vision-container .vision-card:first-child{
    opacity:0;
    transform:translateX(-80px);
}

.vision-container .vision-card:last-child{
    opacity:0;
    transform:translateX(80px);
}

.vision-container .vision-card:first-child.active{
    animation:leftCard 1s ease forwards;
}

.vision-container .vision-card:last-child.active{
    animation:rightCard 1s ease forwards;
}

.vision-card:hover{
    transform:translateY(-12px);
    border-color:#0A5BD8;
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/*=========================================
ICON
=========================================*/

.vision-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:#EEF5FF;
    color:#0A5BD8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.vision-card:hover .vision-icon{
    background:#0A5BD8;
    color:#fff;
    transform:rotate(-8deg) scale(1.08);
}

.mission-icon{
    background:#FFF4E8;
    color:#F59E0B;
}

.vision-card:hover .mission-icon{
    background:#F59E0B;
    color:#fff;
}

/*=========================================
TEXT
=========================================*/

.vision-card h3{
    font-size:30px;
    color:#111;
    margin-bottom:18px;
}

.vision-card p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

.vision-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.vision-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:16px;
    color:#444;
    font-weight:600;
}

.vision-card ul li i{
    color:#0A5BD8;
    font-size:18px;
}

/*=========================================
ANIMATION
=========================================*/

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(60px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes leftCard{

from{
opacity:0;
transform:translateX(-80px);
}

to{
opacity:1;
transform:translateX(0);
}

}

@keyframes rightCard{

from{
opacity:0;
transform:translateX(80px);
}

to{
opacity:1;
transform:translateX(0);
}

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.vision-container{
grid-template-columns:1fr;
}

.vision-header h2{
font-size:40px;
}

}

@media(max-width:768px){

.vision-section{
padding:90px 6%;
}

.vision-header{
margin-bottom:50px;
}

.vision-header h2{
font-size:34px;
}

.vision-card{
padding:35px;
}

}

@media(max-width:480px){

.vision-header h2{
font-size:28px;
}

.vision-header p,
.vision-card p{
font-size:16px;
}

.vision-card{
padding:28px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8a3af03 *//*=========================================
OUR CORE VALUES
Premium Corporate Style
=========================================*/

.values-section{
    padding:140px 8%;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.values-container{
    max-width:1400px;
    margin:auto;
}

.values-header{
    max-width:820px;
    margin:0 auto 70px;
    text-align:center;

    opacity:0;
    transform:translateY(60px);
}

.values-header.active{
    animation:fadeUp 1s ease forwards;
}

/*=========================================
Heading
=========================================*/

.values-header h2{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    color:#0E1B3D;

    margin:20px 0;
}

.values-header h2 span{

    color:#0A5BD8;
}

.values-header p{

    font-size:17px;

    color:#666;

    line-height:1.9;
}

/*=========================================
Grid
=========================================*/

.values-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/*=========================================
Cards
=========================================*/

.value-card{

    background:#fff;

    border-radius:26px;

    padding:40px 35px;

    border:1px solid #edf2f7;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    transition:.45s;

    opacity:0;

    transform:translateY(60px);

}

.value-card.active{

    animation:cardUp .8s ease forwards;

}

.value-card:hover{

    transform:translateY(-12px);

    border-color:#0A5BD8;

    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

/*=========================================
Icons
=========================================*/

.value-icon{

    width:78px;

    height:78px;

    border-radius:22px;

    background:#EEF5FF;

    color:#0A5BD8;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

    transition:.45s;
}

.value-card:hover .value-icon{

    background:#0A5BD8;

    color:#fff;

    transform:rotate(-8deg) scale(1.08);
}

/*=========================================
Text
=========================================*/

.value-card h3{

    font-size:24px;

    font-weight:700;

    color:#0E1B3D;

    margin-bottom:18px;
}

.value-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;
}

/*=========================================
Animations
=========================================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes cardUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
Responsive
=========================================*/

@media(max-width:1024px){

.values-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.values-section{

padding:90px 6%;

}

.values-header{

margin-bottom:50px;

}

.values-header h2{

font-size:36px;

}

.values-container{

grid-template-columns:1fr;

}

.value-card{

padding:32px;

}

}

@media(max-width:480px){

.values-header h2{

font-size:30px;

}

.values-header p{

font-size:16px;

}

.value-card h3{

font-size:22px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7504c7f *//*=========================================
PRINCIPAL'S MESSAGE
Premium Corporate CSS
=========================================*/

.principal-section{
    padding:140px 8%;
    background:#ffffff;
    overflow:hidden;
    position:relative;
}

.principal-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:460px 1fr;
    gap:80px;
    align-items:center;
}

/*=========================================
IMAGE
=========================================*/

.principal-image{
    position:relative;
    opacity:0;
    transform:translateX(-80px);
}

.principal-image.active{
    animation:imageLeft 1s ease forwards;
}

.principal-image img{
    width:100%;
    display:block;
    border-radius:32px;
    object-fit:cover;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
    transition:.6s ease;
}

.principal-image:hover img{
    transform:scale(1.05);
}

/*=========================================
BADGE
=========================================*/

.principal-badge{

    position:absolute;

    bottom:30px;

    right:-20px;

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:18px 26px;

    border-radius:18px;

    border-left:5px solid #0A5BD8;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    opacity:0;

    transform:translateX(60px);

}

.principal-badge.active{

    animation:badgeRight .9s ease .5s forwards;

}

.principal-badge i{

    font-size:22px;

    color:#0A5BD8;

}

.principal-badge span{

    font-size:16px;

    font-weight:700;

    color:#0E1B3D;

}

/*=========================================
CONTENT
=========================================*/

.principal-content{

    opacity:0;

    transform:translateX(80px);

}

.principal-content.active{

    animation:textRight 1s ease .2s forwards;

}

.principal-content h2{

    font-size:52px;

    font-weight:800;

    color:#0E1B3D;

    line-height:1.2;

    margin:18px 0 25px;

}

.principal-content h2 span{

    color:#0A5BD8;

}

.principal-content p{

    font-size:17px;

    color:#666;

    line-height:1.9;

}

/*=========================================
QUOTE BOX
=========================================*/

.quote-box{

    position:relative;

    background:#fff;

    padding:40px;

    margin-top:30px;

    border-radius:24px;

    border:1px solid #edf2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.quote-box i{

    font-size:40px;

    color:#0A5BD8;

    margin-bottom:18px;

}

/*=========================================
SIGNATURE
=========================================*/

.principal-signature{

    margin-top:35px;

}

.principal-signature h4{

    font-size:28px;

    color:#0E1B3D;

    margin-bottom:8px;

}

.principal-signature span{

    display:block;

    font-size:16px;

    color:#0A5BD8;

    font-weight:600;

    margin-bottom:12px;

}

.designation{

    display:inline-block;

    background:#EEF5FF;

    color:#0A5BD8;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.principal-signature p{

    color:#666;

    font-size:16px;

}

/*=========================================
ANIMATIONS
=========================================*/

@keyframes imageLeft{

from{

opacity:0;

transform:translateX(-80px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes textRight{

from{

opacity:0;

transform:translateX(80px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes badgeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1024px){

.principal-container{

grid-template-columns:1fr;

gap:60px;

}

.principal-image{

max-width:500px;

margin:auto;

}

.principal-badge{

right:20px;

}

}

@media(max-width:768px){

.principal-section{

padding:90px 6%;

}

.principal-content h2{

font-size:36px;

}

.quote-box{

padding:30px;

}

.principal-badge{

position:relative;

right:0;

bottom:0;

margin-top:-35px;

width:90%;

}

}

@media(max-width:480px){

.principal-content h2{

font-size:30px;

}

.principal-signature h4{

font-size:24px;

}

.quote-box{

padding:25px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fd887cd *//*=========================================
CTA SECTION
=========================================*/

.cta-section{

    padding:120px 8%;

    background:linear-gradient(135deg,#0b5ed7,#003d99);

    text-align:center;

    overflow:hidden;

}

.cta-container{

    max-width:900px;

    margin:auto;

    opacity:0;

    transform:translateY(80px);

}

.cta-container.active{

    animation:ctaFade 1s ease forwards;

}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.cta-section h2{

    margin:25px 0;

    font-size:52px;

    color:#fff;

    font-weight:800;

    line-height:1.2;

}

.cta-section h2 span{

    color:#FFD54A;

}

.cta-section p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:0 auto;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:45px;

    flex-wrap:wrap;

}

.cta-btn{

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    transition:.4s;

}

.primary{

    background:#fff;

    color:#0b5ed7;

}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.25);

}

.secondary{

    border:2px solid #fff;

    color:#fff;

}

.secondary:hover{

    background:#fff;

    color:#0b5ed7;

    transform:translateY(-5px);

}

@keyframes ctaFade{

from{

opacity:0;

transform:translateY(80px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:768px){

.cta-section{

padding:90px 6%;

}

.cta-section h2{

font-size:36px;

}

.cta-section p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.cta-btn{

width:280px;

text-align:center;

}

}/* End custom CSS */