/* ============================================
   BALAR BUILDERS Ã¢â‚¬â€ HOMEPAGE V2
   Premium Real Estate Theme
   Inspired by Lodha & Pramukh
   White & Navy Blue
   ============================================ */

/* ---------- Google Fonts (loaded in header.php) ---------- */
/* Poppins 300-800 + Playfair Display for headings */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --navy: #0b1f3a;
    --navy-dark: #071528;
    --navy-light: #132d52;
    --navy-accent: #1a3a5c;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --cream: #faf8f4;
    --grey-light: #e8e6e1;
    --grey-text: #6b7280;
    --grey-dark: #374151;
    --text-dark: #1f2937;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ---------- Global Overrides ---------- */
body {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    color: var(--navy);
    font-weight: 500;
}

h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif !important;
    color: var(--navy);
}

p {
    font-family: 'Poppins', sans-serif !important;
    color: var(--grey-text);
    line-height: 1.8;
}

a {
    color: var(--navy);
    transition: var(--transition);
}

a:hover {
    color: var(--navy-light);
    text-decoration: none;
}

section {
    padding: 100px 0;
}

/* ---------- Section Labels (Lodha-style) ---------- */
.section-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* ---------- Page Title ---------- */
.page-title {
    font-family: 'Playfair Display', serif !important;
    text-transform: none;
}

.page-title h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.3;
}

/* ---------- Navbar (Static Static Document Flow) ---------- */
.fixed-top {
    position: relative !important;
    width: 100%;
    background: var(--white) !important;
    transition: padding 0.4s ease, background-color 0.4s ease;
    z-index: 1000;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fixed-top .container {
    max-width: 1500px;
    padding: 0 40px;
}

.fixed-top.menu-bg {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.menu-bg .navbar-brand img {
    height: 55px;
}

/* ---------- Our Projects Carousel Nav ---------- */
body #section4 .item.home-projects {
    padding-bottom: 20px !important;
    background: #fff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    position: relative !important;
    display: block !important;
    transition: var(--transition);
}

body #section4 .item.home-projects:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
}

/* Button Styling */
.project-btn-wrap {
    margin-top: 25px;
}

