/*==================================================
PART A
==================================================*/

:root{
    --royal-primary:#7d1128;
    --royal-secondary:#b88a44;
    --royal-dark:#1f2937;
    --royal-light:#fffdf8;
    --royal-border:#eee6d8;
}

.royalHeroSection{
    position:relative;
    overflow:hidden;
    padding:120px 0 90px;
    background:linear-gradient(180deg,#fffdf8,#f8f3eb);
}

.royalHeroCircleOne{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(125,17,40,.05);
    top:-160px;
    left:-120px;
}

.royalHeroCircleTwo{
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(184,138,68,.08);
    right:-120px;
    bottom:-120px;
}

.royalHeroBadge{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:#fff;
    color:var(--royal-primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.royalHeroTitle{
    font-size:54px;
    font-weight:800;
    color:var(--royal-dark);
    line-height:1.2;
    margin-bottom:30px;
}

.royalHeroTitle span{
    display:block;
    color:var(--royal-primary);
    font-size:36px;
    margin-top:12px;
}

.royalHeroDescription{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.9;
}

.royalHeroButtons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

.royalPrimaryButton{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    background:var(--royal-primary);
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.royalPrimaryButton:hover{
    transform:translateY(-4px);
    color:#fff;
}

.royalSecondaryButton{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    border:2px solid var(--royal-primary);
    color:var(--royal-primary);
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.royalSecondaryButton:hover{
    background:var(--royal-primary);
    color:#fff;
}

/*=========================
Partner Section
==========================*/

.royalPartnerWrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    margin-top:70px;
    flex-wrap:wrap;
}

.royalPartnerCard{
    background:#fff;
    border-radius:25px;
    padding:40px;
    width:330px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.royalPartnerCard:hover{
    transform:translateY(-10px);
}

.royalPartnerLogo{
    width:120px;
    height:120px;
    margin:auto auto 25px;
    border-radius:50%;
    background:#fafafa;
    display:flex;
    justify-content:center;
    align-items:center;
}

.royalPartnerLogo img{
    width:90px;
}

.royalPartnerCard h3{
    font-size:25px;
    margin-bottom:10px;
    color:var(--royal-dark);
    font-weight:700;
}

.royalPartnerCard span{
    color:var(--royal-primary);
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
}

.royalPartnerCenter{
    display:flex;
    justify-content:center;
    align-items:center;
}

.royalPartnerIcon{
    width:95px;
    height:95px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--royal-primary),#9b1734);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 40px rgba(125,17,40,.35);
}

/*=========================
Highlight Cards
==========================*/

.royalHighlightCard{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    border:1px solid var(--royal-border);
    transition:.4s;
    height:100%;
}

.royalHighlightCard:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.royalHighlightIcon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(125,17,40,.08);
    color:var(--royal-primary);
    font-size:28px;
    margin-bottom:20px;
}

.royalHighlightCard h2{
    font-size:36px;
    color:var(--royal-primary);
    margin-bottom:10px;
    font-weight:800;
}

.royalHighlightCard p{
    margin:0;
    color:#666;
    font-size:16px;
}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.royalHeroSection{
    padding:80px 0;
}

.royalHeroTitle{
    font-size:40px;
}

.royalHeroTitle span{
    font-size:28px;
}

.royalPartnerWrapper{
    gap:25px;
}

}

@media(max-width:767px){

.royalHeroTitle{
    font-size:30px;
}

.royalHeroTitle span{
    font-size:22px;
}

.royalHeroDescription{
    font-size:16px;
}

.royalPartnerCard{
    width:100%;
}

.royalHeroButtons{
    flex-direction:column;
}

.royalPrimaryButton,
.royalSecondaryButton{
    justify-content:center;
}

}

/*==================================================
PART B
ABOUT + HISTORY SECTION
==================================================*/

.royalAboutSection,
.royalHistorySection{
    position:relative;
    padding:110px 0;
    background:#ffffff;
}

.royalSectionTag{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:rgba(125,17,40,.08);
    color:var(--royal-primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.royalSectionTitle{
    font-size:46px;
    line-height:1.25;
    color:var(--royal-dark);
    font-weight:800;
    margin-bottom:20px;
}

.royalSectionDivider{
    width:90px;
    height:4px;
    background:linear-gradient(to right,var(--royal-primary),var(--royal-secondary));
    border-radius:20px;
    margin:20px 0 35px;
}

.royalAboutSection p,
.royalHistorySection p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:22px;
}

/*=========================
Partner Logo Strip
=========================*/

.royalPartnerLogoStrip{
    margin-top:35px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    display:inline-block;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.royalPartnerLogoStrip img{
    max-width:280px;
    width:100%;
}

/*=========================
Statistics Cards
=========================*/

.royalStatsCard{
    background:#fff;
    border-radius:24px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #eee;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
}

.royalStatsCard:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.royalStatsIcon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(125,17,40,.08);
    color:var(--royal-primary);
    font-size:28px;
    margin-bottom:22px;
}

.royalStatsCard h3{
    font-size:36px;
    color:var(--royal-primary);
    font-weight:800;
    margin-bottom:8px;
}

.royalStatsCard span{
    color:#666;
    font-size:16px;
}

/*=========================
Feature List
=========================*/

.royalFeatureList{
    list-style:none;
    margin:35px 0 0;
    padding:0;
}

.royalFeatureList li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:#444;
    font-size:17px;
    font-weight:500;
}

.royalFeatureList i{
    color:#16a34a;
    font-size:20px;
}

/*=========================
History Gallery
=========================*/

.royalHistoryGallery{
    position:relative;
    min-height:560px;
}

.royalHistoryImageOne,
.royalHistoryImageTwo{
    position:absolute;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.royalHistoryImageOne{
    width:78%;
    left:0;
    top:0;
}

.royalHistoryImageTwo{
    width:60%;
    right:0;
    bottom:0;
}

.royalHistoryImageOne img,
.royalHistoryImageTwo img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:.4s;
}

.royalHistoryImageOne:hover img,
.royalHistoryImageTwo:hover img{
    transform:scale(1.05);
}

/*=========================
Spacing
=========================*/

.royalSectionSpace{
    height:90px;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .royalAboutSection,
    .royalHistorySection{
        padding:80px 0;
    }

    .royalSectionTitle{
        font-size:36px;
    }

    .royalHistoryGallery{
        min-height:auto;
    }

    .royalHistoryImageOne,
    .royalHistoryImageTwo{
        position:relative;
        width:100%;
        margin-bottom:25px;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
    }

}

@media(max-width:767px){

    .royalSectionTitle{
        font-size:28px;
    }

    .royalAboutSection p,
    .royalHistorySection p{
        font-size:15px;
    }

    .royalStatsCard{
        padding:25px;
    }

    .royalStatsCard h3{
        font-size:30px;
    }

}
/*==================================================
PART C
PROGRAMMES + QUOTE + CTA
==================================================*/

.royalProgrammeSection{
    padding:110px 0;
    background:#faf7f2;
    position:relative;
    overflow:hidden;
}

.royalSectionDescription{
    max-width:760px;
    margin:25px auto 0;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/*=========================
Programme Cards
=========================*/

.royalProgrammeCard{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    border:1px solid #eee8dd;
    transition:.4s;
    overflow:hidden;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.royalProgrammeCard::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--royal-primary),var(--royal-secondary));
}

.royalProgrammeCard:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.royalProgrammeIcon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(125,17,40,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--royal-primary);
    font-size:34px;
    margin-bottom:28px;
}

