/* Color Palette */
:root {
    --primary-orange: #bc8a5f;
    --dark-bg: #000000;
    --top-bar-bg: #1a1a1a;
}

html {
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
}





body {
    font-family: sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--top-bar-bg);
    color: white;
    font-size: 14px;
    border-bottom: 1px solid #333;
}

.social-links i {
    color: white;
    margin: 0 8px;
    transition: 0.3s;
}

    .social-links i:hover {
        color: var(--primary-orange);
    }

.icon-circle {
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    padding: 8px;
    color: var(--primary-orange);
    margin-right: 8px;
}

.navbar-brand img {
    border-radius: 50%;
}

/* Navbar Main */
:root {
    --primary-orange: #bc8a5f;
    --dark-bg: #000;
}


/* Company Header */

.brand-header {
    background: #000;
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-orange);
}

/* Company Name */

.brand-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(90deg,#000000,#ffb2476e,#000000);
    -webkit-background-clip: (text);
    -webkit-text-fill-color: (transparent);
    /* text-shadow:0 0 10px rgba(255,106,0,0.6); */
}

.floating-logo {
    position: absolute;
    top: 0;
    left: 5rem;
    z-index: 99999;
    background: black;
    padding: 15px 25px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(136, 135, 135, 0.468);
}

    .floating-logo img {
        height: 10rem;
        border-radius: 50%;
    }
/* Navbar */

.custom-navbar {
    border-bottom: 3px solid var(--primary-orange);
}

/* Links */

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 13px;
    padding: 22px 18px !important;
    border-left: 1px solid #222;
    transition: .3s;
    letter-spacing: .5px;
}


    /* Hover */

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #111;
        color: var(--primary-orange) !important;
    }

/* Dropdown */

.dropdown-menu {
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-orange);
    border-radius: 0;
    min-width: 200px;
}

.dropdown-item {
    color: white;
    font-size: 13px;
    padding: 10px 20px;
}

    .dropdown-item:hover {
        background: var(--primary-orange);
        color: white;
    }

/* Hover dropdown desktop */

@media (min-width:992px) {

    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile Fix */

@media (max-width:991px) {

    .navbar-nav .nav-link {
        border-left: none;
        padding: 12px !important;
    }
}

@media (max-width:768px) {
    .floating-logo {
        display: none;
    }
}

@media (max-width:480px) {
    .floating-logo {
        display: none;
    }
}

@media (max-width:768px) {

    .floating-logo {
        display: none;
    }

        .floating-logo img {
            display: none;
        }
}
/* --- Sticky & General Fixes --- */
.custom-navbar {
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
}

/* Jab JS se sticky class lagegi */
.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* --- Brand Header Styling --- */
.brand-header {
    background: #000;
    padding: 30px 0;
}

.brand-title {
    color: white;
    font-size: 2.5rem;
    letter-spacing: 5px;
    font-weight: 800;
    margin: 0;
}

/* --- Mobile Responsiveness (Media Queries) --- */

/* For Tablets (max-width: 991px) */
@media (max-width: 991px) {
    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .navbar-nav .nav-link {
        border-left: none !important;
        padding: 10px !important;
        border-bottom: 1px solid #222;
    }

    .dropdown-menu {
        background: #111 !important;
        border: none;
    }
}

/* For Phones (max-width: 768px) */
@media (max-width: 768px) {
    .contact-info span {
        font-size: 12px;
    }

    .brand-header {
        padding: 20px 0;
    }

    .brand-title {
        font-size: 1.4rem;
    }

    .floating-logo {
        display: none !important;
    }
}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .navbar-brand img {
        height: 40px; /* Logo thoda chhota mobile ke liye */
    }

    .brand-title {
        font-size: 1.1rem;
    }
}


/* Normal state: static ya relative */
.custom-navbar {
    width: 100%;
    transition: all 0.3s ease; /* Smooth effect ke liye */
    z-index: 1000;
}

/* JS se jab ye class add hogi */
.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.4s ease; /* Niche aane ka animation */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



/* Hero Section Styles */
#hero-slider .carousel-item {
    height: 80vh; /* Screen ka 80% height lega */
    min-height: 500px;
    background: #000;
}

#hero-slider img {
    height: 100%;
    object-fit: cover; /* Image ko bina khinche stretch karega */
    opacity: 0.7; /* Text clarity ke liye image halki dark */
}

/* Overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 25%;
    padding-left: 5%;
}

.text-orange {
    color: #bc8a5f; /* Navbar wala orange color */
}

.btn-orange {
    background-color: #bc8a5f;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 0; /* Professional look ke liye sharp edges */
    transition: 0.3s;
}

    .btn-orange:hover {
        background-color: #bc8a5f;
        color: white;
    }