.btn-know-more {
    display: inline-block;
    background: #405090 !important;
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-know-more:hover {
    background: #2e3d7a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ---------- Project Section Redesign (Split Layout) ---------- */
.project-split-container {
    padding-top: 40px;
}

.project-split-row {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    gap: 0;
}

.project-split-row:last-child {
    margin-bottom: 0;
}

.project-split-row:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image-column {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.project-image-column a {
    display: block;
    width: 100%;
}

.project-image-column img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-image-column:hover img {
    transform: scale(1.05);
}

.project-content-column {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 80px;
    position: relative;
}

.project-split-row:nth-child(even) .project-content-column {
    padding-left: 0;
    padding-right: 80px;
}

.project-split-row:nth-child(odd) .project-content-column {
    padding-left: 80px;
    padding-right: 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.status-ongoing {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-completed {
    background-color: #f1f8e9;
    color: #388e3c;
}

.project-name {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    color: var(--navy-accent);
}

.project-location i {
    color: var(--navy);
}

.project-desc {
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 90%;
}

.proj-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.proj-details-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--grey-dark);
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    background-color: #405090;
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(64, 80, 144, 0.2);
    transition: var(--transition);
}

.btn-modern-primary:hover {
    background-color: #2e3d7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(64, 80, 144, 0.3);
}

.btn-modern-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .project-split-row,
    .project-split-row:nth-child(even) {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .project-image-column,
    .project-content-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 !important;
    }

    .project-content-column {
        margin-top: 40px;
    }

    .project-name {
        font-size: 2rem;
    }

    .project-image-column img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .project-btn-wrap {
        text-align: center;
    }

    .btn-know-more {
        display: block;
        width: 100%;
    }
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif !important;
    color: var(--navy) !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    margin: 0 0.2rem;
    transition: var(--transition);
    position: relative;
}

/* Desktop: tighten navbar spacing so underline isn't too far */
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .navbar-light .navbar-nav .nav-link::after {
        bottom: 3px;
    }
}

/* Premium Hover Underline Effect */
.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--navy);
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .active.nav-link::after {
    width: 30px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active.nav-link {
    opacity: 1;
}

/* Ensure links stay dark */
.fixed-top.menu-bg .navbar-light .navbar-nav .nav-link,
.menu-bg .navbar-light .navbar-nav .nav-link,
.fixed-top.menu-bg .nav-link,
.menu-bg .nav-link {
    color: var(--navy) !important;
}

.menu-bg {
    background: var(--white) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
    font-family: 'Poppins', sans-serif !important;
    color: var(--white) !important;
    transition: var(--transition);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hamburger / Toggler Pill Ã¢â€â‚¬Ã¢â€â‚¬ */
.navbar-toggler {
    border: none !important;
    background: #405090 !important;
    padding: 9px 13px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(64, 80, 144, 0.28);
    transition: var(--transition);
    outline: none !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: #2e3d7a !important;
    outline: none !important;
    box-shadow: 0 4px 18px rgba(64, 80, 144, 0.38) !important;
}

.menu-bg .navbar-toggler {
    border: none !important;
    background: #405090 !important;
    box-shadow: 0 2px 10px rgba(64, 80, 144, 0.18);
}

.fa.fa-navicon,
.fas.fa-bars {
    color: var(--white) !important;
    font-size: 1.05rem;
    transition: var(--transition);
}

.menu-bg .fa.fa-navicon,
.menu-bg .fas.fa-bars {
    color: var(--white) !important;
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    margin-top: 15px;
    background: var(--white);
}

.dropdown-item {
    font-family: 'Poppins', sans-serif !important;
    padding: 10px 24px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background-color: var(--cream);
    color: var(--navy);
}

/* ---------- HERO / PRAMUKH-STYLE PREMIUM SLIDER ---------- */
.main-slider {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.slider a {
    min-height: 100vh !important;
    height: 100vh !important;
    padding-top: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    /* Pramukh-style left start */
    overflow: hidden;
    text-decoration: none !important;
}

/* Background Zoom Animation container */
.slider-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Pramukh-style Subtle Overlay */
.slider a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 31, 58, 0.45) 0%,
            rgba(11, 31, 58, 0.15) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.owl-stage-outer{
    height: auto;
}

/* Slider Background Image Mappings */
.slider-bg-zoom.soon-new {
    background-image: url('../images/vatar-industrial-park/001.jpg.jpeg');
    object-fit: cover;
}

/* Vista Regency slide Ã¢â‚¬â€ img-based, full 1920x1080 visible */
.vista-regency-slide {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
}

.vista-regency-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    z-index: 0;
    display: block;
}

/* Specific responsive adjustment for Vista building visibility */
@media (max-width: 1024px) {
    .vista-regency-slide {
        aspect-ratio: 16 / 9;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .vista-regency-slide {
        aspect-ratio: 16 / 9;
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
    }

    /* Mobile slider height fix */
    #hero,
    .main-slider {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        overflow: hidden !important;
    }

    #owl-one,
    #owl-one .owl-stage-outer,
    #owl-one .owl-stage,
    #owl-one .owl-item {
        height: 200px !important;
        min-height: unset !important;
        max-height: 200px !important;
    }

    .slider a {
        height: 200px !important;
        min-height: 200px !important;
    }

    .slider-bg-zoom {
        height: 200px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

.slider-bg-zoom.sub-one {
    background-image: url('../images/gateway-4.jpg');
     object-fit: cover;
}

.slider-bg-zoom.two {
    background-image: url('../images/slider2.png');
     object-fit: cover;
}

.slider-bg-zoom.one {
    background-image: url('../images/slidertwo.jpg');
     object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 70%;
    padding: 0 0 0 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* ---- Eyebrow label ---- */
.hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: 0.1s;
    pointer-events: none;
    margin-bottom: 14px;
}

.owl-item.active .hero-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Animated gold divider ---- */
.hero-rule {
    width: 0;
    height: 1.5px;
    background: var(--gold, #c9a84c);
    margin-bottom: 18px;
    opacity: 0;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    transition-delay: 0.55s;
}

.owl-item.active .hero-rule {
    width: 56px;
    opacity: 1;
}

/* ---- Project name ---- */
.hero-title {
    font-family: 'Marcellus SC', serif !important;
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 22px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.7s;
    pointer-events: none;
}

.owl-item.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Compact title for long names ---- */
.hero-title--compact {
    font-size: 2.6rem;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .hero-title--compact { font-size: 2rem; }
}

@media (max-width: 767px) {
    .hero-title--compact { font-size: 1.6rem; }
}

/* ---- Two-line title variant ---- */
.hero-title--split {
    line-height: 1.05;
}

.hero-title--split .hero-title-sub {
    display: block;
    font-size: 0.52em;
    letter-spacing: 6px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ---- Explore CTA ---- */
.hero-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease, color 0.3s ease;
    transition-delay: 1s;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Animated underline: starts at 30% width (always visible), expands to 100% on hover */
.hero-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 1px;
    background: var(--gold, #c9a84c);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider a:hover .hero-cta::after {
    width: 100%;
}

.slider a:hover .hero-cta {
    color: #fff;
}

.owl-item.active .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero-arrow {
    transition: transform 0.3s ease;
}

.slider a:hover .hero-arrow {
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .slider a {
        min-height: 200px !important;
        height: 200px !important;
    }
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }
}

/* Vertical Dot Indicators (Pramukh Far Right) */
.owl-theme .owl-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: auto;
    z-index: 10;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 8px !important;
    height: 8px !important;
    margin: 10px 0 !important;
    border-radius: 50% !important;
    transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--navy) !important;
    /* Navy branding */
    transform: scale(1.6);
}

@media (max-width: 991px) {
    .owl-theme .owl-dots {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .slider a {
        min-height: 200px !important;
        height: 200px !important;
    }
    .hero-content {
        padding-left: 5%;
        width: 92%;
    }
}

/* Clear Owl Nav */
.owl-theme .owl-nav {
    display: none !important;
}

/* ---------- About / Who We Are (Lodha-style clean) ---------- */
#section2 {
    background-color: var(--white);
    padding: 100px 0 80px;
}

#section2 .page-title h2 {
    text-align: left;
    font-size: 2.8rem;
}

.who-are {
    width: 100%;
    color: var(--grey-text);
    font-size: 1rem;
    line-height: 1.85;
    margin-top: 16px;
}

.border-box {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ---------- Counter / Stats (Lodha-inspired minimal) ---------- */
.counter-container {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #405090 !important;
    font-family: 'Playfair Display', serif !important;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-container span {
    color: var(--grey-text);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif !important;
}

.counter-container.border-right {
    border-right: 1px solid var(--grey-light) !important;
}

/* ---------- Why Choose Us (Card Grid) ---------- */
#section3 {
    background-color: var(--cream);
    padding: 100px 0;
}

.w-choose-card-bg {
    background: var(--cream) !important;
    z-index: auto !important;
}

.w-choose-card-bg::before {
    display: none !important;
}

.w-choose-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 25px !important;
    margin: 0 !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.w-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.w-choose-card h5 {
    color: var(--navy) !important;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 20px 0 8px;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.w-choose-card .icons img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    opacity: 0.85;
}

.why-1,
.why-2 {
    background: none !important;
    z-index: auto !important;
}

/* ---------- Projects Section (Lodha Iconic Properties) ---------- */
#section4 {
    background-color: var(--white);
    padding: 100px 0;
}

#section4 .page-title h2 {
    font-size: 2.8rem;
}

