*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#050505;

    font-family:'Poppins',sans-serif;

    color:#fff;

}

a{

    text-decoration:none;

    color:white;

}

ul{

    list-style:none;

}

.container{

    width:92%;

    max-width:1450px;

    margin:auto;

}

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:#070707;

    border-bottom:1px solid rgba(255,193,94,.15);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

.logo a{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo h2{

    font-size:50px;

    color:#d4a64f;

    font-family:'Cormorant Garamond',serif;

}

.logo span{

    display:block;

    font-size:22px;

    color:#d4a64f;

    letter-spacing:1px;

}

.logo small{

    color:#b9b9b9;

    letter-spacing:6px;

    font-size:11px;

}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    font-size:15px;

    transition:.3s;

}

.navbar a:hover,
.navbar .active{

    color:#d4a64f;

}

.header-buttons{

    display:flex;

    align-items:center;

    gap:20px;

}

.consulting-btn{

    border:1px solid #d4a64f;

    color:#d4a64f;

    padding:13px 24px;

    border-radius:6px;

    transition:.3s;

}

.consulting-btn:hover{

    background:#d4a64f;

    color:#000;

}

.login-btn{

    display:flex;

    align-items:center;

    gap:8px;

}

.menu-toggle{

    display:none;

    font-size:30px;

    color:#d4a64f;

    cursor:pointer;

}

.mobile-menu{

    position:fixed;

    top:85px;

    right:-100%;

    width:280px;

    height:100%;

    background:#111;

    transition:.4s;

    z-index:998;

    padding:40px;

}

.mobile-menu.active{

    right:0;

}

.mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.mobile-menu a{

    color:white;

}

@media(max-width:991px){

.navbar{

display:none;

}

.header-buttons{

display:none;

}

.menu-toggle{

display:block;

}

}

/*================ HERO =================*/

.hero{

    margin-top:85px;

    min-height:760px;

    background:url("../images/bg.jpg") center center/cover;

    position:relative;

    display:flex;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.hero-container{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    z-index:2;

}

.hero-left{

    width:50%;

}

.hero-badge{

    display:inline-block;

    border:1px solid #b98d3c;

    padding:10px 22px;

    border-radius:40px;

    color:#d4a64f;

    margin-bottom:30px;

    font-size:14px;

}

.hero-left h1{

    font-size:70px;

    line-height:1.15;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#d4a64f;

}

.hero-left p{

    max-width:540px;

    font-size:18px;

    line-height:32px;

    color:#ddd;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.gold-btn{

    background:#d4a64f;

    color:#111;

    padding:16px 36px;

    border-radius:6px;

    font-weight:600;

}

.dark-btn{

    border:1px solid #d4a64f;

    color:#fff;

    padding:16px 36px;

    border-radius:6px;

}

.hero-right{

    position:relative;

    width:50%;

}

.hero-right img{

    width:100%;

    max-width:600px;

}

.feature-box{

    position:absolute;

    right:0;

    top:80px;

    width:280px;

    background:#101010;

    border:1px solid rgba(212,166,79,.3);

    border-radius:15px;

    overflow:hidden;

}

.feature{

    display:flex;

    gap:18px;

    padding:22px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.feature:last-child{

    border:none;

}

.feature i{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1d1d1d;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#d4a64f;

}

.feature h4{

    margin-bottom:5px;

}

.feature span{

    color:#d4a64f;

    font-size:14px;

}

/*============== Responsive ==============*/

@media(max-width:991px){

.hero{

padding:80px 0;

min-height:auto;

}

.hero-container{

flex-direction:column;

text-align:center;

}

.hero-left,

.hero-right{

width:100%;

}

.hero-left h1{

font-size:46px;

}

.hero-left p{

margin:auto;

margin-top:25px;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.feature-box{

position:relative;

margin:30px auto 0;

top:0;

right:0;

}

}

/*================ ADVANTAGES ================*/

.advantages{

    background:#080808;

    margin-top:-40px;
    position:relative;
    z-index:10;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    border:1px solid rgba(212,166,79,.15);

    border-radius:12px;

    overflow:hidden;

}

.advantage-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px;

    background:#0d0d0d;

    border-right:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.advantage-card:last-child{

    border:none;

}

.advantage-card:hover{

    background:#141414;

}

.icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#161616;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#d4a64f;

    font-size:20px;

}

.advantage-card h3{

    font-size:17px;

    margin-bottom:5px;

}

.advantage-card p{

    font-size:14px;

    color:#b8b8b8;

}

@media(max-width:1100px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.advantages{

margin-top:40px;

}

.advantages-grid{

grid-template-columns:1fr;

}

.advantage-card{

padding:22px;

}

}

/*============== COURSES ==============*/

.courses{

    padding:90px 0;

    background:#060606;

}

.section-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.section-title h2{

    font-size:34px;

    font-family:"Cormorant Garamond",serif;

}

.course-navigation{

    display:flex;

    gap:15px;

}

.course-navigation div{

    width:45px;

    height:45px;

    border:1px solid rgba(212,166,79,.4);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    color:#d4a64f;

    transition:.3s;

}

.course-navigation div:hover{

    background:#d4a64f;

    color:#000;

}

.course-card{

    background:#111;
    border:1px solid rgba(212,166,79,.25);
    border-radius:14px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    position:relative;
    height:100%;

}

.course-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.course-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top,#000 15%,transparent);

}

.content{

    position:absolute;
    left:25px;
    bottom:25px;

}

.content small{

    color:#ddd;

}

.content h3{

    margin:12px 0;
    font-size:30px;
    font-family:"Cormorant Garamond",serif;

}

.content span{

    display:block;
    color:#d4a64f;
    margin-bottom:18px;
    font-size:24px;

}

.content a{

    background:#d4a64f;
    color:#000;
    padding:10px 22px;
    border-radius:6px;
    font-weight:600;

}

/*================ WHY US ================*/

.why-us{

    background:#050505;

    padding:100px 0;

}

.why-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:120px;
    align-items:center;
}

