/*==========================================
        PREMIUM GLOBAL STYLE
==========================================*/

:root{

    --primary:#1E3A5F;
    --primary-dark:#162D49;
    --accent:#C8A96A;

    --dark:#101828;
    --heading:#0F172A;

    --text:#667085;

    --white:#ffffff;

    --bg:#FCFBF8;
    --bg-light:#F8F6F1;

    --border:#ECE7DE;

    --radius:22px;

    --shadow-sm:0 10px 30px rgba(15,23,42,.05);
    --shadow:0 20px 60px rgba(15,23,42,.08);
    --shadow-lg:0 30px 90px rgba(15,23,42,.12);

}

/* Reset */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:var(--bg);

    line-height:1.8;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

section{
    position:relative;
    padding:110px 0;
}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.35s ease;

}

.container{

    max-width:1240px;

}
@media(max-width:768px){

section{
    padding:80px 0;
}

}
/*=============================
      SECTION TITLE
==============================*/

.section-title{

    margin-bottom:65px;

}

.section-title span{

    display:inline-block;

    color:var(--accent);

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

    display:inline-block;

}

.section-title h2{

    color:var(--heading);

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    letter-spacing:-1px;

    margin-bottom:22px;

}

.section-title p{

    max-width:720px;

    margin:auto;
	margin-top:20px;
    font-size:17px;

    color:var(--text);

}

/*=============================
        BUTTONS
==============================*/

.btn{

    border-radius:50px;

    padding:16px 38px;

    font-weight:600;

    transition:all .35s ease;

}

.btn-primary{

    background:linear-gradient(135deg,#1E3A5F,#294E78);

    border:none;

    color:#fff;

    box-shadow:0 15px 35px rgba(30,58,95,.20);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow: 0 20px 35px rgba(30,58,95,.22);

}

.btn-outline-dark{

    border:2px solid var(--heading);

    color:var(--heading);

    background:#fff;

}

.btn-outline-dark:hover{

    background:var(--heading);

    color:#fff;

}

/*=============================
        CARDS
==============================*/

.service-card,
.process-card,
.work-card,
.testimonial-card,
.trust-box,
.why-card{

    transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    border-color .35s ease;

}

.service-card:hover,
.process-card:hover,
.work-card:hover,
.testimonial-card:hover,
.trust-box:hover,
.why-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(30,58,95,.10);

}
/*=============================
        TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5{

    color:var(--heading);

    font-weight:700;

}

p{

    color:var(--text);

}

/*=============================
      SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}
/*====================================================
                PREMIUM NAVBAR
====================================================*/

.navbar{
    padding:18px 0;
    transition:all .35s ease;
}

.navbar.scrolled{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 35px rgba(15,23,42,.08);
}

.navbar-nav .nav-link{
    position:relative;
    font-weight:600;
    padding:10px 16px !important;
    transition:.3s;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:16px;
    bottom:4px;
    width:0;
    height:2px;
    background:#C8A96A;
    transition:.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:calc(100% - 32px);
}

.navbar-nav .nav-link:hover{
    color:#1E3A5F;
}

/*==============================
        LOGO
==============================*/

/* Premium Logo Container */

.navbar-brand{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1E3A5F;
    padding:6px 10px;
    border-radius:10px;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(30,58,95,.12);
}

.navbar-brand:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(30,58,95,.18);
}

/* Logo */

.logo-img{
    width:95px;
    height:auto;
    display:block;
}

@media(max-width:991px){
.logo-img{
    width:88px;
}
}

@media(max-width:576px){
.logo-img{
    width:80px;
}
}
/*==============================
        MENU
==============================*/

.navbar-nav{

    gap:10px;

}

.navbar-nav .nav-link{

    position:relative;

    color:#334155;

    font-size:15px;

    font-weight:600;

    padding:12px 18px !important;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#1E3A5F;

}

/* Premium underline */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:8px;

    width:0;

    height:2px;

    background:#C8A96A;

    transition:.35s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:calc(100% - 36px);

}

/* Active */

.navbar-nav .nav-link.active{

    color:#1E3A5F;

}

