/* =========================================================
   ROOT / RESET
========================================================= */

:root{
    --blue:#1688ff;
    --dark-blue:#01539f;
    --black:#0b0b0b;
    --dark:#111111;
    --charcoal:#151515;
    --white:#ffffff;
    --off-white:#f5f5f3;
    --light:#eeeeeb;
    --gray:#777777;
    --light-gray:#999999;
    --border:#292929;
    --light-border:#d8d8d4;

    --heading:'Playfair Display', Georgia, serif;
    --body:'Montserrat', Arial, sans-serif;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{
    width:100%;
    overflow-x:hidden;

    background:#fff;

    color:#111;

    font-family:var(--body);

    -webkit-font-smoothing:antialiased;
}


img{
    max-width:100%;
    display:block;
}


a{
    color:inherit;
    text-decoration:none;
}


button,
input,
textarea,
select{
    font-family:inherit;
}


button{
    border:0;
}


section{
    width:100%;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:20px 0;

    background:transparent;

    transition:
        background .4s ease,
        padding .4s ease,
        box-shadow .4s ease;
}


.navbar.scrolled{
    padding:13px 0;

    background:rgba(8,8,8,.92);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:0 8px 30px rgba(0,0,0,.18);
}


.nav-container{
    width:calc(100% - 90px);

    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;
}


.logo{
    display:flex;

    align-items:center;

    width:145px;
}


.logo img{
    width:100%;

    height:auto;

    object-fit:contain;
}


.nav-menu{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:38px;

    margin-left:auto;

    margin-right:35px;
}


.nav-menu a{
    position:relative;

    color:rgba(255,255,255,.78);

    font-size:9px;

    font-weight:600;

    letter-spacing:1.5px;

    transition:.3s ease;
}


.nav-menu a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:1px;

    background:var(--blue);

    transition:.3s ease;
}


.nav-menu a:hover,
.nav-menu a.active{
    color:#fff;
}


.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}


.nav-right{
    display:flex;

    align-items:center;

    gap:20px;
}


/* =========================================================
   APPLY BUTTON
========================================================= */

.apply-btn{
    position:relative;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:120px;

    padding:12px 22px;

    border:1px solid rgba(255,255,255,.55);

    border-radius:6px;

    background:transparent;

    color:#fff;

    font-family:var(--body);

    font-size:9px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    overflow:hidden;

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.apply-btn::before{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:0;

    background:var(--blue);

    z-index:-1;

    transition:height .35s ease;
}


.apply-btn:hover{
    color:#fff;

    border-color:var(--blue);

    transform:translateY(-2px);
}


.apply-btn:hover::before{
    height:100%;
}


/* =========================================================
   HAMBURGER
========================================================= */

#hamburger,
#nav-btn{
    width:35px;
    height:35px;

    display:none;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:5px;

    cursor:pointer;
}


#hamburger span,
#nav-btn span{
    display:block;

    width:22px;
    height:1px;

    background:#fff;

    transition:.3s ease;
}


#hamburger.active span:nth-child(1),
#nav-btn.active span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
}


#hamburger.active span:nth-child(2),
#nav-btn.active span:nth-child(2){
    opacity:0;
}


#hamburger.active span:nth-child(3),
#nav-btn.active span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.main{
    position:relative;

    width:100%;

    height:100vh;

    min-height:650px;

    background:#050505;
}


.home-div{
    position:relative;

    width:100%;
    height:100%;

    overflow:hidden;
}


.slides{
    width:100%;
    height:100%;

    display:flex;
}


.slide{
    position:relative;

    min-width:100%;
    height:100%;

    overflow:hidden;
}


.slide::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.55) 42%,
            rgba(0,0,0,.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.55),
            transparent 55%
        );

    z-index:1;
}


.slide img{
    width:100%;
    height:100%;

    object-fit:cover;

    filter:saturate(.85);

    transform:scale(1.02);
}


.hero-content{
    position:absolute;

    left:7%;

    top:50%;

    z-index:3;

    width:min(650px,85%);

    transform:translateY(-50%);
}


.small-title{
    margin-bottom:20px;

    color:var(--blue);

    font-size:8px;

    font-weight:700;

    letter-spacing:3px;
}


.hero-content h1{
    margin-bottom:25px;

    color:#fff;

    font-family:var(--heading);

    font-size:clamp(48px,6vw,82px);

    font-weight:500;

    line-height:1;

    letter-spacing:-2px;
}


.hero-content h1 span{
    display:block;

    color:#1688ff;

    font-style:italic;
}


