@font-face {
    font-family: 'Komu';
    src: url('./fonts/komu.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


h1,
h2,
h3,
.section-title,
.section-heading h2,
.hero-content h1,
.who-left h2,
.market-left h2{
    font-family:'Komu', serif;
    font-size:clamp(44px,4vw,68px);
    line-height:1.05;
    font-weight:400;
}


body{
    font-family:'Inter',sans-serif;
}


/* =========================
   RESET
========================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#111;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(92%,1400px);
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .3s;
      background:rgba(10,10,10,.75);


}

header.scrolled{

    background:rgba(10,10,10,.75);

    backdrop-filter:blur(12px);

}

header .container{
    height:120px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:220px;
}

.logo-icon{
    width:145px;
    margin-bottom:-10px;
    margin-left: -20px;
}

.logo-text{
    width:220px;
}

nav ul{
    display:flex;
    align-items:center;
    gap:42px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    display:inline-block;
    position:relative;
    padding:10px 0;
    color:#fff;
    font-size:15px;
    font-weight:500;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;   /* yalnız mətnin altına */
    width:0;
    height:2px;
    background:#e53935;
    transition:width .35s ease;
}

nav ul li:hover a::after{
    width:100%;
}




/* =========================
   HAMBURGER
========================= */

.hamburger{

    display:none;

    width:34px;

    cursor:pointer;

}

.hamburger span{

    display:block;

    height:2px;

    background:#fff;

    margin:7px 0;

    transition:.35s;

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;
    margin-top: 0;
    padding-top: 0;

}

.hero-video{

    position:absolute;

    inset:0;

}

.hero video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.28)
    );

}

/* =========================
   CONTENT
========================= */

.hero-content{

    position:absolute;

    left:8%;

    top:52%;

    transform:translateY(-50%);

    z-index:5;

    max-width:760px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(58px,5vw,92px);

    line-height:1;

    font-weight:500;

    margin-bottom:34px;

    letter-spacing:-1px;

}

.hero-content p{

    font-size:25px;

    line-height:1.5;

    max-width:520px;

    color:rgba(255,255,255,.92);

}



.btn:hover{

    background:#fff;

    color:#000;

}

/* =========================
   SVG RINGS
========================= */

.rings{

    position:absolute;

    right:-120px;

    top:-120px;

    width:900px;

    height:1200px;

    display:flex;

    justify-content:flex-end;

    gap:35px;

    pointer-events:none;

}

.ring{

    border-radius:999px;

    border:55px solid rgba(255,255,255,.16);

    height:100%;

}

.ring1{

    width:240px;

}

.ring2{

    width:180px;

    border-color:rgba(255,255,255,.12);

}

.ring3{

    width:120px;

    border-color:rgba(255,255,255,.09);

}

.ring4{

    width:70px;

    border-color:rgba(255,255,255,.06);

}

/* =========================
   HERO ANIMATION
========================= */

.hero-content>*{

    opacity:0;

    transform:translateY(35px);

    animation:fadeUp .9s forwards;

}

.hero-content p{

    animation-delay:.25s;

}

.btn{

    animation:fadeUp .9s forwards;

    animation-delay:.45s;

    opacity:0;

}

@keyframes fadeUp{

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* ===================================
1400px
=================================== */

@media(max-width:1400px){

.hero-content{

left:6%;

max-width:650px;

}

.hero-content h1{

font-size:72px;

}

.rings{

right:-180px;

}

}

/* ===================================
1200px
=================================== */

@media(max-width:1200px){

nav ul{

gap:26px;

}

.hero-content h1{

font-size:62px;

}

.hero-content p{

font-size:22px;

}

.logo img{

width:150px;

}

.rings{

right:-280px;

opacity:.85;

}

}

/* ===================================
992px
=================================== */

@media(max-width:992px){

header .container{

height:82px;

}

nav{

position:fixed;

top:0;

right:-100%;

width:340px;

height:100vh;

background:#111;

display:flex;

align-items:center;

justify-content:center;

transition:.45s ease;

box-shadow:-20px 0 50px rgba(0,0,0,.35);

}

nav.active{

right:0;

}

nav ul{

flex-direction:column;

gap:30px;

}

nav a{

font-size:20px;

}

.hamburger{

display:block;

position:relative;

z-index:1001;

}

.hero-content{

left:45px;

right:45px;

max-width:520px;

}

.hero-content h1{

font-size:56px;

}

.hero-content p{

font-size:20px;

}

.rings{

display:none;

}

}

/* ===================================
768px
=================================== */

@media(max-width:768px){

.hero-content{

left:30px;

right:30px;

}

.hero-content h1{

font-size:48px;

line-height:1.05;

}

.hero-content p{

font-size:18px;

}

.btn{

padding:15px 28px;

}

}

/* ===================================
576px
=================================== */

@media(max-width:576px){

header .container{

height:72px;

}

.logo img{

width:120px;

}

.hero-content{

left:22px;

right:22px;

top:55%;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:17px;

line-height:1.6;

margin-top:15px;

}

.btn{

margin-top:35px;

padding:14px 26px;

font-size:15px;

}

nav{

width:100%;

}

}

/* ===================================
390px
=================================== */

@media(max-width:390px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:16px;

}

.btn{

width:100%;

justify-content:center;

}
}