/*==============================
      CTA BUTTON
==============================*/

.navbar .btn{

    padding:13px 28px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    background:linear-gradient(135deg,#1E3A5F,#162D49);

    color:#fff;

    box-shadow:0 15px 35px rgba(30,58,95,.18);

}

.navbar .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 22px 40px rgba(30,58,95,.25);

}

/*==============================
      MOBILE MENU
==============================*/

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}

.navbar-collapse{

    border-radius:18px;

}

@media(max-width:991px){

.navbar{

    background:#ffffff;

    backdrop-filter:none;

}

.navbar-collapse{

    margin-top:18px;

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.navbar-nav{

    gap:4px;

}

.navbar-nav .nav-link{

    padding:14px 0 !important;

}

.navbar-nav .nav-link::after{

    display:none;

}

.navbar .btn{

    width:100%;

    margin-top:15px;

}

}
/*====================================================
                PREMIUM HERO SECTION
====================================================*/

.hero-section{

    position:relative;
    overflow:hidden;

    padding:180px 0 120px;

    background:
    radial-gradient(circle at top right,rgba(200,169,106,.18) 0%,transparent 30%),
    radial-gradient(circle at bottom left,rgba(30,58,95,.10) 0%,transparent 35%),
    linear-gradient(135deg,#FCFBF8 0%,#F7F4EE 45%,#FFFFFF 100%);

}

/* Decorative Background */

.hero-section::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-300px;
    right:-220px;

    border-radius:50%;

    background:rgba(200,169,106,.18);

    filter:blur(120px);

}

.hero-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:-220px;
    bottom:-220px;

    border-radius:50%;

    background:rgba(30,58,95,.10);

    filter:blur(120px);

}

/* Hero Content */

.hero-section .container{

    position:relative;
    z-index:2;

}

/* Hero Tag */

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.85);

    border:1px solid rgba(200,169,106,.35);

    color:#B88A3B;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    backdrop-filter:blur(12px);

    margin-bottom:30px;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.hero-tag::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#C8A96A;

}

/* Heading */

.hero-title{

    font-size:62px;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-2px;

    color:#111827;

    margin-bottom:28px;

}

.hero-title span{

    color:#C8A96A;

}

/* Description */

.hero-description{

    max-width:760px;

    margin:0 auto 45px;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

}

/* Buttons */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.hero-buttons .btn{
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(17,24,39,.08);
}

.hero-buttons .btn:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 45px rgba(17,24,39,.15);
}

.hero-section::before,
.hero-section::after{
    animation:heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(20px);
    }
}

/* Features */

.hero-features{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#475569;

    font-size:15px;

    font-weight:600;

}

.hero-features i{

    color:#C8A96A;

    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

.hero-section{

    padding:150px 0 90px;

}

.hero-title{

    font-size:48px;

}

}

@media(max-width:768px){

.hero-title{

    font-size:38px;

    line-height:1.2;

}

.hero-description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.hero-buttons .btn{

    width:100%;
    max-width:320px;

}

.hero-features{

    gap:18px;

}

.hero-features div{

    width:100%;
    justify-content:center;

}

}
/*====================================================
                PREMIUM SERVICES
====================================================*/

.services-section{

    background:#FCFBF8;

    position:relative;

}

/*====================================================
            PREMIUM SERVICE CARDS
====================================================*/

.service-card{

    position:relative;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border:1px solid rgba(30,58,95,.08);
    border-radius:24px;
    padding:40px 35px;
    overflow:hidden;
    transition:all .45s ease;
    height:100%;
    box-shadow:0 15px 40px rgba(15,23,42,.06);

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#1E3A5F,#C8A96A);
    transform:scaleX(0);
    transform-origin:left;
    transition:.45s;

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(15,23,42,.12);
    border-color:rgba(200,169,106,.25);

}

.service-card:hover::before{

    transform:scaleX(1);

}

/* Icon */