.hero-description{
    max-width:490px;

    margin-bottom:35px;

    color:rgba(255,255,255,.68);

    font-size:11px;

    line-height:1.9;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.explore-btn{
    position:relative;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:18px;

    min-width:165px;

    padding:15px 22px;

    border:1px solid rgba(255,255,255,.55);

    border-radius:6px;

    background:rgba(255,255,255,.03);

    color:#fff;

    font-family:var(--body);

    font-size:9px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    overflow:hidden;

    backdrop-filter:blur(5px);

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease,
        background .35s ease;
}


.explore-btn::before{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:0;

    background:var(--blue);

    z-index:-1;

    transition:height .35s ease;
}


.explore-btn span{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    font-size:17px;

    line-height:1;

    transition:transform .35s ease;
}


.explore-btn:hover{
    color:#fff;

    border-color:var(--blue);

    background:rgba(22,136,255,.08);

    transform:translateY(-3px);
}


.explore-btn:hover::before{
    height:100%;
}


.explore-btn:hover span{
    transform:translateX(6px);
}


/* =========================================================
   ABOUT
========================================================= */

.about{
    padding:120px 7% 110px;

    background:#fff;
}


.about-header{
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr .8fr;

    gap:100px;

    align-items:end;
}


.about-label,
.section-label{
    margin-bottom:18px;

    color:var(--blue);

    font-size:8px;

    font-weight:700;

    letter-spacing:2.5px;
}


.about-title h2{
    color:#111;

    font-family:var(--heading);

    font-size:clamp(42px,5vw,65px);

    font-weight:500;

    line-height:1.05;

    letter-spacing:-1.5px;
}


.about-title h2 span{
    color:var(--dark-blue);

    font-style:italic;
}


.about-intro{
    padding-bottom:4px;
}


.about-intro p{
    margin-bottom:18px;

    color:#777;

    font-size:11px;

    line-height:1.9;
}


.about-intro a{
    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:12px;

    color:#111;

    font-size:8px;

    font-weight:700;

    letter-spacing:1.5px;

    transition:.3s ease;
}


.about-intro a span{
    color:var(--blue);

    font-size:14px;

    transition:.3s ease;
}


.about-intro a:hover{
    color:var(--blue);
}


.about-intro a:hover span{
    transform:translate(4px,-4px);
}


.about-line{
    max-width:1200px;

    height:1px;

    margin:65px auto 40px;

    background:#dededb;
}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats{
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;
}


.stat{
    position:relative;

    min-height:145px;

    padding:28px 25px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    background:#111;

    border:1px solid #292929;

    border-radius:12px;

    overflow:hidden;

    transition:.35s ease;
}


.stat::after{
    content:"";

    position:absolute;

    right:-40px;
    top:-40px;

    width:100px;
    height:100px;

    border-radius:50%;

    background:rgba(22,136,255,.08);
}


.stat:hover{
    transform:translateY(-5px);

    border-color:rgba(22,136,255,.35);

    box-shadow:0 15px 40px rgba(0,0,0,.2);
}


.stat strong{
    position:relative;

    z-index:2;

    color:#fff;

    font-family:var(--heading);

    font-size:48px;

    font-weight:500;

    line-height:1;
}


.stat strong span{
    color:var(--blue);
}


.stat small{
    position:relative;

    z-index:2;

    color:#777;

    font-size:7px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;
}


/* =========================================================
   ABOUT QUOTE
========================================================= */

.about-quote{
    width:100%;

    max-width:1200px;

    margin:60px auto 0;

    position:relative;

    text-align:center;

    padding:10px 20px 0;

    clear:both;

    display:block;
}


.about-quote > span{
    display:block;

    margin-bottom:-28px;

    color:var(--dark-blue);

    font-family:var(--heading);

    font-size:70px;

    line-height:1;

    opacity:.18;
}


.about-quote h3{
    margin:0;

    color:#111;

    font-family:var(--heading);

    font-size:40px;

    font-weight:500;

    line-height:1.2;
}


.about-quote em{
    color:var(--dark-blue);

    font-style:italic;
}


/* =========================================================
   COURSES
========================================================= */

.courses{
    padding:115px 7% 90px;

    background:white;

    color:#090000;
}


.courses-header{
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr .7fr;

    gap:100px;

    align-items:end;
}


.courses-header h2{
    color:#060606;

    font-family:var(--heading);

    font-size:clamp(42px,5vw,62px);

    font-weight:500;

    line-height:1.05;

    letter-spacing:-1.5px;
}


.courses-header h2 span{
    color:var(--blue);

    font-style:italic;
}


.courses-intro{
    color:#777;

    font-size:10px;

    line-height:1.9;
}


.courses-line{
    max-width:1200px;

    height:1px;

    margin:60px auto 35px;

    background:#292929;
}


/* =========================================================
   COURSE GRID
========================================================= */

.course-grid{
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-card{
    position:relative;

    min-height:410px;

    padding:28px 30px;

    display:flex;

    gap:20px;

    background:#111;

    border:1px solid #292929;

    border-radius:14px;

    overflow:hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease,
        background .4s ease;
}


.course-card::before{
    content:"";

    position:absolute;

    width:190px;
    height:190px;

    right:-100px;
    top:-100px;

    border-radius:50%;

    background:rgba(22,136,255,.06);

    transition:.5s ease;
}


.course-card:hover{
    transform:translateY(-6px);

    background:#151515;

    border-color:rgba(22,136,255,.35);

    box-shadow:0 20px 50px rgba(0,0,0,.35);
}


.course-card:hover::before{
    transform:scale(1.5);
}


.course-number{
    position:relative;

    z-index:2;

    color:#555;

    font-family:var(--heading);

    font-size:15px;
}


.course-content{
    position:relative;

    z-index:2;

    flex:1;

    display:flex;

    flex-direction:column;
}


.course-tag{
    margin-bottom:12px;

    color:var(--blue);

    font-size:8px;

    font-weight:700;

    letter-spacing:2px;
}


.course-content h3{
    margin-bottom:10px;

    color:#fff;

    font-family:var(--heading);

    font-size:30px;

    font-weight:500;

    line-height:1.1;
}


.course-duration{
    margin-bottom:18px;

    color:#888;

    font-size:8px;

    font-weight:700;

    letter-spacing:2px;
}


.course-description{
    max-width:390px;

    margin-bottom:20px;

    color:#999;

    font-size:10px;

    line-height:1.8;
}


.course-skills{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-bottom:22px;
}


.course-skills span{
    padding:7px 10px;

    border:1px solid #333;

    border-radius:5px;

    color:#aaa;

    font-size:7px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.3s ease;
}


.course-card:hover .course-skills span{
    border-color:#444;

    color:#ccc;
}


.course-meta{
    display:flex;

    gap:35px;

    margin-top:auto;

    margin-bottom:20px;

    padding-top:17px;

    border-top:1px solid #292929;
}


.course-meta div{
    display:flex;

    flex-direction:column;

    gap:6px;
}


.course-meta span{
    color:#666;

    font-size:7px;

    font-weight:700;

    letter-spacing:1.2px;
}


.course-meta strong{
    color:#ddd;

    font-size:9px;

    font-weight:600;
}


.course-btn{
    display:inline-flex;

    align-items:center;

    width:max-content;

    gap:10px;

    color:var(--blue);

    font-size:8px;

    font-weight:700;

    letter-spacing:1.5px;

    transition:.3s ease;
}


.course-btn span{
    font-size:14px;

    transition:.3s ease;
}


.course-btn:hover{
    color:#fff;
}


.course-btn:hover span{
    transform:translate(4px,-4px);
}


.course-arrow{
    position:absolute;

    right:25px;
    bottom:22px;

    color:#555;

    font-size:20px;

    transition:.3s ease;
}


.course-card:hover .course-arrow{
    color:var(--blue);

    transform:translateX(5px);
}


/* =========================================================
   COURSES BOTTOM
========================================================= */

.courses-bottom{
    max-width:1200px;

    margin:45px auto 0;

    padding-top:22px;

    border-top:1px solid #292929;

    display:flex;

    align-items:center;

    justify-content:space-between;
}


.courses-bottom p{
    color:#555;

    font-size:7px;

    font-weight:700;

    letter-spacing:2px;
}


.courses-bottom a{
    color:#999;

    font-size:7px;

    font-weight:700;

    letter-spacing:1.5px;

    transition:.3s ease;
}


.courses-bottom a:hover{
    color:var(--blue);
}


/* =========================================================
   SERVICES
========================================================= */

.services{
    padding:115px 7% 90px;

    background:#fff;
}


.services-container{
    max-width:1200px;

    margin:auto;
}


.services-header{
    display:grid;

    grid-template-columns:1fr .7fr;

    gap:100px;

    align-items:end;
}


.services-header h2{
    color:#111;

    font-family:var(--heading);

    font-size:clamp(42px,5vw,62px);

    font-weight:500;

    line-height:1.05;

    letter-spacing:-1.5px;
}


.services-header h2 span{
    color:var(--dark-blue);

    font-style:italic;
}


.services-intro{
    color:#777;

    font-size:10px;

    line-height:1.9;
}


.services-line{
    width:100%;

    height:1px;

    margin:60px 0 35px;

    background:#dededb;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;
}


.service-card{
    position:relative;

    min-height:350px;

    padding:25px;

    display:flex;

    flex-direction:column;

    background:#111;

    border:1px solid #292929;

    border-radius:12px;

    overflow:hidden;

    transition:.4s ease;
}


.service-card::before{
    content:"";

    position:absolute;

    right:-70px;
    bottom:-70px;

    width:160px;
    height:160px;

    border-radius:50%;

    background:rgba(22,136,255,.06);

    transition:.5s ease;
}


.service-card:hover{
    transform:translateY(-6px);

    border-color:rgba(22,136,255,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.2);
}


.service-card:hover::before{
    transform:scale(1.4);
}


.service-top{
    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:space-between;
}


.service-number{
    color:#555;

    font-family:var(--heading);

    font-size:13px;
}


.service-icon{
    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid #333;

    border-radius:50%;

    color:var(--blue);

    font-size:17px;

    transition:.4s ease;
}


.service-card:hover .service-icon{
    background:var(--blue);

    border-color:var(--blue);

    color:#fff;

    transform:rotate(12deg);
}


.service-content{
    position:relative;

    z-index:2;

    margin-top:auto;
}


.service-content h3{
    margin-bottom:15px;

    color:#fff;

    font-family:var(--heading);

    font-size:28px;

    font-weight:500;

    line-height:1.05;
}


.service-content p{
    max-width:230px;

    color:#888;

    font-size:9px;

    line-height:1.8;
}


.service-link{
    position:relative;

    z-index:2;

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:25px;

    color:var(--blue);

    font-size:7px;

    font-weight:700;

    letter-spacing:1.4px;

    transition:.3s ease;
}


.service-link span{
    font-size:13px;

    transition:.3s ease;
}


.service-link:hover{
    color:#fff;
}


.service-link:hover span{
    transform:translate(4px,-4px);
}


/* =========================================================
   WHY RDS STRIP
========================================================= */

.why-strip{
    margin-top:18px;

    padding:28px 30px;

    display:grid;

    grid-template-columns:.7fr 1.5fr;

    gap:45px;

    align-items:center;

    background:#111;

    border:1px solid #292929;

    border-radius:14px;
}


.why-strip-title > span{
    display:block;

    margin-bottom:9px;

    color:var(--blue);

    font-size:7px;

    font-weight:700;

    letter-spacing:2px;
}


.why-strip-title h3{
    color:#fff;

    font-family:var(--heading);

    font-size:28px;

    font-weight:500;

    line-height:1.1;
}


.why-strip-title h3 em{
    color:var(--blue);

    font-style:italic;
}


.why-features{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;
}


.why-feature{
    display:flex;

    align-items:center;

    gap:13px;

    padding:10px 0;
}


.why-feature > span{
    color:#555;

    font-family:var(--heading);

    font-size:12px;
}


.why-feature div{
    display:flex;

    flex-direction:column;

    gap:4px;
}


.why-feature strong{
    color:#ddd;

    font-size:8px;

    font-weight:600;
}


.why-feature small{
    color:#666;

    font-size:7px;
}


/* =========================================================
   SERVICES BOTTOM
========================================================= */

.services-bottom{
    margin-top:50px;

    padding-top:20px;

    border-top:1px solid #dededb;

    display:flex;

    justify-content:space-between;
}


.services-bottom p,
.services-bottom span{
    color:#999;

    font-size:7px;

    font-weight:700;

    letter-spacing:1.8px;
}


/* =========================================================
   PREMIUM CONTACT
========================================================= */

.premium-contact{
    position:relative;

    padding:120px 7% 60px;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22,136,255,.07),
            transparent 30%
        ),
        #f5f5f3;
}


