/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background: #080808;
    font-family: 'Lato', sans-serif;
}

.container {

    width: 92%;
    max-width: 1450px;
    margin: auto;

}

/* ====================== */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    padding: 24px 0;

    z-index: 1000;

    background: rgba(8, 8, 8, .75);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition: .35s;

}

.navbar.scrolled {

    padding: 18px 0;

    background: #090909;

}

/* ====================== */

.navbar .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/* ====================== */

.logo img{
    height: 30px;
    width: auto;
    display: block;
}

/* .logo:hover img {

    transform: scale(1.05);

} */

/* ====================== */

.nav-links {

    display: flex;

    gap: 40px;

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

}

.nav-links a {

    position: relative;

    text-decoration: none;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .35s;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -16px;

    width: 0;

    height: 3px;

    background: #ff6a00;

    border-radius: 20px;

    transform: translateX(-50%);

    transition: .35s;

}

.nav-links a:hover {

    color: #ff6a00;

}

.nav-links a:hover::after {

    width: 22px;

}

/* ====================== */

.nav-right {

    display: flex;

    align-items: center;

    gap: 20px;

}

/* ====================== */

.talk-btn {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 34px;

    border: 1px solid #ff6a00;

    border-radius: 12px;

    text-decoration: none;

    color: #ff6a00;

    font-weight: 700;

    transition: .4s;

    overflow: hidden;

    position: relative;

}

.talk-btn::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: #ff6a00;

    transition: .45s;

    z-index: -1;

}

.talk-btn:hover::before {

    left: 0;

}

.talk-btn:hover {

    color: #fff;

}

.talk-btn svg {

    transition: .35s;

}

.talk-btn:hover svg {

    transform: translateX(6px);

}

/* ====================== */

.theme-btn {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .18);

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 20px;

    transition: .35s;

}

.theme-btn:hover {

    background: #ff6a00;

    border-color: #ff6a00;

    transform: rotate(180deg);

}

/* ====================== */

@media(max-width:992px) {

    .nav-links {

        display: none;

    }

    .talk-btn {

        padding: 14px 22px;

    }


}

























/* ===========================
   HERO SECTION
=========================== */

.hero{
    width:100%;
    min-height:80vh;
    background:#080808;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8%;
    position:relative;
    overflow:hidden;
}

/* ===========================
   LEFT SIDE
=========================== */

.hero-left{
    width:44%;
    position:relative;
    z-index:5;
}

/* .line{
    width:65px;
    height:4px;
    background:#ff6a00;
    border-radius:30px;
    display:block;
    margin-bottom:28px;
} */

.hero-left h1{
    font-size:60px;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    letter-spacing:0px;
    margin-bottom:28px;
    max-width:520px;
}

.hero-left h1 span{
    color:#ff6a00;
}

.hero-left p{
    max-width:520px;
    font-size:18px;
    line-height:1.2;
    color:#9b9b9b;
    margin-bottom:40px;
}

/* ===========================
   BUTTONS
=========================== */

.hero-btns{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:55px;
}

.btn-primary{
    padding:12px 24px;
    border:2px solid #ff6a00;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    background:#ff6a00;
}

.btn-secondary{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    color:#ff6a00;
}

/* ===========================
   STATS
=========================== */

/* ===========================
   STATS
=========================== */

.stats{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:28px;
    margin-top:15px;
}

.stats div{
    flex:1;
}

.stats h2{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
    line-height:1;
}

.stats h2::after{
    content:"+";
    color:#ff6a00;
    margin-left:2px;
}

.stats p{
    font-size:11px;
    color:#8a8a8a;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin:0;
}
/* ===========================
   RIGHT SIDE
=========================== */

.hero-right{
    width:46%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.rings{
    width:520px;
    height:520px;
    position:relative;
}

/* ===========================
   CIRCLES
=========================== */

.ring{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:1px solid rgba(255,106,0,.15);
}

.r1{
    width:120px;
    height:120px;
}

.r2{
    width:200px;
    height:200px;
}

.r3{
    width:290px;
    height:290px;
}

.r4{
    width:390px;
    height:390px;
}

.r5{
    width:500px;
    height:500px;
}

/* ===========================
   BACKGROUND LOGO
=========================== */

.bg-logo{
    position:absolute;
    width:560px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) rotate(-18deg);
    opacity:.07;
    pointer-events:none;
}

/* ===========================
   CENTER LOGO
=========================== */

.center-logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:120px;
    height:120px;
    border:2px solid #ff6a00;
    border-radius:50%;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 35px rgba(255,106,0,.15);
}

.center-logo img{
    width:100px;
}

/* ===========================
   SCROLL INDICATOR
=========================== */

.scroll{
    position:absolute;
    bottom:100px;      /* pehle 28px tha */
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    z-index:10;
}

.mouse{
    width:26px;       /* pehle 34px */
    height:42px;      /* pehle 56px */
    border:2px solid rgba(255,255,255,.35);
    border-radius:20px;
    margin:0 auto 12px;
    position:relative;
}

.mouse span{
    width:5px;
    height:5px;
    background:#ff6a00;
    border-radius:50%;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:8px;
    animation:scroll 2s infinite;
}

/* .scroll p{
    font-size:10px;
    letter-spacing:2px;
    color:#7d7d7d;
    text-transform:uppercase;
    margin:0;
} */
/* ===========================
   ANIMATION
=========================== */