.service-icon{

    width:78px;
    height:78px;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    background:linear-gradient(135deg,#F8F5EE,#F1E5CC);

    color:#1E3A5F;

    margin-bottom:28px;

    transition:.45s;

}

.service-card:hover .service-icon{

    background:linear-gradient(135deg,#1E3A5F,#29476E);
    color:#fff;
    transform:rotate(-6deg) scale(1.08);

}

/* Heading */

.service-card p{

    color:#667085;
    line-height:1.9;
    margin-bottom:24px;

}

/* Description */

.service-card p{

    color:#667085;

    font-size:15px;

    line-height:1.9;

    margin-bottom:24px;

}

/* Link */
.service-card a{

    color:#1E3A5F;
    font-weight:700;
    transition:.3s;

}

.service-card:hover a{

    color:#C8A96A;
    letter-spacing:.4px;

}


/* Mobile */

@media(max-width:768px){

.service-card{

    padding:30px;

}

.service-icon{

    width:70px;

    height:70px;

    font-size:30px;

}

.service-card h4{

    font-size:22px;

}

}
/*====================================================
                PREMIUM OUR WORK
====================================================*/

.work-section{

    background:#FDFCF9;
    position:relative;

}

.work-card{

    background:rgba(255,255,255,.95);

    border:1px solid rgba(200,169,106,.18);

    border-radius:26px;

    padding:38px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:all .45s ease;

    box-shadow:0 18px 50px rgba(15,23,42,.06);

}

.work-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#C8A96A,#E6D1A3);

    transform:scaleX(0);

    transition:.45s;

}

.work-card:hover::before{

    transform:scaleX(1);

}

.work-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(15,23,42,.12);

}

/* Category */

.work-category{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:#F8F3E8;

    color:#B88A3B;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:24px;

}

/* Title */

.work-card h4{

    font-size:26px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

    line-height:1.3;

}

/* Description */

.work-card p{

    color:#667085;

    font-size:15px;

    line-height:1.9;

    margin-bottom:28px;

}

/* Tags */

.work-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.work-tags span{

    padding:9px 16px;

    border-radius:50px;

    background:#F8FAFC;

    border:1px solid #E6E8EC;

    color:#475467;

    font-size:13px;

    font-weight:600;

    transition:.35s;

}

.work-card:hover .work-tags span{

    border-color:#C8A96A;

}

.work-tags span:hover{

    background:#1E3A5F;

    color:#fff;

    border-color:#1E3A5F;

}

/* Responsive */

@media(max-width:991px){

.work-card{

    padding:32px;

}

}

@media(max-width:768px){

.work-card{

    padding:28px;

}

.work-card h4{

    font-size:22px;

}

.work-tags span{

    font-size:12px;

    padding:8px 14px;

}

}
/*====================================================
        PREMIUM TESTIMONIALS
====================================================*/

.testimonial-section{

    background:linear-gradient(180deg,#FCFBF8 0%,#F8F5EF 100%);

    position:relative;

}

/*==================================
    PREMIUM TESTIMONIALS
==================================*/

.testimonial-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(30,58,95,.08);
    box-shadow:0 15px 40px rgba(15,23,42,.06);
    transition:all .4s ease;
    overflow:hidden;
    height:100%;
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:18px;
    right:24px;
    font-size:70px;
    color:rgba(200,169,106,.15);
    font-weight:700;
    line-height:1;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 65px rgba(15,23,42,.12);
}

.stars{
    color:#F4B400;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#667085;
    line-height:1.9;
    font-style:normal;
    margin-bottom:25px;
}

.testimonial-card h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111827;
}

.testimonial-card span{
    display:block;
    margin-top:5px;
    font-size:14px;
    color:#C8A96A;
    font-weight:600;
}

@media(max-width:768px){

.testimonial-card{
    padding:28px 24px;
    text-align:center;
}

.testimonial-card::before{
    font-size:55px;
    right:18px;
}

}
/*====================================================
        TRUST / COUNTER
====================================================*/

.trust-section{

    background:#1E3A5F;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.trust-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-220px;

    right:-180px;

    border-radius:50%;

    background:rgba(200,169,106,.10);

    filter:blur(100px);

}

.trust-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:24px;

    padding:40px 20px;

    text-align:center;

    transition:.4s;

}

