/*==============================
GOOGLE FONT
==============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0d;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/*==============================
NAVBAR
==============================*/

.custom-navbar{
    background:#111214;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:18px 0;
}

.logo{
    width:60px;
}

.navbar-brand h4{
    font-family:'Cormorant Garamond',serif;
    font-size:36px;
    color:#fff;
    margin-bottom:0;
}

.navbar-brand span{
    color:#d8b25b;
    font-size:14px;
    letter-spacing:4px;
}

.navbar-nav .nav-link{
    color:#fff;
    margin:0 18px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#d8b25b;
}

.navbar-nav .nav-link.active::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    width:45px;
    height:3px;
    background:#d8b25b;
    border-radius:10px;
}

.call-btn{
    border:2px solid #d8b25b;
    color:#fff;
    padding:14px 30px;
    border-radius:60px;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.call-btn i{
    margin-right:12px;
}

.call-btn:hover{
    background:#d8b25b;
    color:#111;
}

.logo-img{
        font-size: 60px;
    color: #d8b25b;

}
.footer-logo i{
     font-size: 60px;
    color: #d8b25b;
}

/*==============================
HERO
==============================*/

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background-color: #0f1013;
    background-image: url("images/hero-img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:

    background-size:cover;
    background-position:right center;
    opacity:.18;
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.small-title{
    display:flex;
    align-items:center;
    color:#d8b25b;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:30px;
}

.small-title span{
    width:70px;
    height:2px;
    background:#d8b25b;
    margin:0 15px;
}

.hero-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    line-height:1.1;
    margin-bottom:8px;
    color:#fff;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:86px;
    line-height:1;
    color:#d8b25b;
    margin-bottom:20px;
}

.hero-content h1 span{
    display:block;
    color:#fff;
}

.hero-content p{
    font-size:17px;
    line-height:1.8;
    color:#d4d4d4;
    max-width:650px;
}

/*==============================
BUTTONS
==============================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin:45px 0;
}

.btn-call{
    background:#d8b25b;
    color:#111;
    padding:18px 40px;
    border-radius:60px;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.btn-call:hover{
    background:#fff;
    color:#111;
}

.btn-call i{
    margin-right:12px;
}

.btn-whatsapp{
    border:2px solid #d8b25b;
    color:#fff;
    padding:18px 40px;
    border-radius:60px;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp i{
    color:#25D366;
    margin-right:12px;
    font-size:28px;
}

.btn-whatsapp:hover{
    background:#d8b25b;
    color:#111;
}

/*==============================
PHONE BOX
==============================*/

.phone-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:60px;
}

.phone-icon{
    width:70px;
    height:70px;
    border:2px solid #d8b25b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d8b25b;
    font-size:28px;
}

.phone-box small{
    color:#d8b25b;
    letter-spacing:2px;
}

.phone-box h3{
    font-size:58px;
    font-weight:700;
}

/*==============================
FEATURES
==============================*/

.features{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.feature{
    flex:1;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.15);
    padding:0 10px;
}

.feature:last-child{
    border:none;
}

.feature i{
    font-size:42px;
    color:#d8b25b;
    margin-bottom:18px;
}

.feature p{
    font-size:20px;
    line-height:1.5;
    color:#fff;
}

/*==============================
IMAGE
==============================*/

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:18px;
}

.quote{
    position:absolute;
    right:30px;
    bottom:40px;
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#d8b25b;
    text-align:right;
    font-style:italic;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1200px){

.hero-content h2{
    font-size:58px;
}

.hero-content h1{
    font-size:70px;
}

.phone-box h3{
    font-size:42px;
}

}

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:70px 0;
}

.small-title{
    justify-content:center;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.phone-box{
    justify-content:center;
}

.features{
    flex-wrap:wrap;
}

.feature{
    width:50%;
    border:none;
    margin-bottom:35px;
}

.hero-image{
    margin-top:60px;
}

.quote{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:25px;
    text-align:center;
}

}

@media(max-width:768px){

.navbar-brand h4{
    font-size:28px;
}

.hero-content h2{
    font-size:40px;
}

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:18px;
}

.btn-call,
.btn-whatsapp{
    width:100%;
    font-size:18px;
    text-align:center;
}

.phone-box h3{
    font-size:34px;
}

.feature{
    width:100%;
}

.feature p{
    font-size:18px;
}

.quote{
    font-size:34px;
}

.call-btn{
    margin-top:20px;
    display:inline-block;
    font-size:18px;
}

}

/*==========================
ABOUT SECTION
==========================*/