@keyframes scroll{

    0%{
        top:10px;
        opacity:1;
    }

    100%{
        top:30px;
        opacity:0;
    }

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

.hero{
    flex-direction:column;
    text-align:center;
    gap:70px;
    padding:80px 8%;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left h1{
    font-size:54px;
    max-width:100%;
}

.hero-left p{
    max-width:100%;
    margin:auto;
    margin-bottom:35px;
}

.hero-btns{
    justify-content:center;
}

.stats{
    justify-content:center;
}

.rings{
    width:420px;
    height:420px;
}

.bg-logo{
    width:450px;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:42px;
}

.hero-left p{
    font-size:16px;
}

.btn-primary{
    padding:14px 24px;
    font-size:15px;
}

.btn-secondary{
    font-size:15px;
}

.stats{
    gap:25px;
}

.stats h2{
    font-size:26px;
}

.rings{
    width:280px;
    height:280px;
}

.r5{
    width:250px;
    height:250px;
}

.r4{
    width:180px;
    height:180px;
}

.r3{
    width:140px;
    height:140px;
}

.r2{
    width:100px;
    height:100px;
}

.r1{
    width:60px;
    height:60px;
}

.center-logo{
    width:85px;
    height:85px;
}

.center-logo img{
    width:40px;
}

.bg-logo{
    width:330px;
}

}







































/*==========================================
  STRATEGY SECTION
==========================================*/

.strategy-section{
    padding:90px 0;
    background:#080808;
    position:relative;
    overflow:hidden;
}

/* .strategy-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%,rgba(255,106,0,.03),transparent 45%),
        radial-gradient(circle at 85% 80%,rgba(255,106,0,.03),transparent 45%);
    pointer-events:none;
} */

.strategy-section .container{
    position:relative;
    z-index:2;
}

/*==========================================
  GRID
==========================================*/

.strategy-grid{
    display:grid;
    grid-template-columns:40% 60%;
    gap:50px;
    align-items:center;
}

/*==========================================
  LEFT CONTENT
==========================================*/

.strategy-left{
    position:relative;
    max-width:520px;
}

.section-tag{
    display:inline-block;
    color:#ff6a00;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.strategy-left h2{
    font-family:'Baloo 2',sans-serif;
    font-size:58px;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.strategy-left h2 span{
    display:block;
    color:#ff6a00;
}

.orange-line{
    width:60px;
    height:3px;
    background:#ff6a00;
    border-radius:30px;
    margin:22px 0;
}

.strategy-left p{
    max-width:430px;
    color:#9b9b9b;
    font-size:17px;
    line-height:1.8;
}

/*==========================================
  RIGHT SIDE GRID
==========================================*/

.strategy-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    align-items:stretch;
}
/*==========================================
  CARD
==========================================*/

.strategy-card{
    position:relative;
    min-height:135px;   /* 170px -> 135px */
    padding:18px;        /* 22px -> 18px */
    background:linear-gradient(180deg,#111,#0b0b0b);
    border:1px solid rgba(255,255,255,.06);
    border-radius:16px;
    overflow:hidden;
    transition:.4s;
    cursor:pointer;
    width: 300px;
}

.strategy-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,106,0,.08),transparent 60%);
    opacity:0;
    transition:.45s ease;
}

.strategy-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left,
    rgba(255,106,0,.08),
    transparent 65%);
    opacity:0;
    transition:.45s;
}

.strategy-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,106,0,.18);
    box-shadow:0 18px 45px rgba(0,0,0,.45);
}

.strategy-card:hover::before,
.strategy-card:hover::after{
    opacity:1;
}

/*==========================================
  CARD HEADER
==========================================*/

.card-top{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.card-icon{
    width:34px;
    height:34px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,106,0,.05);
    border:1px solid rgba(255,106,0,.10);
}

.card-icon i{
    font-size:18px;
    color:#ff6a00;
}

.strategy-card:hover .card-icon{
    background:rgba(255,106,0,.10);
    border-color:rgba(255,106,0,.25);
}

.strategy-card:hover .card-icon i{
    transform:scale(1.08);
}

.card-top span{
    color:#ff6a00;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
}

/*==========================================
  CARD TITLE
==========================================*/

.strategy-card h3{
    color:#fff;
    font-family:'Baloo 2',sans-serif;
    font-size:16px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:16px;
}

/*==========================================
  MINI LINE
==========================================*/
.mini-line{
    width:24px;
    height:2px;
    background:#ff6a00;
    border-radius:20px;
}

.strategy-card:hover .mini-line{
    width:90%;
}


/*==========================================
  CARD ANIMATION
==========================================*/

.strategy-card{
    opacity:0;
    transform:translateY(40px);
    animation:cardFade .8s ease forwards;
}

.strategy-card:nth-child(2){
    animation-delay:.15s;
}

.strategy-card:nth-child(3){
    animation-delay:.3s;
}

.strategy-card:nth-child(4){
    animation-delay:.45s;
}

@keyframes cardFade{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*==========================================
  PROBLEM SECTION
==========================================*/

.problem-section{
    padding:90px 0;
    background:#080808;
    border-top:1px solid rgba(255,255,255,.06);
    position:relative;
    overflow:hidden;
}

.problem-grid{
    display:grid;
    grid-template-columns:42% 58%;
    gap:50px;
    align-items:center;
}

/*==========================================
  LEFT CONTENT
==========================================*/

.problem-left{
    max-width:470px;
}

.problem-left .section-tag{
    display:block;
    margin-bottom:18px;
}

.timeline-box{
    display:flex;
    align-items:flex-start;
    gap:28px;
    margin-top:25px;
}

.timeline{
    position:relative;
    width:18px;
    height:165px;
    flex-shrink:0;
}

.timeline::before{
    content:"";
    position:absolute;
    left:8px;
    top:0;
    width:2px;
    height:100%;
    background:#ff6a00;
}

.timeline::after{
    content:"";
    position:absolute;
    left:3px;
    top:0;
    width:12px;
    height:12px;
    background:#ff6a00;
    border-radius:50%;
    box-shadow:0 0 12px rgba(255,106,0,.35);
}

.timeline-content p{
    color:#b0b0b0;
    font-size:17px;
    line-height:1.9;
    margin-bottom:14px;
}

.timeline-content p:last-child{
    margin-bottom:0;
}

/*==========================================
  RIGHT CONTENT
==========================================*/

.problem-right{
    position:relative;
    min-height:300px;
    display:flex;
    align-items:center;
}

.problem-right h2{
    position:relative;
    z-index:2;
    font-family:'Baloo 2',sans-serif;
    font-size:62px;
    line-height:1.05;
    color:#fff;
    max-width:760px;
}

.problem-right h2 span{
    display:block;
    color:#ff6a00;
}











/*==========================================
BELIEF SECTION
==========================================*/
.belief-section{
    position:relative;
    padding:120px 0;
    background:#090909;
    overflow:hidden;
}
.belief-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:2;
}
/* .belief-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    top:-220px;
    left:-220px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,106,0,.18),transparent 70%);
}
.belief-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-180px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,106,0,.12),transparent 70%);
} */
.belief-top{
    margin-bottom:80px;
}
.belief-tag{
    display:inline-block;
    color:#ff6a00;
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:35px;
}
.belief-heading-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:80px;
}
.belief-heading-left{
    flex:1;
}
.belief-heading-right{
    width:280px;
}
.belief-title{
    color:#fff;
    font-size:88px;
    line-height:0.92;
    font-weight:900;
    letter-spacing:-3px;
    text-transform:uppercase;
    margin:0;
}
.belief-script{
    font-family:"Caveat",cursive;
    color:#ff6a00;
    text-transform:none;
    font-weight:500;
}
.belief-script-top{
    font-size:64px;
    display:inline-block;
    transform:rotate(-8deg);
    margin-left:12px;
}
.belief-script-bottom{
    display:inline-block;
    font-size:92px;
    transform:rotate(-6deg);
    margin-top:12px;
}
.belief-quote{
    display:flex;
    align-items:center;
    gap:18px;
    justify-content:flex-end;
}
.belief-line{
    width:70px;
    height:2px;
    background:#ff6a00;
}
.belief-quote p{
    color:#d6d6d6;
    font-size:16px;
    line-height:1.7;
    margin:0;
}
.belief-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.belief-card{
    position:relative;
    background:#111111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:45px 35px;
    transition:.4s ease;
    overflow:hidden;
}
.belief-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,106,0,.08),transparent 60%);
    opacity:0;
    transition:.4s;
}
.belief-card:hover{
    transform:translateY(-12px);
    border-color:rgba(255,106,0,.45);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}