/*==========================
FOOTER
==========================*/

.footer{

    background:#fff;

    color:#111;

    padding:90px 0 35px;

    border-top:1px solid #e8e8e8;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

    padding-bottom:50px;

}

.footer-logo img{

    width:200px;

}

.footer-logo p{

    color:#666;

    line-height:1.9;

    max-width:420px;

}

.footer h4{

    font-size:22px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:25px;

    color:#D42027;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer a{

    color:#666;

    transition:.35s;

}

.footer a:hover{

    color:#D42027;

    padding-left:6px;

}

.footer-contact p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.footer-contact a{

    display:block;

    margin-bottom:10px;

}

.footer-bottom{

    border-top:1px solid #ececec;

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#777;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:42px;

    height:42px;

    border:1px solid #ddd;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#555;

    transition:.35s;

}

.footer-social a:hover{

    background:#D42027;

    color:#fff;

    border-color:#D42027;

    transform:translateY(-4px);

}

/* Responsive */

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr 1fr;

gap:40px;

}

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

}

.footer{

padding:70px 0 30px;

}

}

/*==================================
CAREER CONTENT
==================================*/

.career-content{

    padding:140px 0;

    background:#fff;

}

.career-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.career-image{

    overflow:hidden;

    border-radius:4px;

}

.career-image img{

    width:100%;

    height:720px;

    object-fit:cover;

    transition:.8s;

}

.career-image:hover img{

    transform:scale(1.08);

}

.career-info span{

    color:#D62027;

    letter-spacing:4px;

    font-size:13px;

    font-weight:700;

}

.career-info h2{

    margin:20px 0 35px;

    font-family:'Komu';

    font-size:58px;

    color:#555;

    line-height:1.1;

}

.career-info>p{

    color:#666;

    line-height:2;

    margin-bottom:25px;

}

.career-contact-info{

    margin-top:50px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:45px;

    padding-top:40px;

    border-top:1px solid #ececec;

}

.career-contact-info h4{

    margin-bottom:20px;

    font-family:'Komu';

    color:#222;

    font-size:28px;

}

.career-contact-info p{

    color:#666;

    line-height:2;

}

.career-contact-info a{

    display:block;

    margin-bottom:15px;

    color:#D62027;

    transition:.35s;

}

.career-contact-info a:hover{

    padding-left:8px;

}

.career-content-side{

    max-width:1150px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.career-content-side span{

    display:inline-block;

    color:#D62027;

    font-size:13px;

    letter-spacing:5px;

    font-weight:700;

    margin-bottom:18px;

}

.career-content-side h2{

    font-family:'Komu';

    font-size:72px;

    color:#333;

    line-height:1.05;

    margin-bottom:28px;

}

.career-content-side>p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:2;

    font-size:16px;

}/*==================================
CAREER SECTION
==================================*/

.career-form{

    padding:30px 0;

    background:#fff;

    position:relative;
     border:1px solid #ececec


}

.career-form::before{

    content:"";

    position:absolute;

    top:-250px;

    right:-250px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(214,32,39,.035) 0%,
    transparent 70%);

}

.career-content-side{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

    text-align:center;

}

.career-content-side>span{

    display:inline-block;

    color:#D62027;

    font-size:13px;

    font-weight:700;

    letter-spacing:5px;

    margin-bottom:18px;

}

.career-content-side h2{

    font-family:'Komu';

    font-size:68px;

    line-height:1.05;

    color:#333;

    margin-bottom:30px;

}

.career-content-side>p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:2;

    font-size:16px;

}

/*==================================
POINTS
==================================*/

.career-points{

    position:relative;

    margin-top:90px;

    display:flex;

    flex-direction:column;

    gap:60px;

}

.career-points::before{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    top:40px;

    bottom:40px;

    width:1px;

    background:#f2f2f2;

}

/*==================================
CARD
==================================*/

