Header .navbar-custom {
    background: #ffeb00 !important;
    padding: 12px 0;
    font-weight: 600;
    font-size: 16px;
}

.navbar-nav {
    margin: auto;
    gap: 25px;
}

.main-menu ul li a:hover,
.main-menu ul li.active a {
    /* color: #000; */
    color: #F28123;
    /* color: #2b64b5; */
    /* new dev  */
    /* border-bottom: 2px solid #000; */
    /* padding: 1px 5px 1px;
    border: 1px solid #de6500; */
}

/* Base nav link styling */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    display: inline-block;
    /* ⭐ IMPORTANT */
    padding: 0 4px 6px 4px;
    transition: 0.3s ease;
}

/* Hover text color */
.navbar-light .navbar-nav .nav-link:hover {
    color: #000;
}

/* Underline Animation */
.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #FF8800;
    transition: width 0.3s ease;
}

/* Hover + Active underline */
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Active link text color */
.navbar-light .navbar-nav .nav-link.active {
    color: #FF8800 !important;
}

/* login btn */

/* Modern Login Button */
.login-btn {
    /* background: linear-gradient(135deg, rgb(255, 136, 0) 0%, rgb(231, 176, 8) 100%);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease; */
    /* new */
    /* color: #000; */
    /* background-color: #f8f9fa; */
    color: #fff;
    background-color: #F28123;
    border-color: #F28123;
    /* border-color: #f8f9fa; */
}

.login-btn i {
    font-size: 24px;
}

/* .login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(103, 57, 255, 0.45);
    color: #fff;
} */