.why-right{
    margin-left:20px;
}

.section-badge{

    color:#d4a64f;

    border:1px solid rgba(212,166,79,.4);

    padding:10px 18px;

    border-radius:30px;

    display:inline-block;

    margin-bottom:25px;

    font-size:14px;

}

.why-left h2{

    font-size:52px;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:25px;

}

.why-left p{

    color:#bcbcbc;

    line-height:34px;

    margin-bottom:40px;

    font-size:17px;

}

.why-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.stat-card{

    background:#0d0d0d;

    border:1px solid rgba(212,166,79,.15);

    border-radius:16px;

    padding:40px;

    transition:.35s;

    text-align:center;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#d4a64f;

}

.stat-card i{

    color:#d4a64f;

    font-size:38px;

    margin-bottom:25px;

}

.stat-card h3{

    font-size:48px;

    color:#d4a64f;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:10px;

}

.stat-card span{

    color:#bdbdbd;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.why-right{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.why-right{

grid-template-columns:1fr;

}

.why-left h2{

font-size:40px;

}

.stat-card{

padding:30px;

}

}

/*================ TESTIMONIAL =================*/

.testimonials{

    padding:100px 0;

    background:#080808;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    color:#d4a64f;

    letter-spacing:2px;

    font-size:14px;

}

.section-heading h2{

    font-size:46px;

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

}

.section-heading p{

    color:#bdbdbd;

}

.testimonial-card{

    background:#111;

    border:1px solid rgba(212,166,79,.15);

    border-radius:15px;

    padding:35px;

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#d4a64f;

}

.stars{

    color:#d4a64f;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#ddd;

    line-height:30px;

    min-height:120px;

}

.student{

    display:flex;

    align-items:center;

    margin-top:30px;

    gap:15px;

}

.student img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.student h4{

    margin-bottom:5px;

}

.student span{

    color:#999;

    font-size:14px;

}

/*================ PARTNERS ================*/

.partners{

    background:#050505;

    padding:100px 0;

    overflow:hidden;

}

.logo-slider{

    width:100%;

    overflow:hidden;

    margin-top:50px;

}

.logo-track{

    display:flex;

    width:max-content;

    animation:scrollLogos 25s linear infinite;

}