.home-projects {
    padding: 0 10px;
}

.home-projects .row {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.home-projects img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: var(--transition-slow);
}

.home-projects:hover img {
    transform: scale(1.03);
}

.home-projects .col-md-6:first-child {
    overflow: hidden;
}

.page-cant {
    padding: 40px 30px;
}

.page-cant h4 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-cant p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--grey-text);
}

.cont-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cont-info img {
    width: 18px !important;
    height: 18px !important;
    min-height: auto !important;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.cont-info p {
    margin: 0;
    font-size: 0.82rem;
}

.cont-info p a {
    color: var(--grey-text);
    font-weight: 400;
}

.cont-info p a:hover {
    color: var(--navy);
}

/* ---------- Buttons (Lodha-style minimal) ---------- */
.round-black-btn {
    background: #405090 !important;
    color: var(--white) !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-size: 0.72rem !important;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition) !important;
    display: inline-block;
    font-family: 'Poppins', sans-serif !important;
    position: relative;
    overflow: hidden;
}

.round-black-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.round-black-btn:hover,
.round-black-btn:focus {
    background: #2e3d7a !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md) !important;
}

.round-black-btn:hover::after {
    transform: scaleX(1);
}

/* ---------- Testimonial (Dark Navy Overlay) ---------- */
#section5.testimonial-bg {
    background-size: cover !important;
    background-position: center !important;
}