.career-point{

    position:relative;

    width:58%;

    padding:55px;

    background:black;

    border:1px solid #ececec;

    border-radius:14px;

    overflow:hidden;

    box-shadow:

    0 15px 40px rgba(0,0,0,.05);

    transition:.45s;

    opacity:0;

}

.career-point.left{

    margin-right:auto;

    transform:translateX(-120px);

}

.career-point.right{

    margin-left:auto;

    transform:translateX(120px);

    margin-top:40px;

}

.career-point.active{

    opacity:1;

    transform:translateX(0);

}

.career-point.active:hover{

    transform:translateY(-10px);

}

/*==================================
LEFT RED BAR
==================================*/

.career-point::before{

    content:"";

    position:absolute;

    left:0;

    top:40px;

    width:5px;

    height:60px;

  

    transition:.4s;

}

.career-point:hover::before{

    height:120px;

}

/*==================================
BOTTOM LINE
==================================*/

.career-point::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:3px;

    background:#D62027;

    transition:.45s;

}

.career-point:hover::after{

    width:100%;

}

.career-point:hover{

    border-color:#D62027;

    box-shadow:

    0 30px 70px rgba(0,0,0,.09);

}



/*==================================
TEXT
==================================*/

.career-point h3{

    position:relative;

    z-index:2;

    font-family:'Komu';

    font-size:34px;

    color:#D42027;

    margin-bottom:18px;

}

.career-point p{

    position:relative;

    z-index:2;

    color:white;

    line-height:2;

    font-size:15px;

}

/*==================================
FORM
==================================*/

.career-form-box{

    margin-top:140px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:70px;

    box-shadow:

    0 20px 60px rgba(0,0,0,.06);

 

}

.career-form-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 35px 80px rgba(0,0,0,.08);

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

    .career-content-side h2{

        font-size:46px;

    }

    .career-points::before{

        display:none;

    }

    .career-point{

        width:100%;

        margin:0 !important;

    }

    .career-form-box{

        padding:40px;

    }

}


 /*==================================
APPLICATION FORM
==================================*/

.career-form-box{

    margin-top:140px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:70px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    transition:.4s;

    position:relative;

    overflow:hidden;

}



.career-form-box:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 80px rgba(0,0,0,.08);

}

.career-form-box span{

    display:inline-block;

    color:#D62027;

    font-size:13px;

    font-weight:700;

    letter-spacing:5px;

    margin-bottom:15px;

}

.career-form-box h2{

    font-family:'Komu';

    font-size:48px;

    color:#333;

    line-height:1.1;

    margin-bottom:20px;

}

.career-form-box>p{

    max-width:700px;

    color:#666;

    line-height:1.9;

    margin-bottom:45px;

}


/*==================================
FORM GRID
==================================*/

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}


/*==================================
INPUTS
==================================*/

.form-group{

    width:100%;

}

.job-form input,
.job-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #e5e5e5;

    border-radius:10px;

    background:#fff;

    color:#333;

    font-size:15px;

    transition:.35s;

    outline:none;

}

.job-form input::placeholder,
.job-form textarea::placeholder{

    color:#9a9a9a;

}

.job-form textarea{

    min-height:180px;

    resize:none;

    margin-top:25px;

}

.job-form input:focus,
.job-form textarea:focus{

    border-color:#D62027;

    box-shadow:0 0 0 5px rgba(214,32,39,.08);

}


/*==================================
UPLOAD
==================================*/

.upload-box{

    margin:35px 0;

}

.upload-box label{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:45px;

    border:2px dashed #dddddd;

    border-radius:12px;

    background:#fafafa;

    cursor:pointer;

    transition:.35s;

}

.upload-box label:hover{

    border-color:#D62027;

    background:#fff;

}

.upload-box i{

    font-size:46px;

    color:#D62027;

    margin-bottom:18px;

}

.upload-box strong{

    display:block;

    font-family:'Komu';

    font-size:24px;

    color:#333;

    margin-bottom:8px;

}

.upload-box span{

    color:#888;

    font-size:13px;

    letter-spacing:1px;

}

.upload-box input{

    display:none;

}


/*==================================
BUTTON
==================================*/

.job-form .btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:10px;

    background:#D62027;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.job-form .btn:hover{

    background:#222;

    letter-spacing:1px;

}


/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

    .career-form-box{

        padding:40px;

    }

    .career-form-box h2{

        font-size:38px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .career-form-box{

        padding:25px;

    }

    .career-form-box h2{

        font-size:30px;

    }

    .upload-box label{

        padding:30px 20px;

    }

}