.belief-card:hover::before{
    opacity:1;
}
.belief-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff6a00;
    margin-bottom:28px;
    transition:.4s;
}
.belief-card:hover .belief-icon{
    background:#ff6a00;
    color:#ffffff;
    transform:rotate(-8deg) scale(1.08);
}
.belief-icon svg{
    width:34px;
    height:34px;
}
.belief-card h3{
    font-size:26px;
    color:#ffffff;
    font-weight:800;
    margin:0 0 18px;
    letter-spacing:1px;
}
.belief-orange{
    color:#ff6a00!important;
}
.belief-card p{
    color:#b9b9b9;
    font-size:16px;
    line-height:1.8;
    margin:0;
}
/* .belief-divider{
    width:100%;
    height:1px;
    margin-top:90px;
    background:linear-gradient(to right,transparent,#ff6a00,transparent);
} */



















































/*==========================================
PROOF SECTION
==========================================*/

.proof-section{
padding:120px 0;
background:#050505;
overflow:hidden;
position:relative;
}


.proof-header{
margin-bottom:90px;
}

.proof-label{
display:inline-block;
font-size:15px;
font-weight:700;
letter-spacing:4px;
text-transform:uppercase;
color:#ff7b00;
margin-bottom:28px;
font-family:"Lato",sans-serif;
}

.proof-title{
display:flex;
flex-direction:column;
line-height:.9;
}

.proof-title-top{
font-size:110px;
font-weight:900;
font-family:"Baloo 2",sans-serif;
text-transform:uppercase;
background:linear-gradient(180deg,#ffffff,#bfbfbf);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:8px;
}

.proof-title-bottom{
font-size:95px;
font-style:italic;
font-weight:500;
color:#ff7b00;
font-family:"Cormorant Garamond",serif;
}

.proof-timeline{
position:relative;
display:grid;
grid-template-columns:repeat(3,1fr);
column-gap:80px;
padding-top:70px;
}

.proof-line{
position:absolute;
top:40px;
left:40px;
right:40px;
height:2px;
background:rgba(255,255,255,.18);
z-index:1;
}

.proof-step{
position:relative;
z-index:2;
}

.proof-icon{
width:84px;
height:84px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(30,30,30,.95);
border:2px solid rgba(255,255,255,.15);
box-shadow:0 0 25px rgba(255,119,0,.12);
margin-bottom:42px;
transition:.4s;
}

.proof-icon i{
font-size:32px;
color:#ff7b00;
transition:.4s;
}

.proof-step:hover .proof-icon{
transform:translateY(-8px);
border-color:#ff7b00;
box-shadow:0 0 35px rgba(255,119,0,.35);
}

.proof-step:hover .proof-icon i{
transform:scale(1.15);
}

.proof-number{
display:block;
font-size:36px;
font-weight:600;
color:#ff7b00;
margin-bottom:18px;
font-family:"Lato",sans-serif;
}

.proof-heading{
font-size:54px;
line-height:1.05;
font-weight:900;
text-transform:uppercase;
color:#f2f2f2;
margin-bottom:28px;
font-family:"Baloo 2",sans-serif;
}
.proof-description{
font-size:21px;
line-height:1.9;
color:#bdbdbd;
margin-bottom:38px;
max-width:420px;
font-family:"Lato",sans-serif;
}

.proof-list{
list-style:none;
margin:0;
padding:0 0 0 30px;
border-left:3px solid #ff7b00;
}

.proof-list li{
position:relative;
font-size:18px;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
color:#ececec;
margin-bottom:18px;
padding-left:28px;
font-family:"Lato",sans-serif;
}

.proof-list li:last-child{
margin-bottom:0;
}

.proof-list li::before{
content:"";
position:absolute;
left:0;
top:50%;
transform:translateY(-50%);
width:8px;
height:8px;
border-radius:50%;
background:#ff7b00;
box-shadow:0 0 12px rgba(255,123,0,.6);
}

.proof-step:hover .proof-heading{
color:#ffffff;
}

.proof-step:hover .proof-number{
transform:translateX(6px);
transition:.35s;
}

.proof-step:hover .proof-description{
color:#d8d8d8;
}
/* 
@media(max-width:1200px){

.proof-title-top{
font-size:30px;
}

.proof-title-bottom{
font-size:78px;
}

.proof-heading{
font-size:44px;
}

.proof-timeline{
column-gap:50px;
}

}

@media(max-width:991px){

.proof-section{
padding:90px 0;
}

.proof-title-top{
font-size:68px;
}

.proof-title-bottom{
font-size:58px;
}

.proof-timeline{
grid-template-columns:1fr;
row-gap:70px;
padding-top:30px;
}

.proof-line{
display:none;
}

.proof-icon{
margin-bottom:25px;
}

.proof-heading{
font-size:42px;
}

.proof-description{
max-width:100%;
font-size:18px;
}

}

@media(max-width:576px){

.proof-title-top{
font-size:50px;
}

.proof-title-bottom{
font-size:42px;
}

.proof-label{
font-size:13px;
letter-spacing:3px;
}

.proof-heading{
font-size:34px;
}

.proof-number{
font-size:28px;
}

.proof-description{
font-size:16px;
line-height:1.8;
}

.proof-list li{
font-size:15px;
}

.proof-icon{
width:70px;
height:70px;
}

.proof-icon i{
font-size:26px;
}

} */






















/*==============================
  GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
}

/*==============================
  CONTAINER
==============================*/

.container{
    width:90%;
    max-width:1500px;
    margin:auto;
}

.portfolio{
    padding:120px 0;
}

/*==============================
  HEADER
==============================*/

.portfolio-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:55px;
}

.portfolio-subtitle{
    display:block;
    color:#AD5501;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.portfolio-top h1{
    font-size:110px;
    line-height:.88;
    font-weight:900;
    letter-spacing:-4px;
}

.case-btn{
    color:#fff;
    text-decoration:none;
    border:1px solid #333;
    padding:20px 42px;
    border-radius:60px;
    font-weight:700;
    letter-spacing:2px;
    transition:.35s;
}

.case-btn:hover{
    background:#fff;
    color:#000;
}

.line{
    width:100%;
    height:1px;
    background:#222;
    margin-bottom:70px;
}

/*==============================
  GRID
==============================*/

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/*==============================
  CARD
==============================*/

.card{

    position:relative;

    height:440px;

    border-radius:36px;

    overflow:hidden;

    background:#111;

    cursor:pointer;
}

.card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;
}

/*==============================
  OVERLAY
==============================*/

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.45s;
}