.btn-outline-light {
    border-radius: 0;
    border-width: 2px;
}

/* Animation for Text */
.carousel-caption h1 {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Services Styling */
.text-orange {
    color: #bc8a5f;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #bc8a5f;
    margin-top: 15px;
}

.service-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 5px;
}

    .service-card:hover {
        transform: translateY(-10px);
        background-color: #000 !important; /* Black theme on hover */
    }

        .service-card:hover h4,
        .service-card:hover p {
            color: #fff !important; /* Text white on black background hover */
        }

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.border-orange {
    border-color: #bc8a5f !important;
}

.btn-link:hover {
    color: #000;
}


/* Project Gallery Styles */
.project-item {
    height: 350px;
}

    .project-item img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark Overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.project-item:hover img {
    transform: scale(1.1); /* Zoom Effect */
}

.project-item:hover .project-overlay {
    opacity: 1; /* Show overlay on hover */
}

.project-overlay h4 {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-item:hover .project-overlay h4 {
    transform: translateY(0);
}





/* Review Grid Styles */
.review-card {
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

/* Middle Card Highlight (Orange Theme) */
.highlight-card {
    background: #bc8a5f !important;
    transform: scale(1.05); /* Thoda bada dikhega center mein */
}

@media (max-width: 991px) {
    .highlight-card {
        transform: scale(1);
    }
}

.italic {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-orange {
    color: #bc8a5f;
}

/* Background me quote icon ka halka effect */
.review-card::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(0,0,0,0.03);
    z-index: -1;
}

.highlight-card::before {
    color: rgba(255,255,255,0.1);
}





/* Modern Contact Section Styles */
#contact-modern {
    background: url('image/image3.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 600px;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark shade for text readability */
    z-index: 1;
}

.bg-orange {
    background-color: #bc8a5f;
}

.text-orange {
    color: #bc8a5f;
}

.contact-round-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #bc8a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc8a5f;
    font-size: 18px;
}

/* Glassmorphism Effect */
.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.modern-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 12px 15px;
    border-radius: 8px;
}

    .modern-input:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #bc8a5f !important;
        box-shadow: none;
    }

    .modern-input::placeholder {
        color: #bbb;
    }

.btn-orange-lg {
    background: #bc8a5f;
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .btn-orange-lg:hover {
        background: #bc8a5f;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(243, 111, 33, 0.4);
    }





/* Stats Section */
.stats-section {
    border-top: 1px solid #333;
}

/* Footer Styling */
.footer {
    background-color: #080808 !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #bc8a5f !important;
    padding-left: 5px;
    transition: 0.3s;
}

.border-orange {
    border-color: #bc8a5f !important;
}

.footer input::placeholder {
    color: #666;
    font-size: 13px;
}

.footer .form-control:focus {
    box-shadow: none;
    border-color: #bc8a5f;
}










/* ABOUT US  */

/* Navbar Hover */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
#hero .carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
}

/* Service Box */
.service-box {
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

    .service-box:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid var(--orange);
    }

/* Form Styles */
.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    color: #000;
    padding: 12px;
}

    .form-control:focus {
        background: rgba(255,255,255,0.2);
        box-shadow: none;
        border-color: var(--orange);
        color: #000;
    }



/* our services */

/* Styling for Interior Page */
.text-orange {
    color: #bc8a5f !important;
}

/* Process Steps */
.process-step {
    padding: 20px;
    border: 1px dashed rgba(243, 111, 33, 0.4);
    transition: 0.3s;
}

    .process-step:hover {
        background-color: #bc8a5f;
        border-style: solid;
    }

.step-num {
    font-size: 40px;
    font-weight: 900;
    color: #bc8a5f;
}

.process-step:hover .step-num, .process-step:hover p {
    color: white !important;
}

/* Gallery Hover Overlay */
.project-box {
    cursor: pointer;
}

.p-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #bc8a5f;
    transition: 0.4s;
    font-weight: bold;
    text-align: center;
}

.project-box:hover .p-overlay {
    bottom: 0;
}

.project-box img {
    transition: 0.5s;
}

.project-box:hover img {
    transform: scale(1.1);
}


/* Architecture Page Styles */
.text-orange {
    color: #bc8a5f !important;
}

.bg-orange {
    background-color: #bc8a5f !important;
}