/* Modal Design */
.auth-modal-left {
    background: #f5f5f5;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-left img {
    width: 100%;
    height: auto;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.auth-switch {
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
}

.auth-switch a {
    font-weight: bold;
    cursor: pointer;
}

/* Search box css */
.media-search-card {
    background: #ffc107c2;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.media-search-card label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.media-search-card .form-control,
.media-search-card .form-select {
    height: 46px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.media-search-card .form-control:focus,
.media-search-card .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, .25);
}

/* Buttons */
.btn-search {
    height: 46px;
    /* background: linear-gradient(135deg, #111, #333); */
    background: #ff9800;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    border: none;
}

.btn-search:hover {
    /* background: linear-gradient(135deg, #000, #222); */
    background: #ff9800;
    color: #fff;
}

.btn-clear {
    height: 46px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px dashed #aaa;
    background: #f9f9f9;
}

/* Mobile polish */
@media (max-width: 575px) {
    .media-search-card {
        padding: 18px;
    }
}


/* .search-box-wrapper {
    background: #ffe000; 
    border-radius: 6px;
}

.search-box .custom-select {
    height: 50px;
    border-radius: 8px !important;
    padding-left: 15px;
    font-size: 15px;
} */

.btn-dark {
    height: 50px;
    border-radius: 8px !important;
}

/* Mobile spacing improvements */
/* @media (max-width: 767px) {
    .search-box {
        padding: 15px !important;
    }
} */

/* loader css */
/* Overlay */
.global-loader {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.global-loader__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

/* Wrapper */
.loader-wrapper {
    position: relative;
    text-align: center;
}

/* Dotted circular loader */
.dotted-loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px dotted #FFD200;
    /* YouTube/Google style dotted ring */
    border-top-color: transparent;
    border-right-color: transparent;
    animation: rotateDots 1s linear infinite;
}

/* Animation */
@keyframes rotateDots {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Text */
.loader-text {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 6px;
}

/* show/hide */
.global-loader[aria-hidden="true"] {
    display: none;
}

.global-loader[aria-hidden="false"] {
    display: flex;
}

/* ICONS */
.about-banner-img {
    margin-top: 6rem;
}

@media (max-width: 991px) {
    .about-banner-img {
        margin-top: 5rem;
    }
}

.banner-below-section {
    place-items: anchor-center;
}

/* =========================
   DESKTOP MENU CENTER FIX
========================= */
@media (min-width: 992px) {

    .main-menu-wrap {
        position: relative;
    }

    nav.main-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    nav.main-menu ul {
        display: flex;
        align-items: center;
        gap: 45px;
    }

    /* Right icons stay right */
    .new-header-icons {
        margin-left: auto;
    }
}


/* MOBILE */
@media (max-width: 991px) {
    .site-logo {
        order: 1;
    }

    .new-header-icons {
        order: 2;
    }

    .mobile-menu {
        order: 3;
    }
}

.main-menu-wrap {
    display: flex;
    align-items: center;
    position: relative;
    /* 🔥 important */
}

.new-header-icons {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-left: auto;

    position: relative;
    z-index: 1001;
    /* toggle पेक्षा जास्त */
}

/* =========================
   HEADER ICONS RESPONSIVE
========================= */

/* Desktop - default */
.new-header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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


    .header-icons .btn,
    .header-icons a {
        width: 56px !important;
        height: 40px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .new-header-icons {
        display: flex;
        align-items: center;
        gap: 10px;

        margin-left: auto;
        /* margin-right: 3.4rem !important;  */

        position: relative;
        z-index: 1001;
        /* toggle पेक्षा जास्त */
    }


    /* ONLY WHEN USER IS LOGGED IN */
    body.user-logged-in .new-header-icons {
        margin-right: 3rem !important;
    }

    /* WHEN USER NOT LOGGED IN → NO MARGIN */
    body.user-guest .new-header-icons {
        /* margin-right: 0 !important; */
    }

    /* Header row alignment */
    .main-menu-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        /* margin-right: 64px !important; */
    }

    /* Logo left */
    .site-logo {
        order: 1;
    }

    /* Cart + Login outside toggle */
    .new-header-icons {
        order: 2;
        margin-left: auto;
        /* margin-right: 100px !important; */
    }

    /* Toggle (hamburger) last */
    .mobile-menu {
        order: 3;
    }

    .login-btn {
        margin-right: 3.6rem !important;
    }

    .new-header-icons {
        gap: 1rem;
    }

}

/* card map css */
.media-map img {
    opacity: 0.8;
}

.media-map a:hover img {
    opacity: 1;
}

.media-map span {
    font-size: 1.1rem;
}

.whybrandimg-para {
    font-size: 1.2rem;
}

/* ===============================
   USER DROPDOWN – CARD STYLE
================================ */

.user-menu-v2 {
    width: 200px !important;
    padding: 14px;
    border-radius: 16px;
    border: none;
    background: #f3f3f3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* USER INFO */
.user-menu-v2 .user-info {
    text-align: center;
    padding: 14px 10px;
    border-radius: 12px;
    background: #d6d6d6;
    margin-bottom: 12px;
}

.user-menu-v2 .user-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.user-menu-v2 .user-info span {
    font-size: 13px;
    color: #555;
    white-space: normal;
    word-break: break-word;
}

/* ACTIONS WRAPPER */
.user-menu-v2 .menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BUTTON STYLE */
.user-menu-v2 .menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    background: #e0e0e0;
    color: #111;
    transition: all 0.25s ease;
}

/* ACTIVE (Dashboard) */
.user-menu-v2 .menu-btn.active {
    width: 175px !important;
    background: #F28123;
    color: #fff;
}

/* LOGOUT */
.user-menu-v2 .menu-btn.logout {
    width: 175px !important;
    color: #e53935;
}

/* HOVER EFFECT */
.user-menu-v2 .menu-btn:hover {
    width: 175px;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}


/* profile website */
/* USER DROPDOWN AREA */
.user-dropdown .user-btn {
    /* background: transparent;  new dev*/
    background: #F28123;
    border: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 11px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    transition: 0.3s;
}

.user-avatar:hover {
    transform: scale(1.05);
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ARROW ANIMATION */
.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: 0.3s ease;
    color: #fff;
}

/* MODERN GLASS DROPDOWN MENU */
.user-menu {
    border-radius: 12px;
    backdrop-filter: blur(10px);
    /* background: rgba(255,255,255,0.85); */
    background: rgb(186 186 186 / 85%);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* DROPDOWN ITEMS STYLING */
.user-menu .dropdown-item {
    border-radius: 8px;
    margin: 3px 8px;
    padding: 10px 14px;
    transition: 0.2s;
    width: 90%;
}

.user-menu .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.07);
    transform: translateX(3px);
}