.logo-slider:hover .logo-track{

    animation-play-state:paused;

}

.logo-item{

    width:220px;

    height:110px;

    margin-right:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    transition:.3s;

}

.logo-item:hover{

    border-color:#d4a64f;

}

.logo-item img{

    width:120px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.3s;

}

.logo-item:hover img{

    filter:none;

    opacity:1;

}

@keyframes scrollLogos{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.logo-item{

width:170px;

height:90px;

}

.logo-item img{

width:90px;

}

}

/*================ FOOTER ================*/

.footer{

    background:#090909;

    border-top:1px solid rgba(212,166,79,.15);

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding:80px 0;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo h2{

    font-size:55px;

    color:#d4a64f;

    font-family:"Cormorant Garamond",serif;

}

.footer-logo span{

    display:block;

    font-size:22px;

    color:#d4a64f;

}

.footer-logo small{

    color:#aaa;

    letter-spacing:5px;

}

.footer-box p{

    color:#bcbcbc;

    line-height:30px;

    margin-bottom:30px;

}

.footer-box h3{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    font-family:"Cormorant Garamond",serif;

}

.footer-box ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-box li{

    color:#bcbcbc;

}

.footer-box a{

    color:#bcbcbc;

    transition:.3s;

}

.footer-box a:hover{

    color:#d4a64f;

}

.footer-box li i{

    color:#d4a64f;

    margin-right:10px;

}

.social{

    display:flex;

    gap:15px;

}

.social a{

    width:45px;

    height:45px;

    background:#151515;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.social a:hover{

    background:#d4a64f;

    color:#000;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    text-align:center;

}

.footer-bottom p{

    color:#888;

}

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:650px){

.footer-top{

grid-template-columns:1fr;

gap:45px;

padding:60px 0;

}

.footer-logo{

justify-content:center;

}

.footer-box{

text-align:center;

}

.social{

justify-content:center;

}

}

/*================ ABOUT HERO ================*/

.about-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("../images/about-bg.jpg");

    background-size:cover;

    background-position:center;

    border-bottom:1px solid rgba(212,166,79,.15);

}

.about-hero-container{

    position:relative;

    z-index:5;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.about-left{

    width:48%;

}

.page-title{

    color:#d4a64f;

    font-size:18px;

    letter-spacing:2px;

    display:block;

    margin-bottom:25px;

}

.about-left h1{

    font-size:72px;

    line-height:1.1;

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

}

.about-left h1 span{

    display:block;

    color:#d4a64f;

}

.gold-line{

    width:70px;

    height:3px;

    background:#d4a64f;

    margin:35px 0;

}

.about-left p{

    color:#cfcfcf;

    font-size:18px;

    line-height:35px;

    max-width:560px;

    margin-bottom:45px;

}

.hero-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    border:1px solid #d4a64f;

    color:#d4a64f;

    padding:17px 34px;

    border-radius:8px;

    transition:.35s;

}

.hero-button:hover{

    background:#d4a64f;

    color:#000;

}

.about-right{

    width:50%;

    display:flex;

    justify-content:flex-end;

}

.about-right img{

    width:100%;

    max-width:650px;

}

/*========== Responsive =========*/

@media(max-width:992px){

.about-hero{

padding:130px 0 70px;

min-height:auto;

}

.about-hero-container{

flex-direction:column;

text-align:center;

}

.about-left,

.about-right{

width:100%;

}

.about-left h1{

font-size:52px;

}

.gold-line{

margin:25px auto;

}

.about-left p{

margin:0 auto 40px;

}

.about-right{

justify-content:center;

margin-top:50px;

}

}

@media(max-width:600px){

.about-left h1{

font-size:40px;

}

.about-left p{

font-size:16px;

line-height:30px;

}

.hero-button{

width:100%;

justify-content:center;

}

}

/*============== ABOUT COMPANY ==============*/

.about-company{

    padding:90px 0;

    background:#050505;

}

.about-company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:14px;

    display:block;

}

.quote-box{

    position:absolute;

    left:20px;

    bottom:20px;

    width:320px;

    background:#111;

    border:1px solid rgba(212,166,79,.15);

    border-radius:12px;

    padding:30px;

}