/* Arch Cards */
.arch-card {
    transition: 0.4s;
    border-top: 5px solid transparent !important;
}

    .arch-card:hover {
        transform: translateY(-10px);
        border-top: 5px solid #bc8a5f !important;
        background: #fff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

.arch-icon {
    color: #bc8a5f;
}

/* Technical Image Borders */
.border-orange-left {
    border-left: 10px solid #bc8a5f;
}

/* Button Styling */
.btn-orange-filled {
    background-color: #bc8a5f;
    color: white;
    border-radius: 0;
    transition: 0.3s;
}

    .btn-orange-filled:hover {
        background-color: #000;
        color: white;
    }

/* Progress Bar Color */
.progress-bar.bg-orange {
    background-color: #bc8a5f !important;
}


/* Consultation Styles */
.text-orange {
    color: #bc8a5f !important;
}

.btn-orange {
    background-color: #bc8a5f;
    border: none;
}

.consult-card {
    transition: 0.4s;
    background: #fff;
}

.featured-consult {
    border: 2px solid #bc8a5f !important;
    position: relative;
    transform: scale(1.05);
}

    /* Sticker for Featured Card */
    .featured-consult::before {
        content: "MOST POPULAR";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #bc8a5f;
        color: white;
        padding: 2px 15px;
        font-size: 12px;
        font-weight: bold;
    }

.consult-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #bc8a5f;
    box-shadow: none;
}


/* Projects Page Styles */
.text-orange {
    color: #bc8a5f !important;
}

/* Filter Buttons */
.filter-btns .btn {
    padding: 10px 25px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

    .filter-btns .btn.active {
        background-color: #bc8a5f;
        border-color: #bc8a5f;
        color: white;
    }

/* Portfolio Item Hover Effect */
.portfolio-item {
    height: 300px;
    cursor: pointer;
}

    .portfolio-item img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Black overlay */
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-hover h4 {
    transform: translateY(-20px);
    transition: 0.4s;
}

.portfolio-item:hover .portfolio-hover h4 {
    transform: translateY(0);
}

.btn-orange-sm {
    background: #bc8a5f;
    color: white;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 0;
}

    .btn-orange-sm:hover {
        background: white;
        color: #000;
    }


/* Gallery Styles */
.text-orange {
    color: #bc8a5f !important;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: #bc8a5f;
}

.gallery-card {
    height: 280px;
    cursor: pointer;
    border-radius: 5px;
}

    .gallery-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(#bc8a5f); /* Orange overlay */
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: transform 0.3s;
}

    .gallery-zoom:hover {
        transform: scale(1.2);
        color: #000;
    }



/* Premium Video Gallery CSS */
.text-orange {
    color: #bc8a5f !important;
}

.bg-orange {
    background-color: #bc8a5f !important;
}

/* Main Featured Box */
.main-video-box {
    height: 550px;
    border-radius: 20px;
}

.main-thumb {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent 80%);
}

/* Play Button Animation */
.play-circle {
    width: 70px;
    height: 70px;
    background: #bc8a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.4);
    animation: pulse-orange 2s infinite;
    transition: 0.3s;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 97, 42, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(243, 111, 33, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 111, 33, 0);
    }
}

/* Small Cards */
.thumb-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .thumb-wrap img {
        transition: 0.5s;
        filter: grayscale(40%);
    }

.play-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.video-card-v2:hover .play-mini {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-v2:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.w-fit {
    width: fit-content;
}




/* Elite Testimonial CSS */
.text-orange {
    color: #bc8a5f !important;
}

.border-orange {
    border-color: #bc8a5f !important;
}

/* Video Box Pulse Effect */
.video-testimonial-box {
    cursor: pointer;
    transition: 0.5s;
}

    .video-testimonial-box:hover img {
        filter: brightness(0.6);
    }

.testimonial-overlay-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.play-btn-pulse {
    width: 60px;
    height: 60px;
    background: #bc8a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.7);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(243, 111, 33, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 111, 33, 0);
    }
}

/* Premium Review Items */
.review-item-premium {
    transition: 0.3s ease;
    cursor: pointer;
}

    .review-item-premium:hover {
        transform: translateX(15px);
        background-color: #f8f9fa !important;
    }

.quote-icon-orange {
    color: rgba(243, 111, 33, 0.1);
}

.review-item-premium:hover .quote-icon-orange {
    color: rgba(243, 111, 33, 0.3);
}

.letter-spacing {
    letter-spacing: 3px;
}




.text-orange {
    color: #bc8a5f !important;
}

.btn-orange {
    background-color: #bc8a5f;
    border: none;
    transition: 0.3s;
}

    .btn-orange:hover {
        background-color: #000;
    }

/* Contact Header Negative Margin for Cards */
.mt-n5 {
    margin-top: -60px;
}

.info-card {
    transition: 0.3s;
    border-radius: 8px;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.form-control, .form-select {
    padding: 12px;
    border: 1px solid #dee2e6;
}

    .form-control:focus, .form-select:focus {
        border-color: #bc8a5f;
        box-shadow: none;
    }

.map-container {
    border: 1px solid #eee;
}

div .icons {
    background-color: #000;
}

.icon-box img {
    width: 50px; /* Icon size */
    height: auto;
    filter: sepia(100%) saturate(300%) hue-rotate(10deg); /* Makes icons look gold */
}

.service-title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.2;
}