.royalProgrammeCard h3{
    font-size:28px;
    color:var(--royal-dark);
    margin-bottom:18px;
    font-weight:700;
}

.royalProgrammeCard p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.royalProgrammeCard ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.royalProgrammeCard li{
    padding:10px 0;
    color:#444;
    border-bottom:1px solid #f2f2f2;
}

.royalProgrammeCard li:last-child{
    border:none;
}

.royalProgrammeCard a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:13px 28px;
    border-radius:50px;
    background:var(--royal-primary);
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.royalProgrammeCard a:hover{
    background:var(--royal-secondary);
    color:#fff;
}

/*=========================
Quote Box
=========================*/

.royalQuoteBox{
    position:relative;
    margin-top:90px;
    background:#fff;
    border-radius:30px;
    padding:60px;
    text-align:center;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.royalQuoteIcon{
    width:90px;
    height:90px;
    margin:auto;
    margin-top:-105px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--royal-primary),var(--royal-secondary));
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 35px rgba(125,17,40,.30);
}

.royalQuoteBox p{
    font-size:20px;
    color:#555;
    line-height:2;
    font-style:italic;
    margin:35px 0 25px;
}

.royalQuoteBox h5{
    font-size:20px;
    color:var(--royal-primary);
    font-weight:700;
}