.about-section{
    background:#111214;
    padding:100px 0;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.about-image img{
    width:100%;
    border-radius:25px;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.experience-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#d8b25b;
    color:#111;
    padding:20px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.experience-card h3{
    font-size:40px;
    margin-bottom:5px;
    font-weight:700;
}

.experience-card span{
    font-size:15px;
    font-weight:600;
}

.section-badge{
    display:inline-block;
    background:rgba(216,178,91,.12);
    border:1px solid rgba(216,178,91,.35);
    color:#d8b25b;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:25px;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#d8b25b;
}

.about-content p{
    color:#d5d5d5;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    margin-top:40px;
    margin-bottom:40px;
}

.about-feature{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:25px;
}

.about-feature i{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#1b1c1f;
    color:#d8b25b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
    border:1px solid rgba(216,178,91,.25);
}

.about-feature h5{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.about-feature p{
    margin:0;
    font-size:15px;
    color:#bfbfbf;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    background:#d8b25b;
    color:#111;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

@media(max-width:991px){

.about-section{
    text-align:center;
}

.about-feature{
    text-align:left;
}

.about-content h2{
    font-size:44px;
}

.experience-card{
    left:50%;
    transform:translateX(-50%);
}

}

@media(max-width:768px){

.about-content h2{
    font-size:36px;
}

.about-feature{
    flex-direction:column;
    text-align:center;
}

.about-feature i{
    margin:auto;
}

.experience-card{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    margin-top:20px;
}

}

/*==========================
SERVICES SECTION
==========================*/

.services-section{
    background:#0b0c0f;
    padding:100px 0;
}

.section-title{
    max-width:750px;
    margin:auto;
}

.section-title .section-badge{
    display:inline-block;
    padding:10px 25px;
    background:rgba(216,178,91,.12);
    color:#d8b25b;
    border:1px solid rgba(216,178,91,.25);
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#fff;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#d8b25b;
}

.section-title p{
    color:#bfbfbf;
    font-size:18px;
    line-height:1.8;
}

/*==========================
SERVICE CARD
==========================*/

.service-card{
    background:#141518;
    border:1px solid rgba(216,178,91,.12);
    border-radius:20px;
    padding:40px 30px;
    height:100%;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d8b25b;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#d8b25b;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(216,178,91,.08);
    border:1px solid rgba(216,178,91,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:34px;
    color:#d8b25b;
}

.service-card h4{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.service-card p{
    color:#bfbfbf;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    color:#d8b25b;
    font-weight:600;
    transition:.3s;
}

.service-btn i{
    margin-left:8px;
    transition:.3s;
}

.service-btn:hover{
    color:#fff;
}

.service-btn:hover i{
    transform:translateX(6px);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.section-title h2{
    font-size:44px;
}

.service-card{
    padding:35px 25px;
}

}

@media(max-width:768px){

.services-section{
    padding:70px 0;
}

.section-title h2{
    font-size:36px;
}

.section-title p{
    font-size:16px;
}

.service-card{
    text-align:center;
}

.service-icon{
    margin:0 auto 25px;
}

.service-card h4{
    font-size:24px;
}

}

/*==========================
CTA SECTION
==========================*/

.cta-section{
    background:#0b0c0f;
    padding:100px 0;
}

.cta-wrapper{
    background:linear-gradient(135deg,#1b1c1f,#111214);
    border:1px solid rgba(216,178,91,.2);
    border-radius:30px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(216,178,91,.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.cta-wrapper::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(216,178,91,.05);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

.cta-wrapper>*{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(216,178,91,.12);
    color:#d8b25b;
    border:1px solid rgba(216,178,91,.25);
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.cta-wrapper h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#fff;
    margin-bottom:20px;
}

.cta-wrapper h2 span{
    color:#d8b25b;
}

.cta-wrapper p{
    color:#c8c8c8;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

.cta-btn,
.cta-btn-outline{
    display:block;
    width:260px;
    text-align:center;
    padding:18px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    margin-left:auto;
    transition:.3s;
}

.cta-btn{
    background:#d8b25b;
    color:#111;
    margin-bottom:20px;
}

.cta-btn:hover{
    background:#fff;
    color:#111;
}

.cta-btn-outline{
    border:2px solid #d8b25b;
    color:#fff;
}

.cta-btn-outline:hover{
    background:#d8b25b;
    color:#111;
}

.cta-btn i,
.cta-btn-outline i{
    margin-right:10px;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.cta-wrapper{
    padding:50px 35px;
    text-align:center;
}

.cta-wrapper h2{
    font-size:42px;
}

.cta-btn,
.cta-btn-outline{
    margin:15px auto 0;
}

}

@media(max-width:768px){

.cta-section{
    padding:70px 0;
}

.cta-wrapper{
    padding:40px 25px;
}

.cta-wrapper h2{
    font-size:34px;
}

.cta-wrapper p{
    font-size:16px;
}

.cta-btn,
.cta-btn-outline{
    width:100%;
}

}

/*==========================
FOOTER
==========================*/

.footer{
    background:#0b0c0f;
    padding:80px 0 25px;
    border-top:1px solid rgba(216,178,91,.15);
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:65px;
}

.footer-logo h3{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:34px;
    margin-bottom:2px;
}

.footer-logo span{
    color:#d8b25b;
    letter-spacing:3px;
    font-size:12px;
}

.footer-about{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:30px;
}

.footer h4{
    color:#fff;
    font-size:24px;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
    position:relative;
}

.footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#d8b25b;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#bdbdbd;
    transition:.3s;
}

.footer ul li a:hover{
    color:#d8b25b;
    padding-left:6px;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    color:#bdbdbd;
}

.footer-contact i{
    color:#d8b25b;
    width:20px;
    margin-top:4px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(216,178,91,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d8b25b;
    transition:.3s;
}

.social-links a:hover{
    background:#d8b25b;
    color:#111;
    transform:translateY(-5px);
}

.footer hr{
    margin:60px 0 25px;
    border-color:rgba(255,255,255,.08);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#999;
    margin:0;
}

.footer-policy{
    display:flex;
    gap:30px;
}

.footer-policy a{
    color:#999;
    transition:.3s;
}

.footer-policy a:hover{
    color:#d8b25b;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.footer{
    text-align:center;
}

.footer-logo{
    justify-content:center;
}

.footer h4::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-contact li{
    justify-content:center;
}

.social-links{
    justify-content:center;
}

.footer-bottom{
    flex-direction:column;
}

.footer-policy{
    justify-content:center;
}

}

@media(max-width:768px){

.footer{
    padding:60px 0 20px;
}

.footer-logo h3{
    font-size:28px;
}

.footer h4{
    margin-top:15px;
}

.footer-policy{
    flex-direction:column;
    gap:10px;
}

}