@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* --- IJARO EXACT VISUAL RULES & COLORS --- */
:root {
    --font-montserrat: "Montserrat", sans-serif;
    --font-marcellus: "Marcellus", serif;
    --title-color: #101010;
    --white-color: #ffffff;
    --paragraph-color: #222222;
    --primary-color: #000000;
    --secondary-color: #fecc00; /* Ijaro Yellow-Gold */
    --secondary-color-rgb: 254, 204, 0;
    --bg-light: #ffffff;
    --bg-alt: #f9f9f9;
    --border-color: rgba(13, 23, 32, 0.08);
    --border-radius-sm: 14px;
    --border-radius-lg: 26px;
    --transition-smooth: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: var(--font-montserrat);
    background-color: var(--bg-light);
    color: var(--paragraph-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-marcellus);
    font-weight: 400;
    color: var(--title-color);
    margin-bottom: 15px;
}

p {
    margin-bottom: 0;
    color: var(--paragraph-color);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* --- TT-MAGIC-CURSOR --- */
#magic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

#magic-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--secondary-color-rgb), 0.2);
    border-color: transparent;
}

/* --- UTILITY SPACING --- */
.container-fluid.one {
    max-width: 1746px;
    margin: 0 auto;
    padding: 0 4%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

[class*="col-lg-"] {
    flex: 1 1 0;
}

.pt-130 {
    padding-top: 130px;
}
.pb-130 {
    padding-bottom: 130px;
}
.mb-130 {
    margin-bottom: 130px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-20 {
    margin-bottom: 20px;
}
.pl--95 {
    padding-left: 95px;
}
.pr--95 {
    padding-right: 95px;
}

/* Section Titles exactly like Ijaro */
.section-title1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.section-title1 span {
    color: var(--title-color);
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    border-radius: 16px;
    border: 1px solid var(--title-color);
    padding: 7px 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.section-title1 h2 {
    color: var(--title-color);
    font-family: var(--font-marcellus);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 850px;
    text-transform: uppercase;
}

.section-title1.two {
    align-items: flex-start;
    text-align: left;
}

.section-title1.two.white span {
    color: var(--white-color);
    border-color: var(--white-color);
}

.section-title1.two.white h2 {
    color: var(--white-color);
}

/* --- IJARO PRIMARY BUTTON 1 --- */
.primary-btn1 {
    color: var(--white-color);
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 500;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    padding: 18px 35px;
    gap: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 0;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-btn1 svg {
    fill: var(--white-color);
    transition: var(--transition-smooth);
}

.primary-btn1 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--white-color);
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn1:hover {
    color: var(--primary-color) !important;
}

.primary-btn1:hover svg {
    fill: var(--primary-color);
}

.primary-btn1:hover span {
    width: 225%;
    height: 500px;
}

/* Explore Button */
.explore-btn {
    color: var(--title-color);
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.35s;
    white-space: nowrap;
    text-transform: uppercase;
}

.explore-btn svg {
    fill: var(--title-color);
    transition: 0.35s;
}

.explore-btn:hover {
    color: var(--secondary-color);
}

.explore-btn:hover svg {
    transform: rotate(45deg);
    fill: var(--secondary-color);
}

/* --- TOPBAR AREA --- */
.topbar-area {
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 4%;
    display: flex;
    justify-content: flex-end;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-right li {
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    position: relative;
}

.topbar-right li a {
    color: var(--title-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-right li a svg {
    fill: var(--title-color);
    transition: 0.3s;
}

.topbar-right li a:hover {
    color: var(--secondary-color);
}

.topbar-right li a:hover svg {
    fill: var(--secondary-color);
}

/* --- HEADER AREA --- */
.header-area {
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white-color);
}

.header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: var(--white-color);
    z-index: 1000;
    animation: smooth-header 0.5s ease;
}

@keyframes smooth-header {
    0% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.header-logo {
    padding: 14px 30px;
    border-right: 1px solid var(--border-color);
}

.header-logo img {
    max-height: 50px;
}

.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-list a {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--title-color);
    letter-spacing: 0.05em;
    padding: 25px 0;
    display: block;
}

.menu-list a:hover, .menu-list a.active {
    color: var(--secondary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right .header-btn {
    color: var(--white-color);
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 500;
    border-radius: 36px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    gap: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nav-right .header-btn svg {
    fill: var(--white-color);
    transition: 0.6s;
}

.nav-right .header-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--white-color);
    transition: 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-right .header-btn:hover {
    color: var(--primary-color);
}

.nav-right .header-btn:hover svg {
    fill: var(--primary-color);
}

.nav-right .header-btn:hover span {
    width: 225%;
    height: 500px;
}

.mobile-menu-btn {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: var(--title-color);
    transition: var(--transition-smooth);
    display: block;
}

.mobile-menu-btn span {
    position: relative;
    z-index: 1;
}

.mobile-menu-btn::before,
.mobile-menu-btn::after {
    position: absolute;
    left: 9.5px;
}

.mobile-menu-btn::before {
    top: 14px;
}

.mobile-menu-btn::after {
    bottom: 14px;
}

.mobile-menu-btn.active span {
    background-color: transparent;
}

.mobile-menu-btn.active::before {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active::after {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* --- BANNER 1 SECTION --- */
.banner1-section {
    position: relative;
    padding-top: 50px;
}

.banner-top {
    padding-bottom: 60px;
}

.banner-content span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.banner-content h1 {
    font-family: var(--font-marcellus);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

.banner-btn {
    display: flex;
    justify-content: center;
    position: relative;
    width: 140px;
    height: 140px;
}

.banner-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-btn .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateBtn 15s linear infinite;
}

.banner-btn .bg svg {
    fill: var(--primary-color);
}

@keyframes rotateBtn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-btn .btn-content {
    position: relative;
    text-align: center;
    color: var(--white-color);
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.banner-btn .btn-content svg {
    fill: var(--white-color);
    margin-bottom: 5px;
}

.banner-bottom-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--border-color);
}

.banner-bottom-img img {
    width: 100%;
    height: 115%; /* Extra height to support smooth parallax translation */
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter 0.6s ease;
}

.banner-bottom-img:hover img {
    filter: brightness(1);
}

/* Card image styling and scaling */
.eg-card3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.eg-card3:hover .eg-card3-img img {
    transform: scale(1.08);
}

.banner-right-content p {
    font-size: 17px;
    color: var(--paragraph-color);
    line-height: 1.8;
}

/* --- BANNER 3 SECTION - CARDS --- */
.banner3-section {
    position: relative;
}

.eg-slider-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eg-card3 {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.eg-card3:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--secondary-color);
}

.eg-card3-img {
    height: 220px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eg-card3-img i {
    font-size: 4.5rem;
    color: var(--paragraph-color);
    opacity: 0.25;
}

.eg-card3:hover .eg-card3-img i {
    color: var(--secondary-color);
    opacity: 0.9;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catgory-and-title {
    margin-bottom: 15px;
}

.catgory-and-title a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.catgory-and-title h5 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.card-tags span {
    font-size: 11px;
    background: var(--bg-alt);
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

/* --- SOLUTION SECTION (Why Choose Us) --- */
.solution-section {
    position: relative;
}

.eg-card-2 {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    position: relative;
    height: 100%;
    transition: var(--transition-smooth);
}

.eg-card-2:hover {
    background-color: var(--white-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.eg-card-2 .sl-no h3 {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    font-family: var(--font-montserrat);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

.eg-card-2:hover .sl-no h3 {
    color: rgba(var(--secondary-color-rgb), 0.15);
}

.eg-card-2 .icon {
    font-size: 22px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.eg-card-2:hover .icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.eg-card-2 .content h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.eg-card-2 .content p {
    font-size: 14px;
    color: var(--paragraph-color);
}

/* --- COVER SECTION (Workshops / Supply map) --- */
.cover-section {
    position: relative;
}

.slider-btn-group .slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background-color: var(--white-color);
}

.slider-btn-group .slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-btn-group .slider-btn:hover svg {
    fill: var(--white-color);
}

/* --- ABOUT SECTION 2 (CSR & Stats) --- */
.about-section2 {
    background-color: #0d1720; /* Dark slate background */
    padding: 100px 0;
    position: relative;
}

.about-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.review-and-feature {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features li {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.about-img {
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.about-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.counter-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.single-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-counter .icon {
    font-size: 32px;
    color: var(--secondary-color);
}

.single-counter .content .number {
    display: flex;
    align-items: baseline;
}

.single-counter .content .number h2 {
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
}

.single-counter .content .number span {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-left: 2px;
}

.single-counter .content p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
}

.testimonial-card span {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- CONTACT FORM (contect-section6) --- */
.contact-form-area {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 50px;
}

.form-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-inner label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--title-color);
}

.form-inner input, .form-inner select, .form-inner textarea {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    color: var(--title-color);
    outline: none;
    transition: var(--transition-smooth);
}

.form-inner input:focus, .form-inner select:focus, .form-inner textarea:focus {
    border-color: var(--secondary-color);
}

/* --- FOOTER AREA --- */
footer {
    background-color: #0d1720;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
    padding-bottom: 60px;
}

.footer-widget .logo {
    margin-bottom: 25px;
}

.footer-widget .logo .logo-symbol {
    background-color: var(--secondary-color);
}

.footer-widget .logo span {
    color: var(--white-color);
}

.footer-widget p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

.widget-title h3 {
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.menu-container ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-container ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: 0.3s;
}

.menu-container ul li a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-btm {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-btm a {
    color: var(--secondary-color);
}

/* --- MOBILE RESPONSIVE ADAPTATION --- */

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
    /* Header: single row with logo left, hamburger right */
    .header-area {
        padding: 0 16px 0 0;
        flex-wrap: nowrap;
        gap: 0;
    }
    .header-logo {
        padding: 12px 16px;
        border-right: none;
        flex-shrink: 0;
    }
    .menu-wrap {
        flex: 1;
        justify-content: flex-end;
        padding: 0 4px;
    }
    /* Hide desktop nav & Get in Touch button */
    .menu-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 30px;
        gap: 0;
        z-index: 100;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }
    .menu-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 14px 0;
    }
    .menu-list li:last-child {
        border-bottom: none;
    }
    .menu-list a {
        padding: 0;
        font-size: 16px;
    }
    .menu-list.open {
        left: 0;
    }
    /* Hide "Get in Touch" pill on mobile */
    .nav-right .header-btn {
        display: none !important;
    }
    /* Show hamburger with proper size & touch target */
    .mobile-menu-btn {
        display: flex;
        margin-left: 12px;
        flex-shrink: 0;
    }

    /* Banner top: stack heading + explore button */
    .banner1-section {
        padding-top: 16px;
    }
    .banner-top {
        padding-bottom: 30px;
    }
    .banner-top .row,
    .banner-top [class*="container"] .row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        justify-content: flex-start !important;
    }
    .banner-content {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    .banner-btn {
        flex-shrink: 0;
        width: 110px !important;
        height: 110px !important;
        align-self: flex-start;
    }
    .banner-btn .bg svg,
    .banner-btn > a > .bg > svg {
        width: 110px !important;
        height: 110px !important;
    }

    /* Banner bottom: stack image + text */
    .banner-bottom .row,
    .banner-bottom [class*="container"] .row {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .banner-bottom .col-lg-7,
    .banner-bottom .col-lg-5 {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
    }
    .banner-bottom-img {
        height: 300px !important;
    }

    /* Card grids: 2 columns on tablet */
    .eg-slider-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* About, network, logistics: stack columns */
    .about-section2 .row,
    .solution-section .row {
        flex-direction: column;
        gap: 30px;
    }
    [class*="col-lg-"] {
        flex: 1 1 100% !important;
        min-width: unset;
    }

    /* Why choose us 3-col grid → 2 col */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Reset large padding */
    .pl--95 { padding-left: 15px !important; }
    .pr--95 { padding-right: 15px !important; }
    .mb-130 { margin-bottom: 60px !important; }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .topbar-area {
        justify-content: center;
        padding: 8px 4%;
    }
    .topbar-right {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .topbar-right li a span { display: none; } /* keep icon only */

    /* Heading sizes */
    .banner-content h1 {
        font-size: 28px !important;
        line-height: 1.25;
    }
    .section-title1 h2 {
        font-size: 26px !important;
    }

    /* Explore badge button */
    .banner-btn {
        width: 90px !important;
        height: 90px !important;
    }
    .banner-btn .bg svg,
    .banner-btn > a > .bg > svg {
        width: 90px !important;
        height: 90px !important;
    }
    .banner-btn .btn-content {
        font-size: 9px !important;
    }

    /* Banner image shorter */
    .banner-bottom-img {
        height: 240px !important;
    }

    /* Cards single column */
    .eg-slider-wrap {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .eg-card-2, .eg-card3 {
        min-width: 100%;
    }

    /* Contact form */
    .contact-form-area {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-top .row {
        flex-direction: column;
        gap: 30px;
    }
    .footer-btm {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Stats counter: stack vertically */
    .counter-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Topbar: hide long text keep icons */
    .card-tags span { font-size: 12px; }

    /* Hide magic cursor on touch */
    #magic-cursor { display: none !important; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 22px !important;
    }
    .section-title1 h2 {
        font-size: 22px !important;
    }
    .banner-btn {
        width: 75px !important;
        height: 75px !important;
    }
    .banner-btn .bg svg,
    .banner-btn > a > .bg > svg {
        width: 75px !important;
        height: 75px !important;
    }
    .banner-top .row,
    .banner-top [class*="container"] .row {
        gap: 10px !important;
    }
    .primary-btn1 {
        padding: 14px 22px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* Custom Double Circle Background for Titles */
.custom-icon-circles {
    position: relative;
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
}
.custom-icon-circles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color); /* Navy blue/black */
    border-radius: 50%;
}
.custom-icon-circles::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 55px;
    height: 55px;
    border: 1px solid var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

