/* 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;
}


:root {
    --background: #090b0e;
    --background-light: #0d1014;

    --text: #e5e5e5;
    --muted: #a9a9ad;

    --orange: #f76b1c;

    --border: rgba(255, 255, 255, 0.12);
}
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;
    }

}








































/*==========================================
  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:90px 0;
    background:#050505;
    overflow:hidden;
    position:relative;
}

.proof-header{
    margin-bottom:70px;
}

.proof-label{
    display:inline-block;
    font:700 13px "Lato",sans-serif;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#ff6b00;
    margin-bottom:18px;
}

.proof-title{
    display:flex;
    flex-direction:column;
    line-height:.9;
}

.proof-title-top{
    font:900 72px "Baloo 2",sans-serif;
    text-transform:uppercase;
    color:#d8d8d8;
    margin:0;
    letter-spacing:-1px;
}

.proof-title-bottom{
    margin-top:-8px;
    font:italic 500 68px "Cormorant Garamond",serif;
    color:#ff6b00;
}

.proof-timeline{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
    padding-top:45px;
}

.proof-line{
    position:absolute;
    top:28px;
    left:28px;
    right:28px;
    height:1px;
    background:#1f1f1f;
}

.proof-step{
    position:relative;
}

.proof-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1.5px solid #ff6b00;
    background:#050505;
    margin-bottom:42px;
    transition:.35s;
}

.proof-step-2 .proof-icon{
    background:#ff6b00;
}

.proof-icon i{
    font-size:20px;
    color:#ff6b00;
}

.proof-step-2 .proof-icon i{
    color:#050505;
}

.proof-number{
    display:none;
}

.proof-heading{
    font:900 34px/1.15 "Baloo 2",sans-serif;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:20px;
    max-width:260px;
}

.proof-description{
    font:400 16px/1.9 "Lato",sans-serif;
    color:#a8a8a8;
    max-width:340px;
    margin-bottom:30px;
}

.proof-list{
    list-style:none;
    margin:0;
    padding-left:18px;
    border-left:2px solid #ff6b00;
}

.proof-list li{
    font:700 14px "Lato",sans-serif;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#ff6b00;
    margin-bottom:12px;
    padding:0;
}

.proof-list li:last-child{
    margin-bottom:0;
}

.proof-list li::before{
    display:none;
}

.proof-step:hover .proof-icon{
    box-shadow:0 0 20px rgba(255,107,0,.25);
    transform:translateY(-4px);
}

.proof-step:hover .proof-description{
    color:#d0d0d0;
}

.proof-step:hover .proof-heading{
    color:#fff;
}


/* =========================
   ICON HOVER EFFECT
========================= */

/* Default */
.proof-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    border:2px solid #ff6b00;
    border-radius:50%;
    transition:all .35s ease;
    box-shadow:none;
}

.proof-icon i{
    color:#ff6b00;
    font-size:20px;
    transition:all .35s ease;
}

/* Remove permanent orange */
.proof-step-2 .proof-icon{
    background:transparent;
}

.proof-step-2 .proof-icon i{
    color:#ff6b00;
}

/* Hover */
.proof-step:hover .proof-icon{
    background:#ff6b00;
    border-color:#ff6b00;
    box-shadow:0 0 18px rgba(255,107,0,.45);
    transform:translateY(-4px);
}

.proof-step:hover .proof-icon i{
    color:#050505;
}






















/*==============================
  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);
}



















/*==========================================
SERVICES SECTION
==========================================*/

#services-section{
    padding:110px 7%;
    background:#050505;
    overflow:hidden;
    position:relative;
}

.services-container{
    max-width:1450px;
    margin:auto;
}

/*==========================================
HEADER
==========================================*/

.services-header{
    max-width:720px;
    margin-bottom:70px;
}