.card:hover .overlay{

    opacity:1;
}

.card:hover img{

    transform:scale(1.08);

    filter:blur(4px) brightness(.6);
}

/*==============================
  TEXT
==============================*/

.overlay span{

    color:#ff7d03;

    font-size:13px;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:18px;
}

.overlay h2{

    font-size:40px;

    font-family:Georgia,serif;

    font-style:italic;

    font-weight:400;

    margin-bottom:-5px;
}

.overlay h3{

    font-size:62px;

    font-weight:900;

    line-height:.95;

    margin-bottom:20px;
}

.overlay p{

    max-width:330px;

    color:#f3f3f3;

    line-height:1.8;

    margin-bottom:35px;
}

.overlay a{

    display:flex;

    justify-content:center;

    align-items:center;

    width:245px;

    height:64px;

    border-radius:60px;

    background:#ff5e00;

    color:#000;

    text-decoration:none;

    font-weight:800;

    transition:.35s;
}

.overlay a:hover{

    transform:scale(1.05);
}

/*==============================
  RESPONSIVE
==============================*/

@media(max-width:1100px){

.cards{

grid-template-columns:1fr;

}

.portfolio-top{

flex-direction:column;

align-items:flex-start;

gap:30px;

}

.portfolio-top h1{

font-size:70px;

}

.card{

height:520px;

}

}

@media(max-width:768px){

.container{

width:94%;

}

.portfolio-top h1{

font-size:54px;

}

.card{

height:430px;

}

.overlay h3{

font-size:42px;

}

.overlay a{

width:210px;

height:56px;

}

}




















#services-section{
padding:110px 7%;
background:#050505;
overflow:hidden;
position:relative;
}

.services-container{
max-width:1400px;
margin:auto;
}

.services-header{
max-width:620px;
margin-bottom:70px;
}

.services-label{
display:flex;
align-items:center;
gap:10px;
margin-bottom:18px;
}

.services-label span{
font-size:24px;
font-weight:700;
font-family:"Baloo 2",sans-serif;
color:#E95F1E;
line-height:1;
}

.services-label p{
font-size:15px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
}

.services-heading{
display:flex;
flex-direction:column;
font-family:"Baloo 2",sans-serif;
font-size:68px;
font-weight:700;
line-height:.95;
margin-bottom:24px;
}

.services-heading-white{
color:#fff;
}

.services-heading-orange{
color:#E95F1E;
}

.services-description{
max-width:520px;
font-size:18px;
line-height:1.8;
color:#A6A6A6;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.services-card{
position:relative;
height:470px;
padding:28px;
background:#0B0B0B;
border:1px solid #1A1A1A;
border-radius:24px;
overflow:hidden;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:.45s cubic-bezier(.22,1,.36,1);
cursor:pointer;
}

.services-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(233,95,30,.12),rgba(10,10,10,.98));
opacity:0;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.services-card:hover::before{
opacity:1;
}

.services-card:hover{
border-color:#E95F1E;
transform:translateY(-8px) scale(1.02);
}

.services-glow{
position:absolute;
width:320px;
height:320px;
border-radius:50%;
background:radial-gradient(circle,rgba(233,95,30,.28),transparent 70%);
transform:translate(-50%,-50%);
pointer-events:none;
opacity:0;
filter:blur(18px);
transition:.3s;
z-index:0;
}

.services-card:hover .services-glow{
opacity:1;
}

.services-cursor-glow{
position:absolute;
width:120px;
height:120px;
border-radius:50%;
background:radial-gradient(circle,rgba(233,95,30,.25),transparent 70%);
transform:translate(-50%,-50%);
pointer-events:none;
opacity:0;
transition:.3s;
z-index:1;
}

.services-card:hover .services-cursor-glow{
opacity:1;
}

.services-left-line{
position:absolute;
left:0;
top:30px;
width:3px;
height:55px;
background:#E95F1E;
border-radius:10px;
transition:.45s cubic-bezier(.22,1,.36,1);
z-index:2;
}

.services-card:hover .services-left-line{
height:calc(100% - 60px);
}

.services-top{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
z-index:2;
}

.services-number{
font-size:30px;
font-weight:700;
font-family:"Baloo 2",sans-serif;
color:#E95F1E;
}

.services-icon-circle{
width:62px;
height:62px;
border-radius:50%;
border:1px solid rgba(255,255,255,.15);
display:flex;
align-items:center;
justify-content:center;
color:#E95F1E;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.services-card:hover .services-icon-circle{
transform:rotate(15deg);
}

.services-content{
position:relative;
z-index:2;
flex:1;
display:flex;
flex-direction:column;
justify-content:center;
}

.services-title{
font-size:36px;
font-family:"Baloo 2",sans-serif;
font-weight:700;
line-height:1.1;
color:#fff;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.services-title span{
display:block;
}

.services-card:hover .services-title{
transform:translateY(-18px);
}

.services-line{
width:60px;
height:3px;
background:#E95F1E;
margin:18px 0;
border-radius:20px;
}

.services-text{
font-size:16px;
line-height:1.8;
color:#A6A6A6;
transition:.35s;
margin-bottom:15px;
}



.services-list{
list-style:none;
margin-top:8px;
max-height:0;
opacity:0;
overflow:hidden;
transform:translateY(20px);
transition:.45s cubic-bezier(.22,1,.36,1);
}

.services-card:hover .services-list{
max-height:260px;
opacity:1;
transform:translateY(0);
}

.services-list li{
position:relative;
padding-left:18px;
margin-bottom:12px;
font-size:15px;
font-weight:400;
line-height:1.6;
color:#E5E5E5;
}

.services-list li:last-child{
margin-bottom:0;
}

.services-list li::before{
content:"";
position:absolute;
left:0;
top:9px;
width:6px;
height:6px;
border-radius:50%;
background:#E95F1E;
}

.services-card:hover .services-text{
opacity:0;
transform:translateY(-10px);
margin-bottom:0;
height:0;
overflow:hidden;
}

.services-button{
width:54px;
height:54px;
border-radius:50%;
background:transparent;
border:1px solid #E95F1E;
display:flex;
align-items:center;
justify-content:center;
color:#E95F1E;
cursor:pointer;
transition:.45s cubic-bezier(.22,1,.36,1);
position:relative;
z-index:2;
}

.services-button svg{
transition:.45s cubic-bezier(.22,1,.36,1);
}

.services-card:hover .services-button{
background:#E95F1E;
color:#fff;
}

.services-card:hover .services-button svg{
transform:translateX(5px);
}

.services-pattern{
position:absolute;
right:-70px;
bottom:-70px;
width:180px;
height:180px;
opacity:0;
transition:.45s cubic-bezier(.22,1,.36,1);
pointer-events:none;
}

.services-pattern::before,
.services-pattern::after{
content:"";
position:absolute;
border:1px solid rgba(233,95,30,.18);
border-radius:50%;
}