/*=========================
Programme CTA
=========================*/

.royalProgrammeCTA{
    margin-top:70px;
    background:linear-gradient(135deg,var(--royal-primary),#8d1833);
    color:#fff;
    border-radius:30px;
    padding:45px 50px;
    box-shadow:0 20px 45px rgba(125,17,40,.25);
}

.royalProgrammeCTA h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
}

.royalProgrammeCTA p{
    color:rgba(255,255,255,.88);
    margin:0;
    line-height:1.8;
}

.royalApplyButton{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    background:#fff;
    color:var(--royal-primary);
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.royalApplyButton:hover{
    background:#f7f2eb;
    color:var(--royal-primary);
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .royalProgrammeSection{
        padding:80px 0;
    }

    .royalProgrammeCTA{
        text-align:center;
    }

    .royalProgrammeCTA h3{
        font-size:28px;
    }

}

@media(max-width:767px){

    .royalProgrammeCard{
        padding:30px;
    }

    .royalProgrammeCard h3{
        font-size:24px;
    }

    .royalQuoteBox{
        padding:35px 25px;
    }

    .royalQuoteBox p{
        font-size:17px;
        line-height:1.8;
    }

    .royalProgrammeCTA{
        padding:35px 25px;
    }

    .royalProgrammeCTA h3{
        font-size:24px;
    }

    .royalApplyButton{
        width:100%;
        margin-top:20px;
    }

}
/*==================================================
PART D
ADMISSION + WHY US + FINAL CTA
==================================================*/

/*=========================
Admission Section
=========================*/

.royalAdmissionSection{
    padding:110px 0;
    background:#ffffff;
    position:relative;
}

.royalStepCard{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    height:100%;
    overflow:hidden;
}

.royalStepCard::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--royal-primary),var(--royal-secondary));
}

.royalStepCard:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.royalStepNumber{

    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--royal-primary),#9b1636);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;
    font-weight:700;

}

.royalStepCard h4{

    font-size:24px;
    margin-bottom:15px;
    color:var(--royal-dark);

}

.royalStepCard p{

    color:#666;
    line-height:1.8;
    margin:0;

}

/*=========================
WHY CHOOSE US
=========================*/

.royalWhySection{

    padding:110px 0;
    background:#faf7f2;

}

.royalWhyList{

    list-style:none;
    margin:40px 0 0;
    padding:0;

}

.royalWhyList li{

    display:flex;
    align-items:center;
    gap:15px;

    padding:16px 0;

    border-bottom:1px solid #ececec;

    font-size:17px;

    color:#444;

}

.royalWhyList li:last-child{

    border:none;

}

.royalWhyList i{

    color:#16a34a;
    font-size:22px;

}

.royalWhyImage{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.royalWhyImage img{

    width:100%;
    display:block;
    transition:.5s;

}

.royalWhyImage:hover img{

    transform:scale(1.05);

}

/*=========================
FINAL CTA
=========================*/

.royalFinalCTA{

    padding:120px 0;

    background:
    linear-gradient(135deg,
    var(--royal-primary),
    #5d0c1c);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.royalFinalCTA::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-220px;
    top:-220px;

}

.royalFinalCTA::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    right:-180px;
    bottom:-180px;

}

.royalCTATag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.15);

    border-radius:40px;

    margin-bottom:22px;

    font-size:13px;

    letter-spacing:1px;

    font-weight:700;

}

.royalFinalCTA h2{

    color:#fff;

    font-size:52px;

    line-height:1.25;

    font-weight:800;

    margin-bottom:25px;

}

.royalFinalCTA p{

    max-width:760px;

    margin:auto;

    color:rgba(255,255,255,.90);

    line-height:2;

    font-size:18px;

}

.royalCTAButtons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .royalAdmissionSection,
    .royalWhySection,
    .royalFinalCTA{

        padding:80px 0;

    }

    .royalFinalCTA h2{

        font-size:38px;

    }

}

@media(max-width:767px){

    .royalStepCard{

        padding:30px 25px;

    }

    .royalStepNumber{

        width:65px;
        height:65px;

        font-size:22px;

    }

    .royalStepCard h4{

        font-size:21px;

    }

    .royalFinalCTA h2{

        font-size:28px;

    }

    .royalFinalCTA p{

        font-size:16px;

    }

    .royalCTAButtons{

        flex-direction:column;

    }

    .royalCTAButtons a{

        width:100%;
        justify-content:center;

    }

}