.trust-box:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.08);

    border-color:rgba(200,169,106,.45);

}

.trust-box h2{

    font-size:52px;

    font-weight:800;

    color:#C8A96A;

    margin-bottom:12px;

}

.trust-box p{

    color:rgba(255,255,255,.9);

    font-size:16px;

    margin:0;

}

/* Responsive */

@media(max-width:768px){

.testimonial-card{

    padding:30px;

}

.trust-box{

    margin-bottom:25px;

}

.trust-box h2{

    font-size:42px;

}

}
/*====================================================
        PREMIUM CTA
====================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#1E3A5F 0%,#162D49 100%);

    color:#fff;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    right:-150px;

    border-radius:50%;

    background:rgba(200,169,106,.12);

    filter:blur(100px);

}

.cta-section h2{

    font-size:46px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:20px;

}

.cta-section p{

    color:rgba(255,255,255,.85);

    font-size:17px;

    line-height:1.9;

}

.cta-section .btn{

    background:#C8A96A;

    color:#111827;

    border:none;

    border-radius:50px;

    padding:16px 36px;

    font-weight:700;

    transition:.35s;

}

.cta-section .btn:hover{

    background:#fff;

    transform:translateY(-4px);

}

/*====================================================
                FAQ
====================================================*/

.faq-section{

    background:#FCFBF8;

}

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.accordion-button{

    padding:22px 26px;

    font-weight:600;

    color:#111827;

    background:#fff;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:#1E3A5F;

    color:#fff;

}

.accordion-body{

    padding:22px 26px;

    color:#667085;

    line-height:1.9;

}

/*====================================================
                CONTACT
====================================================*/

.contact-section{

    background:#ffffff;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

    font-size:16px;

    color:#475467;

}

.contact-item i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#F8F3E8;

    color:#C8A96A;

    font-size:20px;

}

.contact-section form{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid rgba(200,169,106,.18);

    box-shadow:0 20px 60px rgba(15,23,42,.06);

}

.form-control{

    border:1px solid #E5E7EB;

    border-radius:14px;

    padding:15px 18px;

    box-shadow:none;

    transition:.3s;

}

.form-control:focus{

    border-color:#C8A96A;

    box-shadow:0 0 0 4px rgba(200,169,106,.12);

}

/*====================================================
                FOOTER
====================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 30px;

}

.footer h3,
.footer h4,
.footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

}

.footer p{

    color:#94A3B8;

    line-height:1.9;

}

.footer ul{

    padding:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#94A3B8;

    transition:.35s;

}

.footer ul li a:hover{

    color:#C8A96A;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:14px;

    margin-top:20px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1E293B;

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:#C8A96A;

    color:#111827;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 25px;

}

/*====================================================
            WHATSAPP & TOP BUTTON
====================================================*/

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.35s;
}

.whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.05);
    color:#fff;
    background:#20c85a;
}

#topBtn{
    position:fixed;
    right:25px;
    bottom:100px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#1E3A5F;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    z-index:9998;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
    transition:.35s;
}

#topBtn:hover{
    background:#C8A96A;
    color:#111;
    transform:translateY(-5px);
}

/*====================================================
            GLOBAL ANIMATIONS
====================================================*/

.service-card,
.work-card,
.process-card,
.testimonial-card,
.trust-box,
.why-card{

    transition:all .45s ease;

}

section{

    position:relative;

    z-index:1;

}

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:991px){

.cta-section{

    text-align:center;

}

.contact-section form{

    margin-top:40px;

}

}

@media(max-width:768px){

.cta-section h2{

    font-size:34px;

}

.contact-section form{

    padding:28px;

}

.footer{

    text-align:center;

}

.social-icons{

    justify-content:center;

}

}
.form-control,
.form-select{

    height:58px;

    border-radius:14px;

    transition:.3s;

}

textarea.form-control{

    height:auto;

}

.form-control:focus,
.form-select:focus{

    border-color:#C8A96A;

    box-shadow:

    0 0 0 4px rgba(200,169,106,.12);

}
/*==============================
    TRUST SECTION
==============================*/