.services-label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.services-label span{
    color:#FF6B00;
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.services-label p{
    color:#FF6B00;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    font-family:"Lato",sans-serif;
}

.services-heading{
    display:flex;
    flex-direction:column;
    line-height:.9;
    margin-bottom:24px;
}

.services-heading-white{
    font-family:"Baloo 2",sans-serif;
    font-size:76px;
    font-weight:800;
    color:#F5F5F5;
    text-transform:uppercase;
}

.services-heading-orange{
    font-family:"Baloo 2",sans-serif;
    font-size:76px;
    font-weight:800;
    color:#FF6B00;
    text-transform:uppercase;
}

.services-description{
    max-width:540px;
    color:#9D9D9D;
    font-size:17px;
    line-height:1.9;
    font-family:"Lato",sans-serif;
}

/*==========================================
GRID
==========================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/*==========================================
CARD
==========================================*/

.services-card{

    position:relative;

    height:350px;

    background:#090909;

    border:1px solid #1A1A1A;

    overflow:hidden;

    cursor:pointer;

    padding:35px;

    transition:.45s ease;

}

.services-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(circle at center,
    rgba(255,107,0,.10),
    transparent 70%);

    opacity:0;

    transition:.45s;

}

/* Remove Unwanted */

.services-icon-circle,
.services-button,
.services-text,
.services-line,
.services-pattern,
.services-glow,
.services-cursor-glow,
.services-left-line{

    display:none;

}

.services-top{

    margin-bottom:35px;

}

.services-number{

    color:#FF6B00;

    font-size:18px;

    font-weight:700;

    letter-spacing:4px;

    font-family:"Cormorant Garamond",serif;

}

.services-content{

    position:relative;

    height:calc(100% - 35px);

}

.services-title{

    font-family:"Baloo 2",sans-serif;

    font-size:34px;

    line-height:1.15;

    color:#fff;

    text-transform:uppercase;

    transition:.4s;

}

.services-title span{

    display:block;

}
/*==========================================
PART 2
CARD CONTENT + HIDDEN LIST
==========================================*/

/* Content */

.services-content{
    position:relative;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* Number */

.services-top{
    transition:.35s ease;
}

.services-number{
    transition:.35s ease;
}

/* Title */

.services-title{
    transition:.35s ease;
}

.services-title span{
    display:block;
}

/* Hide These Completely */

.services-icon-circle,
.services-text,
.services-button,
.services-line,
.services-pattern,
.services-glow,
.services-cursor-glow,
.services-left-line{
    display:none;
}

/*==========================================
SERVICE LIST
==========================================*/

.services-list{

    position:absolute;

    top:50%;

    left:0;

    width:100%;

    transform:translateY(-40%);

    list-style:none;

    padding:0;

    margin:0;

    opacity:0;

    visibility:hidden;

    transition:.4s ease;

}

.services-list li{

    position:relative;

    padding-left:22px;

    margin:18px 0;

    color:#FF6B00;

    font-size:16px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    font-family:"Lato",sans-serif;

}

.services-list li::before{

    content:"•";

    position:absolute;

    left:0;

    top:0;

    color:#FF6B00;

    font-size:20px;

}

/* Prevent Extra Space */

.services-list li:last-child{
    margin-bottom:0;
}
/*==========================================
PART 3 - HOVER
==========================================*/

/* Card Hover */

.services-card:hover{
    border-color:#FF6B00;
    background:#111111;
    box-shadow:0 18px 40px rgba(255,107,0,.12);
}

.services-card:hover::before{
    opacity:1;
}

/* Hide Number */

.services-card:hover .services-top{
    opacity:0;
    visibility:hidden;
    transform:translateY(-15px);
}

/* Hide Title */

.services-card:hover .services-title{
    opacity:0;
    visibility:hidden;
    transform:translateY(-15px);
}

/* Show List */

.services-card:hover .services-list{

    opacity:1;

    visibility:visible;

    transform:translateY(-50%);

}

/* Smooth Animation */

.services-top,
.services-title,
.services-list{

    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;

}



































#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;
    object-position:center top; /* Head upar rahega */
    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;
}