.testimonial-bg {
    z-index: 0 !important;
}

.testimonial-bg::before {
    background-color: rgba(64, 80, 144, 0.93) !important;
    z-index: 0 !important;
}

#section5 {
    position: relative;
    z-index: 1;
}

#section5 .page-title h2 {
    color: var(--white) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem;
}

/* Equal-height owl items */
#owl-th .owl-stage {
    display: flex !important;
    align-items: stretch;
}

#owl-th .owl-item {
    display: flex !important;
}

#owl-th .owl-item .item {
    display: flex;
    width: 100%;
}

.testimonial {
    display: flex;
    flex-direction: column;
    padding: 30px 20px 25px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.testimonial .blockquote {
    flex: 1;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Playfair Display', serif !important;
    position: relative;
    padding: 15px 55px 15px;
    margin-bottom: 0;
}

.testimonial .blockquote p {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0;
    margin: 0;
    font-family: 'Playfair Display', serif !important;
}

.testimonial small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.78rem;
    margin-top: 20px;
    letter-spacing: 0.8px;
    text-align: center;
    line-height: 1.7;
}

/* ---------- Journey Section ---------- */
/* ====================================================
   OUR JOURNEY  --  Horizontal Scroll Timeline
   ==================================================== */
#journey {
    background: #07152a !important;
    background-color: #07152a !important;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.jy-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.15;
    z-index: 0;
}
.jy-orb-1 { width: 500px; height: 500px; background: #405090; top: -100px; left: -150px; }
.jy-orb-2 { width: 400px; height: 400px; background: #c9a84c; bottom: 0; right: -100px; }

#journey .container { position: relative; z-index: 1; }

/* Header */
.jy-header { margin-bottom: 44px; }

.jy-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
}

.jy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.jy-rule {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #405090, #c9a84c);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.jy-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* Stats strip */
.jy-stats {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 52px;
    flex-wrap: nowrap;
    gap: 0;
}

.jy-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    padding: 0 36px;
    flex: 1;
}

.jy-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 4px;
}
.jy-stat-num sup { font-size: 1rem; vertical-align: super; }

.jy-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.jy-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ---- Horizontal Scroll Track ---- */
.jy-track-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.4) rgba(255,255,255,0.05);
    padding-bottom: 12px;
    cursor: grab;
}

.jy-track-wrap:active { cursor: grabbing; }

.jy-track-wrap::-webkit-scrollbar { height: 4px; }
.jy-track-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 2px; }
.jy-track-wrap::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.45); border-radius: 2px; }

/* The track itself */
.jy-track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 20px 20px;
    min-width: max-content;
    position: relative;
}

/* Horizontal line running through all dots */
.jy-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #405090 4%, #c9a84c 50%, #405090 96%, transparent);
    opacity: 0.7;
    z-index: 0;
}

/* Each stop */
.jy-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.25s;
}

.jy-stop:hover { transform: translateY(-4px); }

/* Dot */
.jy-stop-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a2f50;
    border: 2px solid #405090;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
    z-index: 2;
}

.jy-stop-dot span {
    width: 7px;
    height: 7px;
    background: #405090;
    border-radius: 50%;
    transition: background 0.25s;
}