.services-pattern::before{
width:170px;
height:170px;
right:0;
bottom:0;
}

.services-pattern::after{
width:120px;
height:120px;
right:25px;
bottom:25px;
}

.services-card:hover .services-pattern{
right:-20px;
bottom:-20px;
opacity:.5;
}

.services-card>*{
position:relative;
z-index:2;
}

@media(max-width:1200px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.services-heading{
font-size:56px;
}

.services-card{
height:450px;
}

}

@media(max-width:768px){

#services-section{
padding:90px 25px;
}

.services-grid{
grid-template-columns:1fr;
}

.services-heading{
font-size:44px;
}

.services-description{
font-size:16px;
}

.services-card{
height:auto;
min-height:430px;
}

.services-title{
font-size:30px;
}

}

@media(max-width:480px){

#services-section{
padding:70px 18px;
}

.services-heading{
font-size:38px;
}

.services-card{
padding:22px;
}

.services-number{
font-size:26px;
}

.services-icon-circle{
width:56px;
height:56px;
}

.services-title{
font-size:28px;
}

.services-button{
width:50px;
height:50px;
}

.services-list li{
font-size:14px;
}

}
















#about-section{
padding:80px 7%;
background:#050505;
overflow:hidden;
position:relative;
}

.about-container{
max-width:1380px;
margin:auto;
display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:60px;
}

.about-left{
max-width:700px;
}

.about-label{
display:flex;
align-items:center;
gap:10px;
margin-bottom:16px;
}

.about-label span{
font-size:24px;
font-family:"Baloo 2",sans-serif;
font-weight:700;
color:#E95F1E;
}

.about-label p{
font-size:15px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
}

.about-heading{
display:flex;
flex-direction:column;
line-height:.92;
margin-bottom:18px;
}

.about-heading-white{
font-family:"Baloo 2",sans-serif;
font-size:62px;
font-weight:700;
color:#fff;
}

.about-heading-orange{
margin-top:6px;
font-family:"Cormorant Garamond",serif;
font-size:72px;
font-style:italic;
font-weight:500;
color:#E95F1E;
}

.about-heading-line{
width:70px;
height:3px;
background:#E95F1E;
margin:20px 0 26px;
border-radius:50px;
}

.about-intro{
font-size:18px;
line-height:1.8;
color:#A6A6A6;
margin-bottom:35px;
max-width:620px;
}

.about-quote-box{
display:flex;
gap:22px;
}

.about-quote-line{
width:3px;
background:#E95F1E;
border-radius:20px;
}

.about-quote-content{
flex:1;
}

.about-quote-icon{
font-size:52px;
color:#E95F1E;
font-family:"Baloo 2",sans-serif;
line-height:1;
margin-bottom:6px;
}

.about-quote{
font-size:20px;
line-height:1.6;
color:#fff;
margin-bottom:22px;
max-width:620px;
}

.about-divider{
width:50px;
height:2px;
background:#333;
margin-bottom:24px;
}

.about-description{
font-size:17px;
line-height:1.9;
color:#B9B9B9;
margin-bottom:18px;
}

.about-description span{
color:#E95F1E;
font-weight:700;
}

.about-right{
display:flex;
justify-content:center;
position:relative;
}

.about-card{
width:100%;
max-width:500px;
background:#0B0B0B;
border:1px solid rgba(233,95,30,.65);
border-radius:34px;
overflow:hidden;
box-shadow:0 0 35px rgba(233,95,30,.10);
}

.about-image-box{
height:340px;
position:relative;
overflow:hidden;
}

.about-image{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.about-image-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,#0B0B0B 0%,transparent 45%);
}

.about-card-glow{
position:absolute;
inset:0;
background:radial-gradient(circle at center,rgba(233,95,30,.16),transparent 70%);
pointer-events:none;
}

.about-dot-pattern{
position:absolute;
top:28px;
right:28px;
width:110px;
height:110px;
background-image:radial-gradient(rgba(233,95,30,.35) 1.5px,transparent 1.5px);
background-size:14px 14px;
opacity:.45;
pointer-events:none;
}

.about-content{
padding:28px 28px 30px;
position:relative;
z-index:2;
}

.about-name{
font-family:"Baloo 2",sans-serif;
font-size:28px;
font-weight:700;
color:#fff;
margin-bottom:4px;
line-height:1;
}

.about-role{
font-size:13px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
margin-bottom:16px;
}

.about-role-line{
width:55px;
height:2px;
background:#E95F1E;
border-radius:20px;
margin-bottom:22px;
}

.about-feature-list{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:28px;
}

.about-feature-list li{
display:flex;
align-items:center;
gap:14px;
padding-bottom:12px;
border-bottom:1px solid rgba(255,255,255,.06);
font-size:16px;
color:#E3E3E3;
}

.about-feature-list li:last-child{
border-bottom:none;
padding-bottom:0;
}

.about-feature-list i{
width:38px;
height:38px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
background:rgba(233,95,30,.12);
color:#E95F1E;
transition:.4s cubic-bezier(.22,1,.36,1);
}

.about-card:hover .about-feature-list i{
background:#E95F1E;
color:#fff;
transform:rotate(12deg);
}

.about-button{
display:inline-flex;
align-items:center;
justify-content:center;
gap:12px;
padding:13px 26px;
border:1px solid #E95F1E;
border-radius:50px;
text-decoration:none;
font-size:15px;
font-weight:600;
color:#fff;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.about-button i{
font-size:18px;
color:#E95F1E;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.about-button:hover{
background:#E95F1E;
transform:translateY(-4px);
}

.about-button:hover i{
color:#fff;
}

@media(max-width:1200px){

.about-container{
grid-template-columns:1fr;
gap:50px;
}

.about-right{
order:-1;
}

.about-card{
max-width:480px;
margin:auto;
}

.about-heading-white{
font-size:52px;
}

.about-heading-orange{
font-size:60px;
}

}

@media(max-width:768px){

#about-section{
padding:70px 24px;
}

.about-container{
gap:40px;
}

.about-heading-white{
font-size:40px;
}

.about-heading-orange{
font-size:46px;
}

.about-intro{
font-size:16px;
}

.about-quote{
font-size:18px;
}

.about-description{
font-size:15px;
}

.about-image-box{
height:300px;
}

.about-content{
padding:24px;
}

}

@media(max-width:480px){

#about-section{
padding:60px 18px;
}

.about-heading-white{
font-size:34px;
}

.about-heading-orange{
font-size:38px;
}

.about-name{
font-size:24px;
}

.about-feature-list li{
font-size:14px;
}

.about-button{
width:100%;
}

.about-image-box{
height:260px;
}

}



























































#pricing-section{
padding:80px 7%;
background:#050505;
position:relative;
overflow:hidden;
}

.pricing-container{
max-width:1380px;
margin:auto;
}