.quote-box i{

    color:#d4a64f;

    font-size:34px;

    margin-bottom:15px;

}

.quote-box p{

    line-height:30px;

    color:#fff;

}

.quote-box span{

    color:#d4a64f;

    display:block;

    margin-top:20px;

}

.section-subtitle{

    color:#d4a64f;

    letter-spacing:2px;

    font-size:14px;

}

.about-content h2{

    font-size:54px;

    margin:15px 0 25px;

    font-family:"Cormorant Garamond",serif;

}

.about-content>p{

    color:#bdbdbd;

    line-height:34px;

    margin-bottom:40px;

}

.mission-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

}

.mission-card{

    border-left:1px solid rgba(212,166,79,.15);

    padding-left:25px;

}

.mission-card i{

    color:#d4a64f;

    font-size:36px;

    margin-bottom:20px;

}

.mission-card h3{

    margin-bottom:15px;

    font-size:24px;

    font-family:"Cormorant Garamond",serif;

}

.mission-card p{

    color:#bcbcbc;

    line-height:30px;

}

@media(max-width:992px){

.about-company-grid{

grid-template-columns:1fr;

}

.mission-grid{

grid-template-columns:1fr;

}

.quote-box{

position:relative;

left:0;

bottom:0;

width:100%;

margin-top:20px;

}

}

/*================ STATISTICS ================*/

.statistics{

    padding:90px 0;

    background:#0a0a0a;

    border-top:1px solid rgba(212,166,79,.08);

    border-bottom:1px solid rgba(212,166,79,.08);

}

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

}

.stat-item{

    text-align:center;

    padding:25px;

    border-right:1px solid rgba(255,255,255,.08);

}

.stat-item:last-child{

    border:none;

}

.stat-item i{

    font-size:42px;

    color:#d4a64f;

    margin-bottom:25px;

}

.stat-item h2{

    font-size:58px;

    color:#fff;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:10px;

}

.stat-item p{

    color:#a8a8a8;

    font-size:15px;

    letter-spacing:.5px;

}

@media(max-width:1100px){

.statistics-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.statistics-grid{

grid-template-columns:1fr;

}

.stat-item{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.08);

}

.stat-item:last-child{

border-bottom:none;

}

}

/*================ WHY CHOOSE ================*/

.why-choose{

    background:#050505;

    padding:110px 0;

}

.why-choose-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:70px;

    align-items:center;

}

.why-info h2{

    font-size:56px;

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

}

.why-info p{

    color:#bdbdbd;

    line-height:34px;

    margin-bottom:40px;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.feature-card{

    background:#101010;

    border:1px solid rgba(212,166,79,.15);

    border-radius:16px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#d4a64f;

    box-shadow:0 15px 35px rgba(212,166,79,.08);

}

.feature-card i{

    font-size:38px;

    color:#d4a64f;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

    font-family:"Cormorant Garamond",serif;

}

.feature-card p{

    color:#bcbcbc;

    line-height:28px;

}

.full-width{

    grid-column:1 / 3;

}

@media(max-width:992px){

.why-choose-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

.full-width{

grid-column:auto;

}

.why-info h2{

font-size:42px;

}

}

/*================ CTA =================*/

.cta-section{

    padding:120px 0;

    background:#050505;

}

.cta-box{

    position:relative;

    padding:80px 60px;

    text-align:center;

    background:linear-gradient(135deg,#111,#0b0b0b);

    border:1px solid rgba(212,166,79,.2);

    border-radius:20px;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(212,166,79,.05);

    border-radius:50%;

    top:-150px;

    right:-100px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(212,166,79,.04);

    border-radius:50%;

    bottom:-120px;

    left:-80px;

}

.cta-badge{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(212,166,79,.4);

    color:#d4a64f;

    border-radius:30px;

    margin-bottom:25px;

    letter-spacing:2px;

    font-size:13px;

}

.cta-box h2{

    font-size:58px;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 45px;

    color:#bdbdbd;

    line-height:34px;

    position:relative;

    z-index:2;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.gold-btn{

    display:flex;

    align-items:center;

    gap:10px;

    background:#d4a64f;

    color:#000;

    padding:18px 35px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.gold-btn:hover{

    transform:translateY(-3px);

}

.outline-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:18px 35px;

    border:1px solid #d4a64f;

    border-radius:8px;

    color:#d4a64f;

    transition:.3s;

}

.outline-btn:hover{

    background:#d4a64f;

    color:#000;

}

@media(max-width:768px){

.cta-box{

padding:60px 30px;

}

.cta-box h2{

font-size:40px;

}

.cta-buttons{

flex-direction:column;

}

.gold-btn,

.outline-btn{

justify-content:center;

width:100%;

}

}

/*============== CONTACT HERO ==============*/

.contact-hero{

    position:relative;

    margin-top:85px;

    height:600px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(to right,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.72) 40%,
    rgba(0,0,0,.35) 70%,
    rgba(0,0,0,.25) 100%),
    url("./images/contact-banner.jpg");

    background-size:cover;
    background-position:center;

    border-bottom:1px solid rgba(212,166,79,.12);

}

.contact-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.18);

}