.jy-stop:hover .jy-stop-dot {
    border-color: #c9a84c;
    transform: scale(1.25);
}
.jy-stop:hover .jy-stop-dot span { background: #c9a84c; }

/* Gold stop (recent) */
.jy-stop-gold .jy-stop-dot {
    border-color: #c9a84c;
    background: rgba(201,168,76,0.1);
    box-shadow: 0 0 12px rgba(201,168,76,0.35);
}
.jy-stop-gold .jy-stop-dot span { background: #c9a84c; }

/* Origin stop */
.jy-stop-dot-origin {
    width: 26px !important;
    height: 26px !important;
    border-color: #c9a84c !important;
    background: rgba(201,168,76,0.15) !important;
    box-shadow: 0 0 0 5px rgba(201,168,76,0.15), 0 0 20px rgba(201,168,76,0.4) !important;
}
.jy-stop-dot-origin span { width: 10px !important; height: 10px !important; background: #c9a84c !important; }

/* Card below dot */
.jy-stop-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid #405090;
    border-radius: 12px;
    padding: 14px 14px 12px;
    width: 100%;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.jy-stop:hover .jy-stop-card {
    background: rgba(255,255,255,0.09);
    border-top-color: #c9a84c;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.jy-stop-gold .jy-stop-card {
    border-top-color: #c9a84c;
    background: rgba(201,168,76,0.06);
}

.jy-stop-origin .jy-stop-card {
    border-top-color: #c9a84c;
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.08);
}

.jy-stop-year {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9a84c;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.jy-stop-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.jy-stop-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    margin: 0;
    line-height: 1.4;
}

/* Scroll hint */
.jy-scroll-hint {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin-top: 18px;
    letter-spacing: 1px;
}
.jy-scroll-hint i { margin-right: 6px; color: rgba(201,168,76,0.5); }

/* Mobile */
@media (max-width: 991px) {
    .jy-stats { padding: 20px 16px; }
    .jy-stat { padding: 8px 20px; }
    .jy-stat-divider { display: none; }
    .jy-title { font-size: 2.2rem; }
    .jy-stop { width: 150px; }
    .jy-stop-name { font-size: 0.78rem; }
}

@media (max-width: 575px) {
    #journey { padding: 60px 0 50px; }
    .jy-title { font-size: 1.9rem; }
    .jy-stats { flex-wrap: wrap; justify-content: space-around; }
    .jy-stat { width: 45%; padding: 10px 8px; }
    .jy-stat-num { font-size: 1.8rem; }
    .jy-stop { width: 140px; }
}
/* ---------- Contact CTA Section ---------- */
#section6.contact-h {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.contact-h {
    padding: 120px 0 !important;
    z-index: 0 !important;
}

.contact-h::before {
    content: none;
}

.contact-h .container {
    position: relative;
    z-index: 1;
}

.contact-h h2 {
    color: var(--white) !important;
    font-size: 2.8rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif !important;
}

.contact-h .round-black-btn {
    background: transparent !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    letter-spacing: 3px;
}

.contact-h .round-black-btn:hover {
    background: var(--white) !important;
    color: var(--navy) !important;
    border-color: var(--white) !important;
    transform: translateY(-2px);
}

.contact-h .round-black-btn::after {
    display: none;
}

/* ---------- Footer ---------- */
footer {
    background: var(--cream);
    border-top: 1px solid var(--grey-light);
}

.footer-link h5 {
    color: #405090 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-link a {
    color: var(--grey-text);
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.88rem;
}

.footer-link a:hover {
    color: var(--navy);
}

.copyright {
    background-color: #405090 !important;
}

/* ---------- Text Overrides ---------- */
.text-danger {
    color: var(--navy) !important;
}

.text-primary {
    color: var(--navy) !important;
}

.title-page {
    color: var(--navy) !important;
}

.color-purple {
    color: var(--navy) !important;
}

.font-lato {
    font-family: 'Playfair Display', serif !important;
    text-transform: none;
}

/* ---------- WOW Animation Fix ---------- */
.wow:first-child {
    visibility: visible !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    /* Fix navbar collapse jitter: keep navbar out of document flow on mobile */
    .fixed-top {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050 !important;
    }

    header {
        height: 60px; /* Reserve space so content doesn't jump under fixed navbar */
    }

    section {
        padding: 60px 0;
    }

    #section2 {
        padding: 80px 0 60px;
    }

    #section3,
    #section4 {
        padding: 70px 0;
    }

    .slider a {
        min-height: 200px !important;
        height: 200px !important;
    }

    .slider a .box {
        width: 80%;
        padding: 0 5%;
    }

    .slider a .box h2 {
        font-size: 2.5rem !important;
    }

    #owl-one .slider-content {
        width: 80%;
        padding: 0 5% !important;
    }

    #owl-one .slider-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .page-title h2 {
        font-size: 2rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .w-choose-card {
        min-height: auto;
        padding: 28px 18px !important;
    }

    .contact-h {
        padding: 80px 0 !important;
    }

    .contact-h h2 {
        font-size: 2rem;
    }

    /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       MOBILE MENU Ã¢â‚¬â€ Full Redesign
       Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
    .navbar-collapse {
        will-change: height;
        overflow: hidden;
    }

    .fixed-top:not(.menu-bg) .navbar-collapse,
    .menu-bg .navbar-collapse {
        background: #ffffff;
        border-radius: 0 0 20px 20px;
        padding: 0 0 16px;
        margin-top: 0;
        box-shadow: 0 24px 48px rgba(11, 31, 58, 0.18);
        border-top: none;
        position: relative;
    }

    /* Gold rule at very top of panel */
    .fixed-top:not(.menu-bg) .navbar-collapse::before,
    .menu-bg .navbar-collapse::before {
        content: '';
        display: block;
        height: 3px;
        background: linear-gradient(90deg, #405090 0%, #c9a84c 100%);
        border-radius: 0;
        margin-bottom: 4px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Each nav row Ã¢â€â‚¬Ã¢â€â‚¬ */
    .navbar-collapse .navbar-nav .nav-link,
    .fixed-top:not(.menu-bg) .navbar-nav .nav-link,
    .menu-bg .navbar-collapse .navbar-nav .nav-link {
        color: var(--navy) !important;
        opacity: 1;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 14px 20px;
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
        display: block;
    }

    /* hide the desktop underline pseudo on mobile */
    .navbar-collapse .navbar-nav .nav-link::after {
        display: none !important;
    }

    .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Hover & active state Ã¢â‚¬â€ gold left bar + navy text  */
    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .active.nav-link {
        color: #405090 !important;
        border-left-color: #c9a84c;
        background: #f7f9ff;
        opacity: 1;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Buyer's Guide dropdown arrow Ã¢â€â‚¬Ã¢â€â‚¬ */
    .navbar-collapse .navbar-nav .dropdown-toggle::after {
        border-top-color: var(--navy);
        float: right;
        margin-top: 6px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Buyer's Guide sub-menu panel Ã¢â€â‚¬Ã¢â€â‚¬ */
    .navbar-collapse .dropdown-menu {
        background: #f7f9ff !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid #405090 !important;
        border-radius: 0 !important;
        margin: 0 0 4px 20px;
        padding: 4px 0;
        position: static !important;
        float: none !important;
        width: auto !important;
    }

    .navbar-collapse .dropdown-item {
        color: #405090 !important;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 11px 20px;
        border-bottom: 1px solid #edf0f8;
        background: transparent;
        transition: all 0.15s ease;
    }

    .navbar-collapse .dropdown-item:last-child {
        border-bottom: none;
    }

    .navbar-collapse .dropdown-item:hover,
    .navbar-collapse .dropdown-item:focus {
        background: #eef1fb !important;
        color: var(--navy) !important;
        padding-left: 28px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Contact item Ã¢â‚¬â€ styled as CTA row Ã¢â€â‚¬Ã¢â€â‚¬ */
    .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
        background: #405090;
        color: #ffffff !important;
        border-left: none;
        border-radius: 10px;
        margin: 10px 16px 4px;
        padding: 13px 20px;
        text-align: center;
        letter-spacing: 2px;
    }

    .navbar-collapse .navbar-nav .nav-item:last-child .nav-link:hover {
        background: #2e3d7a;
        border-left: none;
        color: #ffffff !important;
    }

    .slider-content-2 {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        margin: 20px;
        padding: 30px !important;
    }

    .home-projects img {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .slider a {
        min-height: 200px !important;
        height: 200px !important;
    }

    .slider a .box {
        width: 90%;
        padding: 0 6%;
    }

    .slider a .box h2 {
        font-size: 2.1rem !important;
    }

    .slider a .box h4 {
        font-size: 0.75rem !important;
        letter-spacing: 2px;
    }

    #owl-one .slider-content {
        width: 90%;
    }

    #owl-one .slider-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .counter-container.border-right {
        border-right: none !important;
    }

    .counter-container {
        border-bottom: 1px solid var(--grey-light);
        padding: 25px;
    }

    .counter-container:last-child {
        border-bottom: none;
    }

    .page-cant {
        padding: 25px 20px;
    }

    .page-cant h4 {
        font-size: 1.3rem;
    }

    #section2 .page-title h2,
    #section4 .page-title h2 {
        font-size: 2rem;
    }

    .slider a.soon-new.mobile,
    .slider a.sub-new.mobile {
        display: flex !important;
    }

    .slider a.soon-new.desktop,
    .slider a.sub-new.desktop {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .slider a .box h2 {
        font-size: 1.7rem !important;
    }

    .slider-content-2 {
        padding: 20px !important;
    }

    .w-choose-card .icons img {
        width: 42px;
        height: 42px;
    }

    .w-choose-card h5 {
        font-size: 0.7rem;
    }

    .round-black-btn {
        padding: 12px 28px !important;
        font-size: 0.68rem !important;
    }

    .page-title h2 {
        font-size: 1.8rem;
    }
}

/* ---------- Smooth scroll & Selection ---------- */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--navy);
    color: var(--white);
}