.pricing-header{
display:grid;
grid-template-columns:1.1fr .9fr;
align-items:end;
gap:70px;
margin-bottom:55px;
}

.pricing-left{
max-width:720px;
}

.pricing-label{
display:flex;
align-items:center;
gap:10px;
margin-bottom:16px;
}

.pricing-label span{
font-size:24px;
font-family:"Baloo 2",sans-serif;
font-weight:700;
color:#E95F1E;
}

.pricing-label p{
font-size:15px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
}

.pricing-heading{
display:flex;
flex-direction:column;
line-height:.92;
}

.pricing-heading-white{
font-family:"Baloo 2",sans-serif;
font-size:62px;
font-weight:700;
color:#fff;
}

.pricing-heading-orange{
font-family:"Baloo 2",sans-serif;
font-size:62px;
font-weight:700;
color:#E95F1E;
}

.pricing-right{
display:flex;
align-items:flex-start;
gap:28px;
padding-top:20px;
}

.pricing-line{
width:3px;
height:90px;
background:#E95F1E;
border-radius:20px;
}

.pricing-description{
font-size:18px;
line-height:1.9;
color:#A6A6A6;
}

.pricing-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
align-items:stretch;
}

.pricing-card{
position:relative;
background:#0B0B0B;
border:1px solid #1A1A1A;
border-radius:32px;
padding:30px;
overflow:hidden;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.pricing-card:hover{
transform:translateY(-10px);
border-color:#E95F1E;
}

.pricing-featured{
background:linear-gradient(180deg,rgba(233,95,30,.16),#0B0B0B);
border:1px solid #E95F1E;
box-shadow:0 0 35px rgba(233,95,30,.18);
}

.pricing-glow{
position:absolute;
top:-140px;
left:50%;
transform:translateX(-50%);
width:320px;
height:320px;
background:radial-gradient(circle,rgba(233,95,30,.28),transparent 70%);
opacity:0;
transition:.45s;
pointer-events:none;
}

.pricing-card:hover .pricing-glow{
opacity:1;
}

.pricing-popular{
position:absolute;
top:-1px;
left:50%;
transform:translateX(-50%);
display:flex;
align-items:center;
gap:8px;
padding:10px 22px;
background:#E95F1E;
border-radius:0 0 18px 18px;
font-size:13px;
font-weight:700;
letter-spacing:1px;
color:#fff;
}

.pricing-top{
display:flex;
align-items:center;
gap:18px;
margin-top:16px;
margin-bottom:22px;
}

.pricing-icon{
width:70px;
height:70px;
border-radius:50%;
border:1px solid #E95F1E;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#E95F1E;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.pricing-card:hover .pricing-icon{
background:#E95F1E;
color:#fff;
transform:rotate(12deg);
}

.pricing-title{
font-family:"Baloo 2",sans-serif;
font-size:26px;
font-weight:700;
line-height:1.05;
color:#fff;
}

.pricing-title span{
display:block;
}

.pricing-text{
font-size:16px;
line-height:1.8;
color:#A6A6A6;
margin-bottom:24px;
}

.pricing-divider{
width:100%;
height:1px;
background:#222;
margin-bottom:24px;
}
.pricing-list{
list-style:none;
display:flex;
flex-direction:column;
gap:16px;
margin-bottom:30px;
}

.pricing-list li{
display:flex;
align-items:center;
gap:14px;
padding-bottom:14px;
border-bottom:1px solid rgba(255,255,255,.06);
font-size:16px;
color:#E5E5E5;
}

.pricing-list li:last-child{
border-bottom:none;
padding-bottom:0;
}

.pricing-list i{
width:36px;
height:36px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(233,95,30,.12);
color:#E95F1E;
font-size:14px;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.pricing-card:hover .pricing-list i{
background:#E95F1E;
color:#fff;
transform:scale(1.08);
}

.pricing-button{
margin-top:auto;
height:54px;
border-radius:50px;
display:flex;
align-items:center;
justify-content:center;
gap:12px;
text-decoration:none;
border:1px solid #E95F1E;
color:#fff;
font-size:15px;
font-weight:700;
letter-spacing:1px;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.pricing-button i{
font-size:15px;
color:#E95F1E;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.pricing-button:hover{
background:#E95F1E;
transform:translateY(-4px);
}

.pricing-button:hover i{
color:#fff;
transform:translateX(5px);
}

.pricing-button-active{
background:#E95F1E;
}

.pricing-button-active i{
color:#fff;
}

.pricing-footer{
display:flex;
justify-content:center;
align-items:center;
gap:18px;
margin-top:45px;
flex-wrap:wrap;
}

.pricing-footer-item{
display:flex;
align-items:center;
gap:10px;
font-size:15px;
color:#B5B5B5;
}

.pricing-footer-item i{
color:#E95F1E;
}

.pricing-footer-dot{
width:6px;
height:6px;
border-radius:50%;
background:#E95F1E;
opacity:.5;
}

@media(max-width:1200px){

.pricing-header{
grid-template-columns:1fr;
gap:35px;
}

.pricing-cards{
grid-template-columns:repeat(2,1fr);
}

.pricing-heading-white,
.pricing-heading-orange{
font-size:52px;
}

}

@media(max-width:768px){

#pricing-section{
padding:70px 24px;
}

.pricing-cards{
grid-template-columns:1fr;
}

.pricing-heading-white,
.pricing-heading-orange{
font-size:42px;
}

.pricing-description{
font-size:16px;
}

.pricing-card{
padding:24px;
}

.pricing-top{
gap:14px;
}

.pricing-icon{
width:60px;
height:60px;
font-size:22px;
}

.pricing-title{
font-size:22px;
}

.pricing-text{
font-size:15px;
}

.pricing-list li{
font-size:15px;
}

}

@media(max-width:480px){

#pricing-section{
padding:60px 18px;
}

.pricing-heading-white,
.pricing-heading-orange{
font-size:34px;
}

.pricing-label p{
font-size:13px;
}

.pricing-description{
font-size:15px;
}

.pricing-card{
padding:22px;
border-radius:26px;
}

.pricing-button{
height:50px;
font-size:14px;
}

.pricing-footer{
flex-direction:column;
gap:12px;
}

.pricing-footer-dot{
display:none;
}

}













































#cta-section{
padding:70px 7%;
background:#050505;
overflow:hidden;
position:relative;
}

.cta-container{
max-width:1280px;
margin:auto;
}

.cta-header{
max-width:760px;
margin:0 auto 45px;
text-align:center;
}

.cta-label{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
margin-bottom:16px;
}

.cta-label-line{
width:55px;
height:2px;
background:#E95F1E;
opacity:.7;
}

.cta-label-dot{
width:8px;
height:8px;
border-radius:50%;
background:#E95F1E;
box-shadow:0 0 15px rgba(233,95,30,.6);
}

.cta-label span{
font-size:14px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
}

.cta-heading{
display:flex;
flex-direction:column;
line-height:.92;
margin-bottom:18px;
}

.cta-heading-white{
font-family:"Baloo 2",sans-serif;
font-size:56px;
font-weight:700;
color:#fff;
}

.cta-heading-orange{
font-family:"Baloo 2",sans-serif;
font-size:56px;
font-weight:700;
color:#E95F1E;
}

.cta-description{
max-width:620px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#A6A6A6;
}

.cta-card{
position:relative;
max-width:1080px;
margin:auto;
padding:55px 55px 45px;
background:#0B0B0B;
border:1px solid rgba(233,95,30,.4);
border-radius:34px;
overflow:hidden;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.cta-card:hover{
transform:translateY(-6px);
border-color:#E95F1E;
box-shadow:0 0 35px rgba(233,95,30,.14);
}

.cta-card-glow{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:520px;
height:520px;
border-radius:50%;
background:radial-gradient(circle,rgba(233,95,30,.12),transparent 70%);
pointer-events:none;
}

.cta-quote-icon{
font-size:46px;
line-height:1;
font-family:"Baloo 2",sans-serif;
color:#E95F1E;
margin-bottom:12px;
}

.cta-quote{
max-width:760px;
margin:auto;
font-size:23px;
line-height:1.7;
font-style:italic;
font-family:"Cormorant Garamond",serif;
color:#fff;
}

.cta-divider{
display:flex;
justify-content:center;
align-items:center;
margin:30px 0;
}

.cta-divider::before,
.cta-divider::after{
content:"";
width:100px;
height:2px;
background:#E95F1E;
opacity:.45;
}

.cta-divider span{
width:10px;
height:10px;
margin:0 14px;
border-radius:50%;
background:#E95F1E;
box-shadow:0 0 14px rgba(233,95,30,.6);
}

.cta-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}


.cta-primary-btn,
.cta-secondary-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
min-width:220px;
height:52px;
padding:0 28px;
border-radius:50px;
text-decoration:none;
font-size:14px;
font-weight:700;
letter-spacing:1px;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.cta-primary-btn{
background:#E95F1E;
border:1px solid #E95F1E;
color:#fff;
box-shadow:0 10px 24px rgba(233,95,30,.18);
}

.cta-primary-btn:hover{
transform:translateY(-4px);
box-shadow:0 16px 30px rgba(233,95,30,.28);
}

.cta-primary-btn i,
.cta-secondary-btn i{
font-size:14px;
transition:.45s cubic-bezier(.22,1,.36,1);
}

.cta-primary-btn:hover i,
.cta-secondary-btn:hover i{
transform:translateX(5px);
}

.cta-secondary-btn{
background:transparent;
border:1px solid #E95F1E;
color:#fff;
}

.cta-secondary-btn:hover{
background:#E95F1E;
transform:translateY(-4px);
}

.cta-bottom{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
margin-top:35px;
flex-wrap:wrap;
}

.cta-item{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
color:#B8B8B8;
}

.cta-item i{
font-size:14px;
color:#E95F1E;
}

.cta-dot{
width:5px;
height:5px;
border-radius:50%;
background:#E95F1E;
opacity:.5;
}

@media(max-width:1200px){

.cta-heading-white,
.cta-heading-orange{
font-size:48px;
}

.cta-card{
padding:45px 40px 38px;
}

.cta-quote{
font-size:20px;
}

}

@media(max-width:768px){

#cta-section{
padding:60px 24px;
}

.cta-heading-white,
.cta-heading-orange{
font-size:38px;
}

.cta-description{
font-size:15px;
}

.cta-card{
padding:36px 24px 30px;
border-radius:26px;
}

.cta-quote{
font-size:18px;
line-height:1.7;
}

.cta-divider::before,
.cta-divider::after{
width:60px;
}

.cta-primary-btn,
.cta-secondary-btn{
width:100%;
max-width:280px;
height:50px;
}

}

