body {
    font-family: 'Poppins', sans-serif;
    padding-top: 100px; /* FIXED NAVBAR HEIGHT */
    background: #ffffff;
    scroll-behavior: smooth;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ===== COLORS ===== */
.text-orange { color: #F26522; }

.btn-orange {
    background: #F26522;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.3s ease;
    border: none;
}

.btn-orange:hover {
    background: #d94e1f;
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    min-height: 90px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-scrolled {
    background: white !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
}

.nav-link:hover {
    color: #F26522 !important;
}

/* ===== HERO ===== */
.hero {
    height: 90vh;
    background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7") center/cover no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 100px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CARDS ===== */
.card {
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: #aaa;
    padding: 60px 0;
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: #F26522;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #F26522;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ===== PROGRESS BAR ===== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #F26522;
    width: 0%;
    z-index: 9999;
}

/* ===== PREMIUM PAGE HEADER ===== */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    margin-top: -20px; /* small adjustment */
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.7)
    );
    z-index: 1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 46px;
    margin: 0;
}

.page-header .breadcrumb-wrapper {
    position: absolute;
    bottom: 25px;
    left: 40px;
    z-index: 2;
    font-size: 15px;
}

.page-header .breadcrumb-wrapper a {
    color: #F26522;
    text-decoration: none;
    font-weight: 500;
}

.page-header .breadcrumb-wrapper span {
    color: #fff;
}

/* ===== FORM ===== */
.form-control {
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.form-control:focus {
    border-color: #F26522;
    box-shadow: 0 0 0 3px rgba(242,101,34,0.15);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #F26522;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 999;
}

.floating-cta:hover {
    transform: translateY(-5px);
}

/* ===== SCROLL TOP ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    z-index: 999;
}

/* ===== DARK MODE ===== */
body.dark-mode {
    background: #111;
    color: #eee;
}

body.dark-mode .navbar {
    background: #222 !important;
}

body.dark-mode .card {
    background: #1e1e1e;
    color: #ddd;
}

/* ===== PAGE HEADER BACKGROUNDS ===== */
.page-header.services {
    background-image: url("https://media.istockphoto.com/id/1248877328/photo/solution-computer-keyboard-with-colored-pieces-of-a-puzzle.jpg");
}

.page-header.about {
    background-image: url("https://images.unsplash.com/photo-1455849318743-b2233052fcff");
}

.page-header.contact {
    background-image: url("https://plus.unsplash.com/premium_photo-1669658981858-b2ae0d7581a3");
}

.page-header.work {
    background-image: url("https://plus.unsplash.com/premium_photo-1661575135604-c3c34b7c0b8a");
}

.page-header.business {
    background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40");
}


/* ===== SUCCESS TOAST ===== */
.custom-toast {
    position: fixed;
    top: 90px; /* below navbar */
    right: 30px;
    background: #28a745;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ===== FOUNDER SECTION FIX ===== */

.founder-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-8px);
}

.founder-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #F26522;
}

.founder-role {
    color: #F26522;
    font-weight: 600;
    margin-bottom: 10px;
}

.founder-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .founder-card {
        margin-bottom: 30px;
    }
}


/* ===== FIND WORK JOB CARD FIX ===== */

.job-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-8px);
}

.job-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.job-card p {
    font-size: 14px;
    color: #555;
}

/* ===== FIND WORK FORM UPGRADE ===== */

.form-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 120px 0;
}

.form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.btn-premium {
    background: linear-gradient(135deg, #F26522, #ff8c42);
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242,101,34,0.4);
}

footer {
    margin-top: 80px;
}