.step-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.step-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    z-index: 2 !important;
}

    .step-circle.active {
        background: #bc8a5f;
        color: #fff;
    }

.step-title {
    font-size: 13px;
    margin-top: 8px;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -50%;
    width: 85%;
    height: 2px;
    background: #ddd;
}

.step-item:last-child::after {
    display: none;
}


.badge-started {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

    .title span {
        color: #bc8a5f;
    }

.counter {
    font-size: 120px;
    font-weight: 700;
    color: #bc8a5f;
    line-height: 1;
}

.counter-text {
    font-weight: 600;
    margin-top: -10px;
}

.img-rounded {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.know-more {
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 20px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.arrow {
    background: #bc8a5f;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}



.section-title {
    font-size: 42px;
    font-weight: 600;
}

    .section-title span {
        color: #bc8a5f;
    }

.section-desc {
    max-width: 750px;
    margin: 15px auto 50px;
    color: #6c757d;
    line-height: 1.7;
}

.team-card {
    position: relative;
    overflow: hidden;
}

    .team-card img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        filter: grayscale(100%);
    }

.team-name {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.slider-dots {
    margin-top: 30px;
}

    .slider-dots span {
        width: 10px;
        height: 10px;
        background: #d9d9d9;
        border-radius: 50%;
        display: inline-block;
        margin: 0 4px;
    }

        .slider-dots span.active {
            background: #000;
        }

.work-process {
    padding: 20px;
}

/* STEP BAR */
.step-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.step-item {
    text-align: center;
    cursor: pointer;
    flex: 1;
    min-width: 90px;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 auto 8px;
    font-weight: bold;
    transition: 0.3s;
}

    .step-circle.active {
        background: #f0ad4e;
        color: #fff;
    }

.step-title {
    font-size: 13px;
}

/* CONTENT */
.step-content img {
    max-width: 100%;
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
    .step-wrap {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .step-item {
        min-width: 80px;
    }

    .step-title {
        font-size: 11px;
    }

    .step-content {
        text-align: center;
    }

        .step-content .col-md-6 {
            margin-bottom: 20px;
        }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 480px) {
    .step-circle {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 13px;
    }
}

.text-warning {
    color: #bc8a5f !important;
}

.projects-section {
    background: #f8f8f8;
}

.project-card {
    position: relative;
}

    .project-card img {
        border-radius: 18px;
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .project-card h5 {
        margin-top: 12px;
        font-weight: 600;
    }

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.85);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* Progress Line */
.carousel-progress {
    width: 100%;
    height: 3px;
    background: #ddd;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

    .carousel-progress span {
        display: block;
        height: 100%;
        width: 33.33%;
        background: #bc8a5f;
        transition: transform 0.5s ease;
    }



.experience-section {
    background: #fff;
}

.badge-custom {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

    .main-heading span {
        color: #c49a5a;
    }

.desc {
    color: #666;
    max-width: 460px;
}

.image-wrap img {
    border-radius: 22px;
}

.counter-row {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

    .counter-row h3 {
        font-size: 48px;
        font-weight: 700;
    }

    .counter-row p {
        margin-top: 10px;
        font-weight: 500;
    }


.floating-slider {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 30px;
    margin-left: auto;
    position: relative;
}

.floating-track {
    display: flex;
    width: 300%;
    animation: floatSlide 12s infinite ease-in-out;
}

    .floating-track img {
        width: 100%;
        flex-shrink: 0;
        object-fit: cover;
    }

/* Floating Animation */
@keyframes floatSlide {
    0% {
        transform: translateX(0%);
    }

    30% {
        transform: translateX(0%);
    }

    35% {
        transform: translateX(-100%);
    }

    65% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.form-control-2::placeholder {
    color: #fff;
}
.form-control-2:focus {
    color: #fff;
}


/* Youtube Modal Only */

.youtube-modal-dialog {
    max-width: 900px;
}

.youtube-modal-content {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.youtube-modal-body {
    padding: 0;
}

#youtubeVideoFrame {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile */
@media (max-width:767px) {

    .youtube-modal-dialog {
        margin: 10px;
        max-width: 100%;
    }

    .youtube-modal-content {
        border-radius: 10px;
    }

    .youtube-modal-header {
        padding: 10px 14px;
    }

    .youtube-modal-header .btn-close {
        font-size: 12px;
    }

    .youtube-video-modal .ratio.ratio-16x9 {
        --bs-aspect-ratio: 65%;
    }
}