.premium-contact::before{
    content:"";

    position:absolute;

    top:0;
    right:0;

    width:45%;
    height:100%;

    background-image:
        linear-gradient(
            rgba(1,83,159,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(1,83,159,.035) 1px,
            transparent 1px
        );

    background-size:45px 45px;

    pointer-events:none;
}


.premium-contact .contact-container{
    position:relative;

    z-index:2;

    width:100%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        minmax(0,.95fr)
        minmax(0,1.05fr);

    gap:90px;

    align-items:start;
}


/* =========================================================
   CONTACT LEFT
========================================================= */

.premium-contact .contact-content{
    padding-top:10px;
}


.premium-contact .contact-content h2{
    max-width:650px;

    margin:0 0 25px;

    color:#111;

    font-family:var(--heading);

    font-size:60px;

    font-weight:500;

    line-height:1.02;

    letter-spacing:-2px;
}


.premium-contact .contact-content h2 span{
    color:var(--dark-blue);

    font-style:italic;
}


.premium-contact .contact-text{
    max-width:500px;

    margin-bottom:45px;

    color:#777;

    font-size:11px;

    line-height:1.9;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.premium-contact .contact-info{
    display:flex;

    flex-direction:column;

    gap:0;

    max-width:540px;
}


.premium-contact .contact-item{
    position:relative;

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:18px 0;

    border-top:1px solid #d9d9d6;

    transition:.35s ease;
}


.premium-contact .contact-item:last-child{
    border-bottom:1px solid #d9d9d6;
}


.premium-contact .contact-item:hover{
    padding-left:8px;
}


.premium-contact .contact-icon{
    width:35px;
    height:35px;

    flex-shrink:0;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid #d4d4d0;

    border-radius:50%;

    color:var(--dark-blue);

    font-family:var(--heading);

    font-size:9px;

    transition:.35s ease;
}


.premium-contact .contact-item:hover .contact-icon{
    background:var(--dark-blue);

    border-color:var(--dark-blue);

    color:#fff;

    transform:rotate(8deg);
}


.premium-contact .contact-item small{
    display:block;

    margin-bottom:6px;

    color:#999;

    font-size:7px;

    font-weight:700;

    letter-spacing:2px;
}


.premium-contact .contact-item p{
    color:#555;

    font-size:10px;

    line-height:1.7;
}


.premium-contact .contact-item a{
    color:#333;

    transition:.3s ease;
}


.premium-contact .contact-item a:hover{
    color:var(--dark-blue);
}


/* =========================================================
   CONTACT BUTTONS
========================================================= */

.premium-contact .contact-actions{
    display:flex;

    gap:10px;

    margin-top:35px;
}


.premium-contact .contact-btn{
    position:relative;

    min-width:135px;

    padding:14px 20px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    border-radius:6px;

    font-size:8px;

    font-weight:700;

    letter-spacing:1.5px;

    overflow:hidden;

    transition:.35s ease;
}


.premium-contact .contact-btn.primary{
    background:#111;

    border:1px solid #111;

    color:#fff;
}


.premium-contact .contact-btn.primary:hover{
    background:var(--dark-blue);

    border-color:var(--dark-blue);

    transform:translateY(-3px);
}


.premium-contact .contact-btn.secondary{
    background:transparent;

    border:1px solid #ccc;

    color:#222;
}


.premium-contact .contact-btn.secondary:hover{
    background:#111;

    border-color:#111;

    color:#fff;

    transform:translateY(-3px);
}


.premium-contact .contact-btn span{
    font-size:14px;

    transition:.3s ease;
}


.premium-contact .contact-btn:hover span{
    transform:translate(4px,-4px);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrap{
    position:relative;

    width:100%;

    padding:40px;

    background:#0b0b0b;

    border:1px solid #222;

    border-radius:16px;

    overflow:hidden;

    box-shadow:
        0 25px 70px rgba(0,0,0,.15);
}


.contact-form-wrap::before{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    top:-170px;
    right:-120px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(22,136,255,.18),
            rgba(22,136,255,0) 70%
        );

    pointer-events:none;
}


.contact-form-wrap::after{
    content:"RDS";

    position:absolute;

    right:25px;
    bottom:-35px;

    color:rgba(255,255,255,.025);

    font-family:var(--heading);

    font-size:150px;

    font-weight:700;

    line-height:1;

    pointer-events:none;
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header{
    position:relative;

    z-index:2;

    margin-bottom:30px;

    padding-bottom:25px;

    border-bottom:1px solid #292929;
}


.contact-form-header > span{
    display:block;

    margin-bottom:12px;

    color:var(--blue);

    font-size:7px;

    font-weight:700;

    letter-spacing:2.5px;
}


.contact-form-header strong{
    display:block;

    max-width:400px;

    color:#fff;

    font-family:var(--heading);

    font-size:27px;

    font-weight:500;

    line-height:1.2;
}


.contact-form-header em{
    color:var(--blue);

    font-style:italic;
}


/* =========================================================
   FORM
========================================================= */

.contact-form{
    position:relative;

    z-index:3;

    display:flex;

    flex-direction:column;

    gap:22px;
}


.form-row{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;
}


.form-group{
    display:flex;

    flex-direction:column;

    gap:9px;
}


.form-group label{
    color:#666;

    font-size:7px;

    font-weight:700;

    letter-spacing:1.8px;
}


.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:13px 0;

    border:none;

    border-bottom:1px solid #333;

    outline:none;

    background:transparent;

    color:#fff;

    font-family:var(--body);

    font-size:10px;

    transition:.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#555;
}


.form-group select{
    cursor:pointer;

    color:#888;
}


.form-group select option{
    background:#111;

    color:#fff;
}


.form-group textarea{
    resize:vertical;

    min-height:75px;

    line-height:1.6;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-bottom-color:var(--blue);
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.form-submit{
    position:relative;

    width:100%;

    margin-top:5px;

    padding:17px 22px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    border:1px solid var(--blue);

    background:var(--blue);

    color:#fff;

    font-family:var(--body);

    font-size:8px;

    font-weight:700;

    letter-spacing:2px;

    cursor:pointer;

    overflow:hidden;

    transition:.35s ease;
}


.form-submit::before{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:100%;

    background:#fff;

    transition:.4s ease;

    z-index:0;
}


.form-submit:hover::before{
    width:100%;
}


.form-submit:hover{
    color:#111;
}


.form-submit span{
    position:relative;

    z-index:2;

    font-size:16px;

    transition:.35s ease;
}


.form-submit:hover span{
    transform:translate(5px,-4px);
}


/* =========================================================
   CONTACT LOCATION
========================================================= */

.contact-location{
    position:relative;

    z-index:3;

    width:100%;

    max-width:1200px;

    margin:65px auto 0;

    padding:22px 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    border-top:1px solid #d5d5d1;

    border-bottom:1px solid #d5d5d1;
}


.contact-location > div{
    padding:0 25px;

    border-right:1px solid #d5d5d1;
}


.contact-location > div:first-child{
    padding-left:0;
}


.contact-location > div:last-child{
    padding-right:0;

    border-right:none;
}


.contact-location span{
    display:block;

    margin-bottom:7px;

    color:#999;

    font-size:7px;

    font-weight:700;

    letter-spacing:2px;
}


.contact-location strong{
    color:#222;

    font-size:9px;

    font-weight:700;

    letter-spacing:1px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    padding:55px 7% 30px;

    background:#090909;

    color:#fff;
}


.footer-container{
    max-width:1200px;

    margin:auto;
}


.footer-logo{
    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:15px;
}


.footer-logo img{
    width:145px;

    max-height:60px;

    object-fit:contain;
}


.footer-logo p{
    color:#666;

    font-family:var(--heading);

    font-size:16px;

    font-style:italic;
}


.footer-links{
    margin:45px 0 30px;

    padding:20px 0;

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    border-top:1px solid #292929;

    border-bottom:1px solid #292929;
}


.footer-links a{
    color:#777;

    font-size:8px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    transition:.3s ease;
}


.footer-links a:hover{
    color:var(--blue);
}


.footer-copy{
    color:#555;

    font-size:7px;

    letter-spacing:.7px;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .nav-container{
        width:calc(100% - 50px);
    }


    .nav-menu{
        gap:23px;

        margin-right:20px;
    }


    .about-header,
    .courses-header,
    .services-header{
        gap:50px;
    }


    .about,
    .courses,
    .services,
    .premium-contact{
        padding-left:5%;

        padding-right:5%;
    }


    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }


    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .premium-contact .contact-container{
        gap:50px;
    }


    .premium-contact .contact-content h2{
        font-size:50px;
    }


    .contact-form-wrap{
        padding:32px;
    }

}


/* =========================================================
   MOBILE - 768
========================================================= */

@media(max-width:768px){

    .navbar{
        padding:15px 0;
    }


    .navbar.scrolled{
        padding:12px 0;
    }


    .nav-container{
        width:calc(100% - 30px);
    }


    .logo{
        width:120px;
    }


    .nav-menu{
        position:absolute;

        top:100%;

        left:15px;
        right:15px;

        margin:0;

        padding:20px;

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        background:rgba(10,10,10,.97);

        border:1px solid #292929;

        border-radius:10px;

        opacity:0;

        visibility:hidden;

        transform:translateY(-10px);

        transition:.35s ease;
    }


    .nav-menu.active{
        opacity:1;

        visibility:visible;

        transform:translateY(0);
    }


    .nav-menu a{
        width:100%;

        padding:14px 5px;

        border-bottom:1px solid #242424;

        font-size:8px;
    }


    .nav-menu a:last-child{
        border-bottom:none;
    }


    .nav-menu a::after{
        display:none;
    }


    .apply-btn{
        display:none;
    }


    #hamburger,
    #nav-btn{
        display:flex;
    }


    .main{
        min-height:650px;
    }


    .hero-content{
        left:7%;

        width:86%;
    }


    .hero-content h1{
        font-size:50px;

        letter-spacing:-1px;
    }


    .hero-description{
        max-width:420px;

        font-size:10px;
    }


    .explore-btn{
        min-width:150px;

        padding:13px 18px;

        gap:13px;

        font-size:8px;
    }


    .explore-btn span{
        font-size:15px;
    }


    .about,
    .courses,
    .services,
    .premium-contact{
        padding-top:85px;

        padding-bottom:75px;

        padding-left:20px;

        padding-right:20px;
    }


    .about-header,
    .courses-header,
    .services-header{
        grid-template-columns:1fr;

        gap:35px;
    }


    .about-title h2,
    .courses-header h2,
    .services-header h2{
        font-size:44px;
    }


    .about-line,
    .courses-line,
    .services-line{
        margin-top:45px;
    }


    .about-stats{
        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }


    .stat{
        min-height:130px;

        padding:23px;
    }


    .stat strong{
        font-size:42px;
    }


    .about-quote{
        margin-top:50px;

        padding:5px 15px 0;

        clear:both;

        display:block;
    }


    .about-quote > span{
        font-size:60px;

        margin-bottom:-24px;
    }


    .about-quote h3{
        font-size:32px;
    }


    .course-grid{
        grid-template-columns:1fr;

        gap:12px;
    }


    .course-card{
        min-height:390px;
    }


    .courses-bottom{
        flex-direction:column;

        align-items:flex-start;

        gap:15px;
    }


    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .service-card{
        min-height:330px;
    }


    .why-strip{
        grid-template-columns:1fr;

        gap:30px;
    }


    .why-features{
        grid-template-columns:1fr 1fr;
    }


    .services-bottom{
        flex-direction:column;

        gap:10px;
    }


    /* CONTACT */

    .premium-contact .contact-container{
        grid-template-columns:1fr;

        gap:55px;
    }


    .premium-contact .contact-content{
        padding-top:0;
    }


    .premium-contact .contact-content h2{
        font-size:44px;

        letter-spacing:-1px;
    }


    .premium-contact .contact-text{
        font-size:10px;

        margin-bottom:35px;
    }


    .premium-contact .contact-item{
        padding:16px 0;
    }


    .contact-form-wrap{
        padding:30px;

        border-radius:14px;
    }


    .contact-form-header strong{
        font-size:25px;
    }


    .contact-location{
        margin-top:50px;

        grid-template-columns:1fr;

        gap:0;
    }


    .contact-location > div,
    .contact-location > div:first-child,
    .contact-location > div:last-child{
        padding:17px 0;

        border-right:none;

        border-bottom:1px solid #d5d5d1;
    }


    .contact-location > div:last-child{
        border-bottom:none;
    }


    .footer{
        padding-left:20px;

        padding-right:20px;
    }

}


/* =========================================================
   MOBILE - 480
========================================================= */

@media(max-width:480px){

    .logo{
        width:110px;
    }


    .main{
        min-height:620px;
    }


    .hero-content{
        left:20px;

        width:calc(100% - 40px);
    }


    .small-title{
        font-size:7px;

        letter-spacing:2px;
    }


    .hero-content h1{
        font-size:40px;

        line-height:1.02;
    }


    .hero-description{
        font-size:9px;

        line-height:1.8;

        margin-bottom:25px;
    }


    .explore-btn{
        min-width:145px;

        padding:12px 16px;

        font-size:7.5px;
    }


    .explore-btn span{
        font-size:15px;
    }


    .about-title h2,
    .courses-header h2,
    .services-header h2{
        font-size:37px;
    }


    .about-intro p{
        font-size:10px;
    }


    .about-stats{
        grid-template-columns:1fr;

        gap:8px;
    }


    .stat{
        min-height:115px;
    }


    .about-quote{
        margin-top:45px;

        padding:5px 10px 0;

        clear:both;

        display:block;
    }


    .about-quote > span{
        font-size:55px;

        margin-bottom:-20px;
    }


    .about-quote h3{
        font-size:27px;
    }


    .course-card{
        min-height:auto;

        padding:23px 20px;

        gap:13px;
    }


    .course-content h3{
        font-size:25px;
    }


    .course-description{
        font-size:9px;
    }


    .course-meta{
        gap:20px;
    }


    .course-arrow{
        display:none;
    }


    .services-grid{
        grid-template-columns:1fr;
    }


    .service-card{
        min-height:300px;
    }


    .why-strip{
        padding:25px 20px;
    }


    .why-features{
        grid-template-columns:1fr;
    }


    .why-strip-title h3{
        font-size:25px;
    }


    /* CONTACT */

    .premium-contact .contact-content h2{
        font-size:37px;
    }


    .premium-contact .contact-actions{
        flex-direction:column;

        align-items:stretch;
    }


    .premium-contact .contact-btn{
        width:100%;
    }


    .contact-form-wrap{
        padding:24px;

        border-radius:14px;
    }


    .form-row{
        grid-template-columns:1fr;

        gap:22px;
    }


    .contact-form-header{
        margin-bottom:25px;
    }


    .contact-form-header strong{
        font-size:23px;
    }


    .contact-form{
        gap:20px;
    }


    .contact-location{
        margin-top:40px;
    }


    .footer-links{
        gap:20px;
    }

}


/* =========================================================
   MOBILE - 360
========================================================= */

@media(max-width:360px){

    .nav-container{
        width:calc(100% - 24px);
    }


    .logo{
        width:100px;
    }


    .hero-content h1{
        font-size:34px;
    }


    .hero-description{
        font-size:8px;
    }


    .about,
    .courses,
    .services,
    .premium-contact{
        padding-left:15px;

        padding-right:15px;
    }


    .about-title h2,
    .courses-header h2,
    .services-header h2{
        font-size:32px;
    }


    .course-card{
        padding:20px 16px;
    }


    .course-content h3{
        font-size:22px;
    }


    .course-meta{
        flex-direction:column;

        gap:12px;
    }


    .premium-contact .contact-content h2{
        font-size:33px;
    }


    .contact-form-wrap{
        padding:20px;
    }


    .contact-form-header strong{
        font-size:21px;
    }

}
/* =========================================================
   STRONGER / BOLDER TYPOGRAPHY
========================================================= */

/* Main Hero */
.hero-content h1{
    font-weight:700;
}

.hero-content h1 span{
    font-weight:700;
}


/* Section Headings */
.about-title h2,
.courses-header h2,
.services-header h2{
    font-weight:600;
}


/* About Quote */
.about-quote h3{
    font-weight:600;
}


/* Course Titles */
.course-content h3{
    font-weight:600;
}


/* Service Titles */
.service-content h3{
    font-weight:600;
}


/* Contact Main Heading */
.premium-contact .contact-content h2{
    font-weight:600;
}


/* Contact Form Heading */
.contact-form-header strong{
    font-weight:600;
}


/* Body / Description Text */
.hero-description,
.about-intro p,
.courses-intro,
.services-intro,
.premium-contact .contact-text{
    font-weight:500;
}


/* Course Description */
.course-description{
    font-weight:500;
}


/* Service Description */
.service-content p{
    font-weight:500;
}


/* Navigation */
.nav-menu a{
    font-weight:700;
}


/* Buttons */
.apply-btn,
.explore-btn,
.course-btn,
.service-link,
.contact-btn,
.form-submit{
    font-weight:700;
}


/* Labels */
.section-label,
.about-label,
.course-tag,
.course-duration,
.contact-form-header > span,
.form-group label{
    font-weight:700;
}


/* Stats */
.stat strong{
    font-weight:600;
}


/* Stats Labels */
.stat small{
    font-weight:700;
}


/* Why RDS */
.why-feature strong{
    font-weight:700;
}


/* Footer */
.footer-links a{
    font-weight:700;
}
/* =========================================================
   PREMIUM FOOTER
========================================================= */

.footer{
    background:#0b0b0b;
    color:#fff;
    padding:80px 7% 0;
    border-top:1px solid #222;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1.4fr 1.5fr;
    gap:60px;
    padding-bottom:65px;
}

/* Brand */

.footer-brand img{
    width:145px;
    height:auto;
    object-fit:contain;
    margin-bottom:22px;
}

.footer-brand p{
    max-width:330px;
    color:#888;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:11px;
    line-height:1.9;
    font-weight:500;
}

/* Social */

.footer-social{
    display:flex;
    gap:10px;
    margin-top:25px;
}

.footer-social a{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #333;
    border-radius:50%;

    color:#aaa;
    font-size:8px;
    font-weight:700;
    letter-spacing:.5px;

    transition:.3s ease;
}

.footer-social a:hover{
    color:#fff;
    border-color:#1688ff;
    background:#1688ff;
    transform:translateY(-3px);
}

/* Columns */

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column h4{
    margin:0 0 25px;

    color:#fff;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:9px;
    font-weight:700;
    letter-spacing:2px;
}

.footer-column a{
    width:max-content;
    margin-bottom:13px;

    color:#888;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:10px;
    font-weight:500;

    text-decoration:none;
    transition:.3s ease;
}

.footer-column a:hover{
    color:#1688ff;
    transform:translateX(4px);
}

/* Contact */

.footer-contact p{
    margin:0 0 18px;

    color:#888;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:10px;
    line-height:1.8;
    font-weight:500;
}

.footer-contact a{
    margin-bottom:9px;
}

/* Bottom */

.footer-bottom{
    max-width:1400px;
    margin:auto;

    min-height:70px;
    padding:20px 0;

    border-top:1px solid #222;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;

    color:#666;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:8px;
    font-weight:500;
    letter-spacing:.5px;
}

.footer-bottom div{
    display:flex;
    gap:25px;
}

.footer-bottom a{
    color:#666;
    font-family:'Montserrat',Arial,sans-serif;
    font-size:8px;
    font-weight:600;
    text-decoration:none;

    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#1688ff;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .footer{
        padding:65px 5% 0;
    }

    .footer-container{
        grid-template-columns:1.5fr 1fr 1fr;
        gap:45px;
    }

    .footer-brand{
        grid-column:1 / -1;
    }

    .footer-brand p{
        max-width:500px;
    }
}


@media(max-width:768px){

    .footer{
        padding:55px 25px 0;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px 30px;
        padding-bottom:45px;
    }

    .footer-brand{
        grid-column:1 / -1;
    }

    .footer-brand img{
        width:130px;
    }

    .footer-brand p{
        font-size:10px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        padding:20px 0;
        gap:15px;
    }
}


@media(max-width:480px){

    .footer{
        padding:45px 20px 0;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-brand{
        grid-column:auto;
    }

    .footer-column h4{
        margin-bottom:18px;
    }

    .footer-bottom{
        align-items:center;
        text-align:center;
    }

    .footer-bottom div{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }
}