@media(max-width:480px){

#cta-section{
padding:55px 18px;
}

.cta-heading-white,
.cta-heading-orange{
font-size:32px;
}

.cta-label span{
font-size:13px;
letter-spacing:2px;
}

.cta-label-line{
width:38px;
}

.cta-description{
font-size:14px;
}

.cta-quote{
font-size:16px;
}

.cta-bottom{
flex-direction:column;
gap:10px;
}

.cta-dot{
display:none;
}

}







































#footer-section{
padding:28px 7%;
background:#050505;
border-top:1px solid rgba(255,255,255,.04);
overflow:hidden;
}

.footer-container{
max-width:1280px;
margin:auto;
display:grid;
grid-template-columns:200px 1px 1fr 1px 170px;
align-items:center;
column-gap:40px;
}

.footer-logo{
display:flex;
align-items:center;
}

.footer-logo img{
width:170px;
height:auto;
display:block;
transition:.4s cubic-bezier(.22,1,.36,1);
}

.footer-logo:hover img{
transform:scale(1.03);
}

.footer-divider{
width:1px;
height:48px;
background:linear-gradient(to bottom,transparent,#E95F1E,transparent);
}

.footer-center{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}

.footer-copy{
font-size:12px;
font-weight:500;
letter-spacing:3px;
line-height:1.6;
text-transform:uppercase;
color:#ECECEC;
margin-bottom:8px;
}

.footer-policy{
font-size:11px;
font-weight:500;
letter-spacing:2px;
text-decoration:none;
color:#8A8A8A;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.footer-policy:hover{
color:#E95F1E;
}

.footer-social{
display:flex;
justify-content:flex-end;
align-items:center;
gap:18px;
}

.footer-social-link{
width:34px;
height:34px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:17px;
color:#F2F2F2;
transition:.4s cubic-bezier(.22,1,.36,1);
}

.footer-social-link:hover{
color:#E95F1E;
transform:translateY(-3px);
}

@media(max-width:1100px){

.footer-container{
grid-template-columns:1fr;
justify-items:center;
row-gap:22px;
text-align:center;
}

.footer-divider{
width:70px;
height:1px;
background:linear-gradient(to right,transparent,#E95F1E,transparent);
}

.footer-logo{
justify-content:center;
}

.footer-social{
justify-content:center;
}

}

@media(max-width:768px){

#footer-section{
padding:24px;
}

.footer-logo img{
width:150px;
}

.footer-copy{
font-size:11px;
letter-spacing:2px;
}

.footer-policy{
font-size:10px;
letter-spacing:2px;
}

.footer-social{
gap:16px;
}

.footer-social-link{
width:30px;
height:30px;
font-size:16px;
}

}

@media(max-width:480px){

#footer-section{
padding:22px 18px;
}

.footer-logo img{
width:135px;
}

.footer-copy{
font-size:10px;
letter-spacing:1.5px;
}

.footer-policy{
font-size:10px;
letter-spacing:1px;
}

.footer-social{
gap:14px;
}

.footer-social-link{
width:28px;
height:28px;
font-size:15px;
}
}

