.dropdown-header strong {
    font-size: 16px;
}

.dropdown-header small {
    font-size: 12px;
}

/* password hide and icon */
.password-wrapper {
    position: relative;
}

/* all media card */
.media-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.media-body {
    padding: 12px;
}

.media-body h6 {
    margin: 0;
    font-weight: 600;
}

.media-body p {
    margin: 5px 0;
    color: #28a745;
    font-weight: bold;
}

.media-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-box {
    display: flex;
    align-items: center;
}

.qty-box button {
    width: 30px;
    height: 30px;
    padding: 0;
}

.qty-box input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
}

/* =========================
   SERVICES SECTION
========================= */
/* .services-section{
    background: radial-gradient(circle at top, #1a1a1a, #000);
    padding: 100px 0;
    color: #fff;
} */
.services-section {
    margin-top: 4rem;
}

/* Header */
.services-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.services-subtitle {
    color: #ff9800;
    font-size: 18px;
    letter-spacing: 2px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}

.services-title span {
    color: #ffb703;
}

.services-desc {
    color: #000;
    font-size: 18px;
}

/* Card */
.service-card {
    /* background: linear-gradient(145deg, #111, #1c1c1c); */
    background: linear-gradient(145deg, #737272, #9e9898);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card h4 {
    margin-top: 18px;
    font-size: 22px;
}

.service-card p {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
}

/* Icon */
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    /* background: rgba(255,165,0,0.15); new dev */
    background: #ff9800;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #ffb703; */
    font-size: 26px;
}

.service-card h4 {
    color: #ffc107;
}

/* Hover */
.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff9800;
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.15);
}

/* Active / Highlight card */
.service-card .service-icon:hover {
    background: #ff9800;
    color: #000;
}

.service-card:hover .service-icon {
    /* background: #ff9800; new dev*/
    background: rgba(255, 165, 0, 0.15);
    /* color: #000; */
    color: #ffb703;
}

/* Arrow */
.service-card .arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 22px;
    color: #ff9800;
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover .arrow {
    opacity: 1;
}

/* Responsive */
@media(max-width: 991px) {
    .services-title {
        font-size: 32px;
    }
}

@media(max-width: 575px) {
    .services-section {
        padding: 10px 0;
    }
}

/* =========================
   PROCESS SECTION – WHITE
========================= */

.process-section {
    background: #fff;
    padding: 75px 0;
}

.work-process-section {
    background: #fff;
    padding: 0 0 75px;
}

/* Header */
.process-header {
    max-width: 750px;
    margin: 0 auto 40px;
}

.process-subtitle {
    color: #ff9800;
    font-size: 18px;
    letter-spacing: 2px;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}

.process-title span {
    color: #ff9800;
}

.process-desc {
    color: #000;
    font-size: 18px;
}

/* Timeline Wrapper */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Full Connecting Line */
.timeline-line {
    position: absolute;
    top: 55px;
    /* ⬅ circle center */
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background: linear-gradient(to right, #ff9800, #ffb703);
    z-index: 1;
}

/* Step */
.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 16.66%;
    padding: 0 10px;
}

/* Circle */
.process-circle {
    width: 100px;
    /* ⬅ bigger */
    height: 100px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #f7f7f7;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-circle i {
    font-size: 30px;
    color: #ff9800;
}

/* Step number INSIDE circle */
.step-no {
    position: absolute;
    bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #ff9800;
}