#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;
}














































#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;
}









































































/*==========================================
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;
}

#add1{
    font-size: 16px;
}

.certificate-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.certificate-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.certificate-viewer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(76vw, 930px);
    max-width: 930px;
    height: auto;
    padding: 28px 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.certificate-modal.active .certificate-viewer {
    opacity: 1;
}

.certificate-image {
    display: block;
    width: min(76vw, 930px);
    max-width: 930px;
    height: auto;
    max-height: 84vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    background: white;
}

.certificate-close {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(20, 20, 20, 0.65);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.certificate-close:hover {
    transform: scale(1.04);
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}




footer {
    width: 100%;

    max-width: 1680px;

    margin: 0 auto;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 106, 24, 0.025),
            transparent 28%
        ),
        #0b0d10;

    border-top: 2px solid rgba(247, 107, 28, 0.65);
}


/* ============================= */
/* TOP SECTION */
/* ============================= */

.footer_top {
    padding: 46px 80px 55px;

    display: grid;

    grid-template-columns:
        1.05fr
        1fr
        1fr
        1.1fr;

    gap: 65px;

    border-bottom: 1px solid var(--border);
}


/* ============================= */
/* LOGO */
/* ============================= */

.footer_logo {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}


.logo_mark {
    color: var(--orange);

    font-size: 36px;

    font-weight: 700;

    font-style: italic;

    line-height: 1;
}


.logo_text {
    font-size: 20px;

    letter-spacing: 0.5px;

    color: #e8e8e8;
}


/* ============================= */
/* DESCRIPTION */
/* ============================= */

.footer_description {
    color: #b7b7bb;

    font-size: 15px;

    line-height: 1.75;

    max-width: 300px;
}


.footer_line {
    height: 1px;

    width: 100%;

    background: var(--border);

    margin: 18px 0 22px;
}


/* ============================= */
/* CONTACT */
/* ============================= */

.contact_info {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.contact_item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.contact_icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border: 1px solid rgba(247, 107, 28, 0.7);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);
}


.contact_icon svg {
    width: 17px;
    height: 17px;

    stroke-width: 2;
}


.contact_content h4 {
    color: #d7d7d7;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.contact_content p,
.contact_content a {
    color: #b5b5b9;

    font-size: 14px;

    line-height: 1.55;

    text-decoration: none;
}


.contact_content a:hover {
    color: var(--orange);
}


/* ============================= */
/* AUDIT BUTTON */
/* ============================= */

.audit_button {
    width: 100%;

    height: 48px;

    margin-top: 22px;

    border: 1px solid var(--orange);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: var(--orange);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: 0.3s ease;
}


.audit_button svg {
    width: 18px;
}


.audit_button:hover {
    background: var(--orange);

    color: white;

    transform: translateY(-2px);
}


/* ============================= */
/* FOOTER HEADINGS */
/* ============================= */

.footer_heading {
    margin-bottom: 34px;
}


.footer_heading h3 {
    color: #e3e3e3;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;
}


.footer_heading span {
    display: block;

    width: 40px;
    height: 2px;

    background: var(--orange);

    margin-top: 13px;
}


/* ============================= */
/* SERVICES */
/* ============================= */

.service_list {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.service_list a {
    color: #b8b8bc;

    font-size: 14px;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 15px;

    transition: 0.25s ease;
}


.service_list a span {
    color: var(--orange);

    font-size: 23px;

    line-height: 10px;
}


.service_list a:hover {
    color: white;

    transform: translateX(5px);
}


/* ============================= */
/* DOT PATTERN */
/* ============================= */

.dot_pattern {
    width: 300px;

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(8, 1fr);

    gap: 14px;
}


.dot_pattern span {
    width: 2px;
    height: 2px;

    background: var(--orange);

    border-radius: 50%;

    opacity: 0.55;
}


/* ============================= */
/* OPERATING HOURS */
/* ============================= */

.operating_hours {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


.day_time {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #b9b9bd;

    font-size: 14px;
}


.day_time span:last-child {
    color: #c7c7ca;
}


.day_time.sunday span:last-child {
    color: var(--orange);
}


/* ============================= */
/* HELP BOX */
/* ============================= */

.help_box {
    margin-top: 36px;

    border: 1px solid rgba(247, 107, 28, 0.28);

    border-radius: 12px;

    padding: 18px;

    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.help_icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border: 1px solid rgba(247, 107, 28, 0.55);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);
}


.help_icon svg {
    width: 18px;
}


.help_box p {
    color: #b7b7ba;

    font-size: 13px;

    line-height: 1.65;
}


/* ============================= */
/* MAP */
/* ============================= */

.map_container {
    width: 100%;

    height: 390px;

    border-radius: 8px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: #161616;
}


.map_container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: none;
}


/* ============================= */
/* NEWSLETTER */
/* ============================= */

.footer_newsletter {
    padding: 38px 80px;

    border-bottom: 1px solid var(--border);

    display: grid;

    grid-template-columns:
        1.1fr
        1.35fr
        auto;

    align-items: center;

    gap: 70px;
}


.newsletter_info {
    display: flex;

    align-items: center;

    gap: 20px;
}


.newsletter_icon {
    width: 54px;
    height: 54px;

    border: 1px solid rgba(247, 107, 28, 0.7);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);
}


