 
/* ================= BODY ================= */

body {
    font-family: 'Segoe UI',sans-serif;
    background: #fffaf5;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #ffffff;
    border-bottom: 3px solid #ff7a00;
    transition: 0.4s;
}

    .navbar.scrolled {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

.navbar-brand {
    font-weight: 700;
    color: #ff7a00 !important;
    font-size: 22px;
}

.nav-link {
    color: #444 !important;
    font-weight: 500;
    margin-left: 10px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #ff7a00 !important;
    }

/* ================= BUTTON ================= */

.btn-primary {
    background: #ff7a00;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #e56700;
        transform: translateY(-2px);
    }

/* ================= HERO SECTION ================= */

.hero-section {
    background: linear-gradient(135deg,#ff7a00,#ffb347);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 600;
}

.hero-section p {
    font-size: 18px;
    margin-top: 10px;
}

/* ================= SERVICES ================= */

.service-card {
    background: white;
    border: none;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
    text-align: center;
}

    .service-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid #ff7a00;
    }

    .service-card i {
        font-size: 40px;
        margin-bottom: 15px;
        color: #ff7a00;
    }

/* ================= ENQUIRY FORM ================= */

.enquiry-section {
    background: linear-gradient(135deg,#ff7a00,#ffb347);
    padding: 70px 0;
}

.enquiry-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: 0.4s;
}

    .enquiry-card:hover {
        transform: translateY(-8px);
    }

.input-group-text {
    background: #ff7a00;
    color: white;
    border: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 6px rgba(255,122,0,0.4);
}

/* ================= PORTFOLIO ================= */

.portfolio img {
    width: 100%;
    border-radius: 8px;
    transition: 0.4s;
}

    .portfolio img:hover {
        transform: scale(1.05);
    }

/* ================= PRICING ================= */

.pricing-card {
    border: none;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        border-top: 4px solid #ff7a00;
    }

/* ================= FOOTER ================= */

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding-top: 50px;
}

    .footer h5 {
        color: #ff7a00;
        margin-bottom: 15px;
    }

    .footer p {
        font-size: 14px;
    }

    .footer a {
        color: #aaa;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer a:hover {
            color: #ff7a00;
        }

.footer-social i {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .footer-social i:hover {
        color: #ff7a00;
        transform: translateY(-5px);
    }

/* ================= FLOAT BUTTON ================= */

.float-btn {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 55px;
    height: 55px;
    background: #ff7a00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

    .float-btn:hover {
        background: #e56700;
        transform: scale(1.1);
    }

/* ================= SCROLL BUTTON ================= */

#scrollTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff7a00;
    border: none;
    display: none;
    z-index: 999;
}

    #scrollTop:hover {
        background: #e56700;
    }

/* ================= IMAGE HOVER ================= */

img {
    transition: 0.4s;
}

    img:hover {
        transform: scale(1.03);
    }

/* ================= THEME BUTTON ================= */

.theme-btn button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    .hero-section h1 {
        font-size: 32px;
    }

    .navbar-nav {
        text-align: center;
    }

    .btn-demo {
        margin-top: 10px;
    }
}