.contact-hero-content{

    position:relative;
    z-index:5;

}

.contact-left{

    width:55%;

}

.contact-left span{

    color:#d4a64f;

    letter-spacing:2px;

    font-size:18px;

}

.contact-left h1{

    font-size:72px;

    line-height:1.1;

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

}

.contact-left strong{

    color:#d4a64f;

    display:block;

    font-weight:600;

}

.contact-left p{

    max-width:620px;

    color:#cfcfcf;

    font-size:18px;

    line-height:34px;

}

@media(max-width:992px){

.contact-hero{

height:auto;

padding:140px 0 90px;

}

.contact-left{

width:100%;

}

.contact-left h1{

font-size:48px;

}

}

@media(max-width:600px){

.contact-left h1{

font-size:38px;

}

.contact-left p{

font-size:16px;

line-height:30px;

}

}

/*================ CONTACT GRID ================*/

.contact-section{

    padding:90px 0;

    background:#050505;

}

.contact-grid{

    display:grid;

    grid-template-columns:300px 1fr 360px;

    gap:30px;

}

/* SOL */

.contact-info{

    background:#0d0d0d;

    border:1px solid rgba(212,166,79,.12);

    border-radius:14px;

    overflow:hidden;

}

.contact-info h3{

    padding:25px;

    font-size:22px;

    color:#d4a64f;

}

.info-card{

    display:flex;

    gap:18px;

    padding:24px;

    border-top:1px solid rgba(255,255,255,.06);

}

.info-card i{

    color:#d4a64f;

    font-size:24px;

    width:30px;

    margin-top:4px;

}

.info-card span{

    color:#d4a64f;

    font-size:13px;

    letter-spacing:1px;

}

.info-card p{

    margin-top:8px;

    color:#d0d0d0;

    line-height:28px;

}

.social-box{

    padding:25px;

    border-top:1px solid rgba(255,255,255,.06);

}

.social-box span{

    color:#d4a64f;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border:1px solid rgba(212,166,79,.2);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#d4a64f;

    transition:.3s;

}

.social-icons a:hover{

    background:#d4a64f;

    color:#000;

}

/* ORTA */

.contact-form-box{

    background:#0d0d0d;

    border:1px solid rgba(212,166,79,.12);

    border-radius:14px;

    padding:35px;

}

.contact-form-box h3{

    margin-bottom:30px;

    color:#d4a64f;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{

    width:100%;

    margin-bottom:20px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:8px;

    padding:16px;

    color:#fff;

}

.checkbox{

    display:flex;

    gap:12px;

    align-items:center;

    margin-bottom:25px;

    color:#bdbdbd;

}

.contact-form-box button{

    width:100%;

    height:58px;

    background:#d4a64f;

    border:none;

    border-radius:8px;

    color:#000;

    font-weight:600;

    cursor:pointer;

}

/* SAĞ */