::-moz-selection {
    background: var(--navy);
    color: var(--white);
}

/* ---------- Project slider dots fix for owl-two ---------- */
.project-slider.owl-theme .owl-dots .owl-dot span {
    background-color: var(--grey-light) !important;
}

.project-slider.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--navy) !important;
}

/* === Projects Tabs Ã¢â‚¬â€œ copied from live site design === */
.projects-tabs {
    margin-top: 0px;
    text-align: center;
}

.projects-tabs ul {
    background: #fff;
    border-radius: 50px;
    display: inline-flex;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.projects-tabs .nav-tabs {
    border-bottom: none;
}

.projects-tabs .nav-tabs .nav-item {
    margin: 0 -2px 0 -2px;
}

.projects-tabs .nav-tabs .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    color: #323232 !important;
    padding: 0.5rem 2rem;
    background: #fff;
    border-radius: 50px;
}

/* Home page Ã¢â‚¬â€ mobile: fix section2 layout */
@media (max-width: 767px) {
    #section2 {
        padding: 50px 0 40px !important;
    }
    #section2 .page-title h2 {
        text-align: center;
        font-size: 2rem;
    }
    #section2 .who-are {
        text-align: center;
        font-size: 0.95rem;
    }
    #section2 .mb-2 {
        text-align: center;
    }
    #section2 .col-md-6.col-lg-5 {
        order: -1;
        margin-bottom: 25px;
    }
    #section2 .col-md-6.col-lg-7 {
        order: 1;
    }
    .counter-container {
        padding: 20px 10px;
    }
    .counter-container.border-right {
        border-right: none !important;
        border-bottom: 1px solid var(--grey-light) !important;
    }
}

.projects-tabs .nav-tabs .nav-item .nav-link:hover {
    border: none;
}

.projects-tabs .nav-tabs .nav-item.show .nav-link,
.projects-tabs .nav-tabs .nav-link.active,
.projects-tabs .nav-tabs .nav-link.active:hover {
    border: none;
    color: #fff !important;
    background: rgb(13, 148, 240);
    background: linear-gradient(180deg, rgba(13, 148, 240, 1) 0%, rgba(112, 22, 241, 1) 100%);
}