.newsletter_icon svg {
    width: 24px;
}


.newsletter_info h3 {
    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


.newsletter_info p {
    color: #a9a9ae;

    font-size: 13px;

    line-height: 1.6;
}


/* ============================= */
/* NEWSLETTER FORM */
/* ============================= */

.newsletter_form {
    height: 44px;

    display: flex;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 8px;

    overflow: hidden;
}


.newsletter_form input {
    flex: 1;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    padding: 0 18px;

    font-family: inherit;

    font-size: 13px;
}


.newsletter_form input::placeholder {
    color: #8e8e94;
}


.newsletter_form button {
    width: 150px;

    border: none;

    background: var(--orange);

    color: white;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    cursor: pointer;

    transition: 0.3s;
}


.newsletter_form button:hover {
    background: #e85d0d;
}


.newsletter_form button svg {
    width: 18px;
}


/* ============================= */
/* SOCIAL */
/* ============================= */

.social_section {
    display: flex;

    align-items: center;

    gap: 22px;
}


.social_section > span {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}


.social_icons {
    display: flex;

    gap: 12px;
}


.social_icons a {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(247, 107, 28, 0.65);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    text-decoration: none;

    transition: 0.3s;
}


.social_icons a:hover {
    background: var(--orange);

    color: white;

    transform: translateY(-3px);
}


.social_icons svg {
    width: 17px;
}


/* ============================= */
/* BOTTOM */
/* ============================= */

.footer_bottom {
    min-height: 82px;

    padding: 20px 80px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;
}


.bottom_logo {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #dddddf;

    font-size: 18px;

    letter-spacing: 0.4px;
}


.bottom_logo_mark {
    color: var(--orange);

    font-size: 28px;

    font-style: italic;

    font-weight: 700;
}


.copyright_section {
    text-align: center;
}


.copyright_section p {
    color: #b2b2b7;

    font-size: 12px;

    letter-spacing: 1.3px;

    margin-bottom: 12px;
}


.legal_links {
    display: flex;

    justify-content: center;

    gap: 12px;

    color: #77777c;

    font-size: 12px;
}


.legal_links a {
    color: #b2b2b7;

    text-decoration: none;
}


.legal_links a:hover {
    color: var(--orange);
}


.made_in {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    color: #b4b4b8;

    font-size: 12px;
}


.made_in svg {
    width: 16px;

    color: var(--orange);

    fill: var(--orange);

    stroke: var(--orange);
}

.bottom_logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom_logo_icon {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.bottom_logo span {
    font-size: 18px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

