/*==========================================
CONTACT PAGE
==========================================*/

#contact-page{
padding-top:170px;
padding-right:7%;
padding-bottom:90px;
padding-left:7%;
background:#050505;
position:relative;
overflow:hidden;
}

.contact-section{
width:100%;
position:relative;
z-index:2;
}

.contact-container{
max-width:1360px;
margin:auto;
display:grid;
grid-template-columns:430px 1fr;
gap:65px;
align-items:start;
}

.contact-left{
padding-top:25px;
}

.contact-label{
display:flex;
align-items:center;
gap:10px;
margin-bottom:20px;
}

.contact-label span{
font-size:20px;
font-family:"Baloo 2",sans-serif;
font-weight:700;
color:#E95F1E;
}

.contact-label p{
font-size:13px;
font-weight:700;
letter-spacing:3px;
color:#E95F1E;
text-transform:uppercase;
}

.contact-title{
display:flex;
flex-direction:column;
line-height:.9;
margin-bottom:18px;
}

.contact-title span{
font-family:"Baloo 2",sans-serif;
font-size:56px;
font-weight:700;
color:#fff;
}

.contact-orange{
color:#E95F1E;
}

.contact-line{
width:72px;
height:3px;
background:#E95F1E;
border-radius:20px;
margin-bottom:24px;
}

.contact-text{
font-size:15px;
line-height:1.9;
color:#A5A5A5;
margin-bottom:36px;
max-width:420px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:30px;
}

.contact-box{
display:flex;
align-items:center;
gap:16px;
padding:15px 0;
border-bottom:1px solid #1B1B1B;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-box:hover{
padding-left:8px;
}

.contact-icon{
width:48px;
height:48px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#0E0E0E;
border:1px solid #232323;
color:#E95F1E;
font-size:18px;
flex-shrink:0;
}

.contact-box h5{
font-size:12px;
font-weight:600;
color:#777;
margin-bottom:5px;
letter-spacing:1px;
text-transform:uppercase;
}

.contact-box p,
.contact-box a{
font-size:17px;
font-weight:500;
color:#fff;
text-decoration:none;
}

.contact-social{
display:flex;
gap:14px;
margin-top:28px;
}

.contact-social a{
width:46px;
height:46px;
border-radius:50%;
border:1px solid #2A2A2A;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#fff;
font-size:17px;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-social a:hover{
background:#E95F1E;
border-color:#E95F1E;
transform:translateY(-4px);
}

.contact-right{
background:#0A0A0A;
border:1px solid #202020;
border-radius:30px;
padding:34px;
position:relative;
overflow:hidden;
}

.contact-right::before{
content:"";
position:absolute;
top:-120px;
right:-120px;
width:260px;
height:260px;
background:radial-gradient(circle,rgba(233,95,30,.12),transparent 70%);
pointer-events:none;
}

.contact-form{
position:relative;
z-index:2;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.contact-full{
grid-column:1/-1;
}

.contact-field{
display:flex;
flex-direction:column;
}

.contact-field label{
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#E95F1E;
margin-bottom:9px;
}
.contact-field input,
.contact-field textarea{
width:100%;
height:52px;
padding:0 18px;
background:#111111;
border:1px solid #262626;
border-radius:14px;
font-family:"Lato",sans-serif;
font-size:14px;
font-weight:400;
color:#FFFFFF;
outline:none;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-field textarea{
height:130px;
padding:16px 18px;
resize:none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
color:#707070;
}

.contact-field input:focus,
.contact-field textarea:focus{
border-color:#E95F1E;
box-shadow:0 0 0 3px rgba(233,95,30,.12);
}

.contact-phone{
display:flex;
align-items:center;
height:52px;
background:#111111;
border:1px solid #262626;
border-radius:14px;
overflow:hidden;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-phone:focus-within{
border-color:#E95F1E;
box-shadow:0 0 0 3px rgba(233,95,30,.12);
}

.contact-code{
display:flex;
align-items:center;
justify-content:center;
padding:0 16px;
height:52px;
font-size:14px;
color:#FFFFFF;
border-right:1px solid #262626;
white-space:nowrap;
}

.contact-phone input{
border:none;
background:transparent;
height:100%;
box-shadow:none;
}

.contact-phone input:focus{
box-shadow:none;
}

.contact-field select{
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
width:100%;
height:52px;
padding:0 50px 0 18px;
background:#111111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23E95F1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 12 14 18 8'/%3E%3C/svg%3E") no-repeat right 18px center;
border:1px solid #262626;
border-radius:14px;
font-family:"Lato",sans-serif;
font-size:14px;
color:#FFFFFF;
outline:none;
transition:.35s cubic-bezier(.22,1,.36,1);
cursor:pointer;
}

.contact-field select:focus{
border-color:#E95F1E;
box-shadow:0 0 0 3px rgba(233,95,30,.12);
}

.contact-submit{
width:100%;
height:54px;
margin-top:8px;
border:none;
border-radius:14px;
background:linear-gradient(90deg,#E95F1E,#FF7117);
font-family:"Baloo 2",sans-serif;
font-size:13px;
font-weight:700;
letter-spacing:2px;
color:#FFFFFF;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
cursor:pointer;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-submit:hover{
transform:translateY(-3px);
box-shadow:0 18px 35px rgba(233,95,30,.22);
}

.contact-submit i{
font-size:15px;
transition:.35s cubic-bezier(.22,1,.36,1);
}

.contact-submit:hover i{
transform:translateX(5px);
}

.contact-note{
margin-top:14px;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
font-size:12px;
color:#888888;
}

.contact-note i{
color:#E95F1E;
}

@media(max-width:1100px){

.contact-container{
grid-template-columns:1fr;
gap:55px;
}

.contact-left{
padding-top:0;
}

}

@media(max-width:768px){

#contact-page{
padding:80px 24px 70px;
}

.contact-title span{
font-size:42px;
}

.contact-right{
padding:24px;
}

.contact-grid{
grid-template-columns:1fr;
}

.contact-full{
grid-column:auto;
}

}

@media(max-width:480px){

#contact-page{
padding:70px 18px 60px;
}

.contact-title span{
font-size:34px;
}

.contact-right{
padding:18px;
border-radius:22px;
}

.contact-box p,
.contact-box a{
font-size:15px;
}

.contact-social{
justify-content:center;
}

.contact-submit{
height:50px;
font-size:12px;
letter-spacing:1.5px;
}

.contact-field input,
.contact-field select,
.contact-phone{
height:50px;
}

.contact-code{
height:50px;
padding:0 14px;
}

.contact-field textarea{
height:115px;
}

}
.contact-left,
.contact-right,
.contact-box{
will-change:transform,opacity;
}