.trust-section{

    background:linear-gradient(135deg,#0F172A 0%,#1E293B 100%);
    color:#fff;

}

.trust-section .section-title span{

    color:#C8A96A;

}

.trust-section .section-title h2{

    color:#fff;

}

.trust-section .section-title p{

    color:rgba(255,255,255,.75);

}

.trust-box{

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;

}

.trust-box h2{

    color:#C8A96A;
    font-size:52px;
    font-weight:800;

}

.trust-box p{

    color:#fff;
    margin-top:10px;

}

.trust-box:hover{

    transform:translateY(-8px);
    background:rgba(255,255,255,.10);

}
/*==============================
        CTA
==============================*/

.cta-section{

    background:#111827;
    color:#fff;

}

.cta-section h2{

    color:#fff;

}

.cta-section p{

    color:rgba(255,255,255,.75);

}

.cta-section .btn-primary{

    background:#C8A96A;
    color:#111827;
    border:none;

}

.cta-section .btn-primary:hover{

    background:#D6B57A;
    color:#111827;

}
.testimonial-section{

    background:#F8FAFC;

}
/* Logo */

.navbar-brand{
    display:flex;
    align-items:center;
    padding:0;
}
/* Mobile Footer */
@media (max-width:768px){

.footer{
    padding:45px 0 20px;
}

.footer .row{
    row-gap:20px !important;
}

.footer h3,
.footer h5{
    margin-bottom:10px;
}

.footer p{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.7;
}

.footer ul{
    margin-bottom:0;
}

.footer ul li{
    margin-bottom:8px;
}

.social-icons{
    margin-top:15px !important;
}

.footer hr{
    margin:20px 0;
}

.footer .d-md-flex{
    text-align:center;
}

.footer .d-md-flex p:last-child{
    margin-top:8px;
}

}
/* Mobile Footer Links */
@media (max-width:768px){

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px 18px;
    padding:0;
    margin:15px 0 0;
}

.footer-links li{
    margin:0;
}

.footer-links a{
    font-size:14px;
}

}
/* Mobile Footer */
@media (max-width:768px){

.footer{
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 18px;
    margin-top:15px;
}

.footer-links li{
    margin:0;
}

.footer .social-icons{
    display:flex;
    justify-content:center;
    gap:12px;
}

.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-5{
    text-align:center;
}

.footer .col-lg-4 p{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
}

}
@media (max-width:768px){

.footer-contact{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px 20px;
}

.footer-contact p{
    margin:0;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
}

}
/*==============================
    SERVICE MOBILE
==============================*/

@media (max-width:768px){

.service-card{
    padding:28px 24px;
    border-radius:18px;
    text-align:center;
}

.service-icon{
    width:64px;
    height:64px;
    font-size:28px;
    margin:0 auto 20px;
}

.service-card h4{
    font-size:22px;
}

.service-card p{
    font-size:15px;
    line-height:1.7;
}

.service-card:hover{
    transform:translateY(-6px);
}

}
/*==================================
        PREMIUM PORTFOLIO
==================================*/

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    transition:all .45s ease;
    border:1px solid rgba(30,58,95,.08);
}

.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform .6s ease;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(15,23,42,.14);
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

/* Overlay */

.portfolio-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(17,24,39,.72),
    rgba(17,24,39,0));
    opacity:0;
    transition:.4s;
    z-index:1;
}

.portfolio-card:hover::before{
    opacity:1;
}

.portfolio-content{
    position:relative;
    padding:28px;
    z-index:2;
    transition:.35s;
}

.portfolio-card:hover .portfolio-content{
    transform:translateY(-5px);
}

.portfolio-content span{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#F5EFE2;
    color:#B7862F;
    font-size:13px;
    font-weight:700;
}

.portfolio-content h4{
    margin:18px 0 12px;
    font-size:24px;
    font-weight:700;
}

.portfolio-content p{
    color:#64748B;
    line-height:1.8;
}
@media(max-width:768px){

.portfolio-card img{
    height:220px;
}

.portfolio-content{
    padding:22px;
}

.portfolio-content h4{
    font-size:20px;
}

}