/*==========================================
        GOOGLE FONT & RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F5F2;
    color:#1F2937;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/*==========================================
            COLOR VARIABLES
==========================================*/

:root{

    --primary:#D97706;

    --secondary:#1F2937;

    --accent:#F59E0B;

    --light:#F8F5F2;

    --white:#ffffff;

    --text:#4B5563;

    --shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==========================================
            SECTION SPACING
==========================================*/

section{

    padding:100px 0;

}

.section-badge{

    display:inline-block;

    background:rgba(217,119,6,.12);

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title{

    font-size:44px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:20px;

}

.section-description{

    max-width:750px;

    margin:auto;

    color:var(--text);

}

/*==========================================
            NAVBAR
==========================================*/

.custom-navbar{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    box-shadow:0 5px 25px rgba(0,0,0,.05);

    padding:14px 0;

    transition:.4s;

}

.logo{

    width:190px;

    height:auto;

    object-fit:contain;

}

.navbar-nav{

    gap:12px;

}

.nav-link{

    color:var(--secondary);

    font-weight:600;

    transition:.3s;

    position:relative;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--primary);

    left:0;

    bottom:-5px;

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    box-shadow:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==========================================
            HERO SECTION
==========================================*/

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(135deg,#FFF8F0 0%,#F8F5F2 45%,#FFF3E0 100%);

    position:relative;

    overflow:hidden;

    padding-top:130px;

}

/* Decorative Circles */

.hero-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(217,119,6,.08);

    border-radius:50%;

    top:-120px;

    right:-100px;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(245,158,11,.08);

    border-radius:50%;

    bottom:-80px;

    left:-80px;

}

/* Badge */

.hero-badge{

    display:inline-block;

    background:rgba(217,119,6,.12);

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

/* Heading */

.hero-section h1{

    font-size:62px;

    font-weight:800;

    color:var(--secondary);

    line-height:1.2;

    margin-bottom:25px;

}

.hero-section h1 span{

    color:var(--primary);

}

/* Paragraph */

.hero-section p{

    font-size:18px;

    color:var(--text);

    margin-bottom:35px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary Button */

.hero-buttons .btn-primary{

    background:linear-gradient(135deg,#D97706,#F59E0B);

    border:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 30px rgba(217,119,6,.25);

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#B45309,#D97706);

}

/* Dark Button */

.hero-buttons .btn-dark{

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.hero-buttons .btn-dark:hover{

    transform:translateY(-5px);

}

/* Hero Image */

.hero-image{

    max-width:520px;

    animation:floatImage 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.18));

}

/* Floating Animation */

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==========================================
            ABOUT SECTION
==========================================*/

.about-section{

    background:#ffffff;

    position:relative;

}

.about-image{

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image:hover{

    transform:scale(1.03);

}

.about-tag{

    display:inline-block;

    background:rgba(217,119,6,.12);

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.about-heading{

    font-size:40px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:25px;

    line-height:1.3;

}

.about-text{

    color:var(--text);

    margin-bottom:18px;

    font-size:16px;

    line-height:30px;

}

/*==========================================
        FEATURE CARDS
==========================================*/

.feature-card{

    background:#fff;

    padding:28px 22px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    border:1px solid #f1f1f1;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(217,119,6,.18);

}

.feature-card i{

    width:70px;

    height:70px;

    background:linear-gradient(135deg,#D97706,#F59E0B);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:20px;

}

.feature-card h5{

    font-size:20px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:15px;

}

.feature-card p{

    color:var(--text);

    margin:0;

    line-height:28px;

}

/*==========================================
            SERVICES SECTION
==========================================*/

.services-section{

    background:linear-gradient(180deg,#F8F5F2 0%,#FFFDFB 100%);

    position:relative;

}

.service-card{

    background:#ffffff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(217,119,6,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#D97706,#F59E0B);

    top:0;

    left:0;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(217,119,6,.18);

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#D97706,#F59E0B);

    color:#ffffff;

    font-size:38px;

    transition:.4s;

}

.service-card:hover .service-icon{

    transform:rotateY(180deg);

}

.service-card h4{

    font-size:24px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:18px;

}

.service-card p{

    color:var(--text);

    line-height:28px;

    margin:0;

}

/*==========================================
            CONTACT SECTION
==========================================*/

.contact-section{

    background:#ffffff;

    position:relative;

}

.contact-card{

    background:linear-gradient(135deg,#1F2937,#111827);

    border-radius:30px;

    padding:40px;

    color:#ffffff;

    height:100%;

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#D97706,#F59E0B);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.contact-item h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:8px;

}

.contact-item p{

    color:#d1d5db;

    margin:0;

    line-height:28px;

}

/*==========================
        CONTACT FORM
==========================*/

.contact-form-box{

    background:#ffffff;

    padding:40px;

    border-radius:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.form-control,
.form-select{

    border-radius:16px;

    padding:15px;

    border:1px solid #e5e7eb;

    box-shadow:none;

    transition:.3s;

}

.form-control:focus,
.form-select:focus{

    border-color:#D97706;

    box-shadow:0 0 0 .2rem rgba(217,119,6,.15);

}

textarea.form-control{

    resize:none;

}

.submit-btn{

    width:100%;

    background:linear-gradient(135deg,#D97706,#F59E0B);

    color:#ffffff;

    border:none;

    padding:15px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(217,119,6,.25);

}

.submit-btn:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#B45309,#D97706);

    color:#ffffff;

}

/*==========================================
            TOAST
==========================================*/

.toast{

    border-radius:18px;

    overflow:hidden;

}

/*==========================================
                FOOTER
==========================================*/

.footer{

    background:linear-gradient(135deg,#111827,#1F2937);

    color:#ffffff;

    padding:90px 0 30px;

}

.footer-logo{

    width:200px;

    height:auto;

    object-fit:contain;

    margin-bottom:25px;

}

.footer p{

    color:#d1d5db;

    line-height:30px;

}

.footer h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

    color:#ffffff;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#d1d5db;

    transition:.3s;

}

.footer-links a:hover{

    color:#F59E0B;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#2C3646;

    color:#ffffff;

    font-size:20px;

    transition:.4s;

}

.social-icons a:hover{

    background:#D97706;

    transform:translateY(-6px);

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:45px 0 25px;

}

.copyright{

    color:#cbd5e1;

    margin:0;

    font-size:15px;

}

/*==========================================
            BACK TO TOP
==========================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:linear-gradient(135deg,#D97706,#F59E0B);

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 15px 35px rgba(217,119,6,.35);

    transition:.4s;

    opacity:0;

    visibility:hidden;

    z-index:999;

}

.back-to-top:hover{

    transform:translateY(-8px);

    color:#ffffff;

}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.hero-section{

text-align:center;

padding-top:140px;

}

.hero-section h1{

font-size:46px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:40px;

max-width:420px;

}

.about-heading{

font-size:34px;

text-align:center;

}

.about-text{

text-align:center;

}

.contact-form-box{

margin-top:35px;

}

.section-title{

font-size:36px;

}

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.hero-section h1{

font-size:38px;

}

.section-title{

font-size:30px;

}

.logo{

width:160px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.contact-card{

padding:30px;

}

.contact-form-box{

padding:30px;

}

}

@media(max-width:576px){

.hero-section{

padding-top:120px;

}

.hero-section h1{

font-size:32px;

}

.hero-section p{

font-size:16px;

}

.section-title{

font-size:26px;

}

.logo{

width:140px;

}

.footer-logo{

width:170px;

}

}