.map-box{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.map-box h3{

    color:#d4a64f;

}

.map{

    height:320px;

    background:#151515;

    border:1px solid rgba(212,166,79,.12);

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#777;

}

.consult-card{

    background:#0d0d0d;

    border:1px solid rgba(212,166,79,.12);

    border-radius:14px;

    padding:35px;

    text-align:center;

}

.consult-card i{

    font-size:50px;

    color:#d4a64f;

    margin-bottom:20px;

}

.consult-card h4{

    margin-bottom:15px;

}

.consult-card p{

    color:#bdbdbd;

    line-height:28px;

    margin-bottom:25px;

}

.consult-card a{

    display:inline-block;

    background:#d4a64f;

    color:#000;

    padding:14px 28px;

    border-radius:8px;

}

/* Responsive */

@media(max-width:1200px){

.contact-grid{

grid-template-columns:1fr;

}

.form-row{

grid-template-columns:1fr;

}

}

/*======================================
CONTACT FEATURES
======================================*/

.contact-features{

    padding:0 0 90px;

    background:#050505;

}

.contact-features-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    border:1px solid rgba(212,166,79,.12);

    border-radius:14px;

    overflow:hidden;

    background:#0b0b0b;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:30px;

    border-right:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.feature-item:last-child{

    border-right:none;

}

.feature-item:hover{

    background:#111;

}

.feature-icon{

    width:60px;

    height:60px;

    border:1px solid rgba(212,166,79,.25);

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.feature-icon i{

    font-size:24px;

    color:#d4a64f;

}

.feature-item h4{

    font-size:18px;

    margin-bottom:8px;

    color:#fff;

}

.feature-item p{

    color:#9f9f9f;

    font-size:14px;

    line-height:24px;

}

@media(max-width:1200px){

.contact-features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-features-grid{

grid-template-columns:1fr;

}

.feature-item{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.06);

}

.feature-item:last-child{

border-bottom:none;

}

}

.courses-hero{

    height:420px;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(0,0,0,.80),
    rgba(0,0,0,.75)),
    url(images/course-banner.jpg);

    background-size:cover;

    background-position:center;

    margin-top:85px;

}

.courses-title{

    text-align:center;

    max-width:850px;

    margin:auto;

}

.courses-title span{

    color:#d4a64f;

    letter-spacing:2px;

}

.courses-title h1{

    font-size:64px;

    margin:20px 0;

}

.courses-title h1 strong{

    display:block;

    color:#d4a64f;

}

.courses-title p{

    max-width:700px;

    margin:auto;

    line-height:32px;

    color:#d5d5d5;

}

/*==========================
COURSES
===========================*/

.courses-section{

    padding:90px 0;

    background:#050505;

}

.courses-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.course-card{

    background:#0b0b0b;

    border:1px solid rgba(212,166,79,.15);

    border-radius:14px;

    overflow:hidden;

    position:relative;

    transition:.4s;

}

.course-card:hover{

    transform:translateY(-8px);

    border-color:#d4a64f;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.course-number{

    position:absolute;

    left:0;

    top:0;

    width:70px;

    height:55px;

    background:#d4a64f;

    color:#000;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:5;

}

.course-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.course-content{

    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;

}

.course-content h3{

    font-size:22px;

    line-height:1.4;

    margin-bottom:18px;

}

.course-tag{

    background:#d4a64f;

    color:#000;

    display:inline-block;

    padding:10px 18px;

    border-radius:6px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;

}

.course-content ul{

    list-style:none;
    padding:0;
    margin:20px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;

}

.course-content ul li{

    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#d8d8d8;
    font-size:15px;
    line-height:1.5;

}

.course-content i{

    color:#d4a64f;

}

.course-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:30px;

    margin-top: auto;

    height:50px;

    font-size:14px;

    border:1px solid #d4a64f;

    color:#fff;

    border-radius:8px;

    transition:.35s;

}

.course-btn:hover{

    background:#d4a64f;

    color:#000;

}

@media(max-width:1400px){

    .courses-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .courses-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .courses-grid{

        grid-template-columns:1fr;

    }

}

/*==========================
WHY CHOOSE
===========================*/

.why-choose{

    padding:100px 0;

    background:#0a0a0a;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-header span{

    color:#d4a64f;

    letter-spacing:2px;

    font-size:15px;

}

.section-header h2{

    font-size:52px;

    margin:20px 0;

    font-family:"Cormorant Garamond", serif;

}