/* Text */
.process-step h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 16px;
    color: #777;
}

/* Hover */
.process-step:hover .process-circle {
    border-color: #ff9800;
    background: #fff;
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.25);
    transform: translateY(-6px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        width: 50%;
    }
}

@media(max-width: 575px) {
    .process-step {
        width: 100%;
    }

    .process-title {
        font-size: 32px;
    }
}

/* =========================
   ABOUT SECTION – WHITE
========================= */

.about-modern {
    background: #f5f5f5;
    padding: 4rem 0;
}

/* LEFT CONTENT */
.about-subtitle {
    color: #ff9800;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-title {
    font-size: 44px;
    font-weight: 700;
    margin: 15px 0 25px;
    line-height: 1.2;
    color: #111;
}

.about-title span {
    color: #ff9800;
}

.about-modern p {
    text-align: justify;
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #ffa726;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   STATS GRID
========================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #f5a623, #ffcc70);
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #eee;
    transition: 0.35s ease;
}

.stat-card i {
    font-size: 34px;
    color: white;
    display: block;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 46px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-card span {
    font-size: 16px;
    color: #ffffff;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.18);
    background: white
}

.stat-card:hover i,
.stat-card:hover h3,
.stat-card:hover span {
    color: #f5a623 !important;
}

.aboutcounter::after {
    content: " +";
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {
    .about-title {
        font-size: 36px;
    }

    .stats-grid {
        margin-top: 20px;
    }
}

@media(max-width: 575px) {
    .about-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== FEATURE SECTION FIX ===== */

.feature-bg {
    background: #fff;
}

/* Ensure equal left-right space */
.feature-bg .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Image wrapper */
.feature-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image itself */
.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Prevent image touching screen edge */
@media (min-width: 992px) {
    .feature-image-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Mobile spacing */
@media (max-width: 991px) {
    .feature-image-wrapper {
        margin-top: 40px;
    }
}


/* =========================
   CTA SECTION – WHITE VERSION
========================= */

.cta-section {
    background: #ffffff;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

/* CTA Box */
.cta-box {
    position: relative;
    padding: 80px 40px;
    border-radius: 28px;

    /* 🌟 Warm premium gradient */
    /* background: linear-gradient(
        135deg,
        #fff7e6 0%,
        #ffffff 40%,
        #fff1d6 100%
    ); */
    background: linear-gradient(135deg, #ffe38e 0%, #f7eac3 40%, #e6ca79 100%);

    /* background: linear-gradient(135deg, #fceaae 0%, #ffdb6d 35%, #f1b911b3 65%, #f3be43e0 100%); */

    border: 1px solid rgba(255, 165, 0, 0.35);
    /* box-shadow:
        0 20px 50px rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.6); */
    box-shadow: 0 20px 50px rgb(0 0 0 / 3%), inset 0 0 0 1px rgb(255 255 255 / 0%);
}

/* Heading */
.cta-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    /* ✅ dark text */
    margin-bottom: 20px;
}

.cta-box h2 span {
    color: #ff9800;
}

/* Description */
.cta-box p {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Buttons */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Primary Button */
.btn-cta.primary {
    background: #ff9800;
    color: #000;
}

.btn-cta.primary:hover {
    background: #ffb703;
    transform: translateY(-3px);
}

/* Outline Button */
.btn-cta.outline {
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    color: #111;
    background: transparent;
}

.btn-cta.outline:hover {
    border-color: #ff9800;
    color: #ff9800;
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {
    .cta-box h2 {
        font-size: 36px;
    }
}

@media(max-width: 575px) {
    .cta-box {
        padding: 60px 20px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 15px;
    }
}

/* =========================
   PREMIUM FOOTER
========================= */
/* ===== SERVICES CENTER ALIGN ===== */
.footer-services-wrap {
    text-align: center;
}

/* Grid with centered items */
.footer-services {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 10px 40px;
    padding: 0;
    margin-top: 20px;
}

/* Each li center aligned */
.footer-services li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

/* Icon style */
.footer-services .icon {
    color: #ff9800;
    font-size: 18px;
    font-weight: bold;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 575px) {
    .footer-services {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.footer-links li.active a {
    color: #ffc107;
    font-weight: 600;
}

/* Common icon list */
.footer-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-icon-list li {
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-icon-list .icon {
    color: #ff9800;
    /* brand color */
    font-size: 18px;
    font-weight: bold;
    margin-right: 0.3rem;
}

/* Services in 2 columns */
/* .footer-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 2px;
} */

/* Mobile – single column */
@media (max-width: 575px) {
    .footer-services {
        grid-template-columns: 1fr;
    }
}

/* ================= QUICK LINKS CENTER ================= */
.footer-links-wrap {
    text-align: center;
}

.footer-links-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 20px; */
}

.footer-links-center li {
    display: flex;
    margin-bottom: 10px;
    width: 160px;
    /* SAME WIDTH FOR ALL */
    margin-bottom: 10px;
}

.footer-links-center a {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center whole row */
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.footer-links-center .icon {
    color: #ff9800;
    font-size: 18px;
    width: 12px;
    /* 🔑 icon fixed width */
    text-align: center;
}

.premium-footer {
    /* background: linear-gradient(180deg, #111, #0b0b0b); */
    /* background-color: #051922; */
    background: #051922a8;
    color: #aaa;
    padding-top: 30px;
}

/* Brand */
.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    /* margin: 20px 0; */
    margin: 20px 30px 20px 0;
    color: #fff;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo span {
    background: #ffa000;
    color: #000;
    font-weight: 700;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo h4 {
    color: #fff;
    margin: 0;
}

.brand-logo h4 span {
    color: #ffa000;
}

/* Titles */
.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    /* margin-bottom: 10px; */
    color: #fff;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 4px;
}


/* Contact */
.footer-links.no-anchor {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links.no-anchor li {
    display: block;
    /* 🔥 each item new line */
    color: #fff;
    font-size: 15px;
    /* cursor: pointer; */
    margin-bottom: 1px;
    position: relative;
    width: fit-content;
    /* hover only on text */
    transition: color 0.3s ease;
}

.footer-links.no-anchor li:hover {
    /* color: #ffc107; */
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-contact i {
    color: #ffa000;
    font-size: 18px;
}

.footer-contact a {
    color: #fff;
}

.footer-contact a:hover {
    color: #ffc107;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    /* background: rgba(255,255,255,0.08); */
    background: #ffa000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    /* background: #ffa000; */
    background: rgba(255, 255, 255, 0.08);
    /* color: #000; */
    color: #fff;
}

.footer-bottom-line {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-top: 60px; */
    padding: 10px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffa000;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 767px) {
    .footer-col {
        margin-bottom: 40px;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 8px;
    }
}
















/* Hide left image cleanly */
.auth-modal-left {
    display: none;
}

/* Right side full width */
#authModal .col-md-7 {
    width: 100%;
}

/* Glass modal */
#authModal .modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

#authModal .modal-header {
    border-bottom: none;
    padding: 24px 30px 10px;
}

#authModal .modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

#authModal .modal-body {
    padding: 0;
}

#authModal .p-4 {
    padding: 30px 40px !important;
}

#authModal .form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

#authModal .form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.25);
    background: #fff;
}

#authModal .btn-dark {
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff9800, #ffb703);
    color: #000;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

#authModal .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

/* Password wrapper fix */
.password-wrapper {
    position: relative;
}

/* Eye icon always center */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    font-size: 18px;
}

/* Reserve space for error message */
.password-wrapper+.text-danger,
.form-control+.text-danger {
    display: block;
    min-height: 18px;
    /* 🔥 space reserve */
    margin-top: 6px;
    font-size: 13px;
}

.password-toggle {
    color: #999;
}

.password-toggle:hover {
    color: #ff9800;
}

.password-wrapper {
    position: relative;
}

/* Eye icon NEVER depends on content */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 26px;
    /* 🔥 exact half of 52px */
    transform: translateY(-50%);
    z-index: 10;
}


.auth-switch {
    margin-top: 18px;
    font-size: 14px;
}

.auth-switch a {
    color: #ff9800;
    font-weight: 700;
}

.auth-switch a:hover {
    text-decoration: underline;
}

@media(max-width: 575px) {
    #authModal .p-4 {
        padding: 25px 20px !important;
    }

    #authModal .modal-title {
        font-size: 20px;
    }
}

.social-login {
    margin-bottom: 18px;
    text-align: center;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    height: 50px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* Webkit Browsers scroll bar thin */
.modal-body::-webkit-scrollbar {
    width: 6px;
    /* 🔥 thin */
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}

/* User Dashboard */
.accordion-button:focus {
    box-shadow: none;
}

/* ================= DASHBOARD LAYOUT ================= */
.dashboard-wrapper {
    max-width: 1300px;
    margin: auto;
}

/* ================= SIDEBAR ================= */
.dashboard-sidebar {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 110px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MENU */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.sidebar-menu a i {
    font-size: 18px;
    color: #ff9800;
}

/* Hover */
.sidebar-menu a:hover {
    background: #fff3e0;
    color: #ff9800;
}

/* Active */
.sidebar-menu li.active a {
    background: linear-gradient(135deg, #ff9800, #ffb703);
    color: #000;
    font-weight: 600;
}

.sidebar-menu li.active a i {
    color: #000;
}

/* ================= CONTENT ================= */
.dashboard-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .dashboard-sidebar {
        position: static;
    }

    .mission_img {
        margin: 30px !important;
    }

}

@media (max-width: 575px) {
    .dashboard-content {
        padding: 20px;
    }
}

/* vision mission design */
.vision_img {
    padding: 20px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mission_img {
    padding: 20px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* SECTION */
.mv-section {
    /* background: #eef2f5; */
    padding: 40px 20px 80px;
}

/* GRID */
.mv-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

/* WRAPPER (for bottom shape) */
.mv-wrapper {
    position: relative;
}

/* CARD */
.mv-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px 35px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* ICON */
.mv-icon {
    font-size: 4rem;
    /* margin-bottom: 20px; */
}

/* TITLE */
.mv-card h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* TEXT */
.mv-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* BOTTOM SHAPE BASE */
.mv-wrapper::after {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 120px;
    border-radius: 0 0 100px 100px;
    z-index: 1;
}

/* MISSION COLOR */
.mv-wrapper.mission::after {
    background: linear-gradient(135deg, #f5a623, #ffcc70);
}

/* VISION COLOR */
.mv-wrapper.vision::after {
    background: linear-gradient(135deg, #3b6cb7, #6ea1ff);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .mv-wrapper::after {
        width: 95%;
        height: 110px;
    }
}

/* testimonial */

.testimonial-section {
    background: linear-gradient(135deg, #f5a623, #ffcc70);
    padding: 60px 20px;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.testimonial-left {
    flex: 1;
}

.testimonial-left h2 {
    font-size: 22px;
    font-weight: 400;
    color: #333;
}

/* RIGHT CARD */
.testimonial-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 22px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.testimonial-card .title::after {
    content: "";
    height: 4px;
    width: 60%;
    background: #ffd97a;
    position: absolute;
    bottom: -6px;
    left: 20%;
}

.testimonial-card .nav-arrows {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* transform: translateY(-50%); */
    pointer-events: none;
    position: relative;
}

.testimonial-card .nav-arrows .arrow {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    pointer-events: auto;
    padding: 8px 12px;
    user-select: none;
    margin: 5px;
}


/* PROFILE */
.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 5px 0 10px auto;
}

.testimonial-card h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.location {
    font-size: 14px;
    color: #777;
}

/* STARS */
.stars {
    color: #ffc107;
    font-size: 18px;
    margin: 10px 0;
}

/* CONTENT */
.content {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

/* ARROWS */
.nav-arrows {
    display: flex;
    justify-content: space-between;
}

.nav-arrows .arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a623, #ffcc70);
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    font-weight: 700;
    cursor: pointer;

    /* 🔥 KEY FIX */
    line-height: 0;
    padding-bottom: 6px;
    /* micro-adjust */
}

.arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffd97a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: #333;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-left h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-left h2 {
        font-size: 22px;
    }
}

/* vision */
.vision_mission_heading {
    color: #F28123;
}

.vision_mission_para {
    font-size: 1.3rem;
}

/* card cart btn */

.single-latest-news {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.news-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 0px 15px 20px;
}

.news-text-box h3 {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-meta {
    font-size: 16px;
    margin-bottom: 8px;
    color: #6c757d
}

.media-price {
    font-size: 18px;
    font-weight: 700;
    color: #f28123;
    /* margin: 6px 0 10px; */
}

.card-actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
}

.card-btn.cart {
    background: #F28123;
    color: #fff;
}

.card-btn.contact {
    background: #ffb100;
    color: #000;
}

.card-btn.read {
    background: transparent;
    color: #f28123;
}

.pricepermonth {
    color: #a0a0a0;
    font-weight: 400;
}



/* ===============================
   HOARDINGS SLIDER
================================ */

.hoarding-slider {
    position: relative;
    padding: 0 40px;
    /* cards la space */
}

.hoarding-slider {
    pointer-events: auto;
}

/* Keep card height perfect */
.swiper-slide {
    height: auto;
    display: flex;
}

/* Arrows */
/* Common arrow */
.hoarding-slider .swiper-button-prev,
.hoarding-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;

    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

    color: #F28123;
    z-index: 20;
    /* 🔥 card var yenar nahi */
}

/* LEFT */
.hoarding-slider .swiper-button-prev {
    left: -22px;
    /* 🔥 container baher */
}

/* RIGHT */
.hoarding-slider .swiper-button-next {
    right: -22px;
    /* 🔥 container baher */
}

/* Arrow icon */
.hoarding-slider .swiper-button-prev::after,
.hoarding-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination dots */
.hoarding-slider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.hoarding-slider .swiper-pagination-bullet-active {
    background: #F28123;
}

/* 🔥 MOST IMPORTANT FIX */
/* .hoarding-slider {
    overflow: visible !important;
} */
@media (max-width: 768px) {

    .hoarding-slider .swiper-button-prev,
    .hoarding-slider .swiper-button-next {
        display: none;
    }
}

/* details page css */
.detail-title {
    color: #F28123 !important;
}














/* ===============================
   FOOTER MOBILE – FULL CENTER FIX
================================ */
@media (max-width: 767px) {

    /* ALL FOOTER COLUMNS CENTER */
    .premium-footer .footer-col {
        text-align: center !important;
    }

    /* ================= BRAND ================= */
    .footer-brand,
    .footer-brand p {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    /* ================= QUICK LINKS ================= */
    .footer-links-center {
        align-items: center !important;
    }

    .footer-links-center li {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* ================= SERVICES ================= */
    .footer-services {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
    }

    .footer-services li {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-services .icon {
        margin-right: 6px;
    }


    /* ================= CONTACT ================= */

    .footer-contact {
        align-items: center !important;
    }

    .footer-contact li {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px;
    }

    .footer-contact a {
        text-align: center !important;
    }

    /* ================= FOOTER BOTTOM ================= */
    .footer-bottom {
        text-align: center !important;
    }

    .footer-brand p {
        margin: 20px 0px 20px 0;
    }
}

.foterhr {
    width: 100px;
    background: #ffa000;
    height: 1.2px;
    margin-top: 7px;
}

.table-campaign {
    background-color: linear-gradient(90deg, #ffb300, #ff9800) !important;
}