.section-header p{

    color:#bcbcbc;

    line-height:32px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#111;

    border:1px solid rgba(212,166,79,.15);

    border-radius:15px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#d4a64f;

}

.why-card i{

    font-size:46px;

    color:#d4a64f;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#bdbdbd;

    line-height:28px;

}

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

/*==========================
COURSE STATS
===========================*/

.course-stats{

    padding:90px 0;

    background:#050505;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-item{

    background:#111;

    border:1px solid rgba(212,166,79,.15);

    border-radius:15px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-6px);

    border-color:#d4a64f;

}

.stat-item h2{

    font-size:56px;

    color:#d4a64f;

    font-family:"Cormorant Garamond", serif;

    margin-bottom:15px;

}

.stat-item span{

    color:#d0d0d0;

    font-size:18px;

}

@media(max-width:992px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .stats-grid{

        grid-template-columns:1fr;

    }

}

/*==========================
COURSE CTA
===========================*/

.course-cta{

    padding:100px 0;

    background:#0b0b0b;

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#111;

    border:1px solid rgba(212,166,79,.15);

    border-radius:20px;

    padding:70px 50px;

}

.cta-box span{

    color:#d4a64f;

    letter-spacing:2px;

}

.cta-box h2{

    margin:20px 0;

    font-size:54px;

    font-family:"Cormorant Garamond", serif;

}

.cta-box p{

    color:#cfcfcf;

    max-width:650px;

    margin:0 auto 40px;

    line-height:32px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-primary{

    background:#d4a64f;

    color:#000;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.cta-primary:hover{

    opacity:.9;

}

.cta-secondary{

    border:1px solid #d4a64f;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    transition:.3s;

}

.cta-secondary:hover{

    background:#d4a64f;

    color:#000;

}

@media(max-width:768px){

    .cta-box{

        padding:50px 25px;

    }

    .cta-box h2{

        font-size:38px;

    }

}

@media(max-width:992px){

    .why-right{
        margin-left:0;
    }

}

.why-us .why-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 160px;
    align-items: center;
}

.why-us .why-right {
    margin-left: 0;
    max-width: 650px;
}

@media (max-width: 992px) {
    .why-us .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us .why-right {
        max-width: none;
        margin-left: 0;
    }
}

/* Online Eğitimde Farkımız - kesin düzeltme */

.why-us .container {
    max-width: 1450px !important;
}

.why-us .why-grid {
    display: grid !important;
    grid-template-columns: 420px 650px !important;
    justify-content: space-between !important;
    align-items: center !important;
    column-gap: 180px !important;
}

.why-us .why-left {
    width: 420px !important;
}

.why-us .why-right {
    width: 650px !important;
    max-width: 650px !important;
    margin-left: auto !important;
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 992px) {
    .why-us .why-grid {
        grid-template-columns: 1fr !important;
        row-gap: 45px !important;
    }

    .why-us .why-left,
    .why-us .why-right {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
    }
}


.logo a{
    display:flex;
    align-items:center;
}

.logo img{
    height:28px;
    width:auto;
    display:block;
    transition:.3s;
}

.logo img:hover{
    opacity:.9;
}

.logo img{
    width: 220px !important;
    height: auto !important;
    max-width: 220px !important;
    object-fit: contain;
}


.footer-logo{
    display: flex;
    align-items: center;
}

.footer-logo img{
    width: 220px;
    height: auto;
    display: block;
}

.header .container{
    height:85px !important;
    flex-wrap:nowrap !important;
}

.logo{
    height:85px;
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:220px !important;
    height:70px !important;
    object-fit:contain;
    display:block;
}

.navbar{
    margin-left:auto;
}

.navbar ul{
    flex-wrap:nowrap;
}

.header-buttons{
    flex-shrink:0;
}

.whatsapp-button{
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b0b0b;
    border: 2px solid #d4a64f;
    border-radius: 50%;

    z-index: 99999999;

    text-decoration: none;

    box-shadow: 0 8px 30px rgba(212,166,79,.30);
}

.whatsapp-button svg{
    width: 46px;
    height: 46px;
}
