/* ------------------------------------------------ */
/*                     FONTS                        */
/* ------------------------------------------------ */

@font-face {
    font-family: herofont;
    src: url(/fonts/BonaNovaSC-Regular.ttf);
}

@font-face {
    font-family: navfont;
    src: url(/fonts/Rajdhani-Medium.ttf);
}

@font-face {
    font-family: herofont2;
    src: url(/fonts/Ruwudu-Medium.ttf);
}

@font-face {
    font-family: hero;
    src: url(/fonts/BonaNovaSC-Italic.ttf);
}

body{
    overflow-x: hidden;
}

/* ------------------------------------------------ */
/*                     HERO                       */
/* ------------------------------------------------ */





/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-businessman {
        width: 360px;
        right: 60px;
    }
}

@media (max-width: 768px) {

    .hero-businessman {
        width: 290px;
        right: 20px;
    }

    .hero-text {
        left: 40px;
        top: 420px;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}

/* ---------------- ABOUT SECTION ---------------- */

.about-section {
    margin-top: -70px;
    padding: 70px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Left side */
.about-left {
    width: 50%;
}

.about-left h2 {
    font-size: 48px;
    font-family: herofont;
    margin-bottom: 20px;
    color: #222;
}

.about-left h2 span {
    color: #d40000;
}

.about-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
    font-family: navfont;
}

/* Highlight cards */
.about-highlights {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-card {
    background: white;
    padding: 20px 18px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #d40000;
    transition: 0.4s eas;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #d40000;
    font-family: navfont;
}

.highlight-card p {
    font-size: 14px;
    color: #555;
}

/* Right side image */
.about-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.about-image-card {
    width: 90%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transition: 0.5s ease;
}

.about-image-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trusted badge */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #d40000;
    padding: 10px 20px;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-family: navfont;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-image-card {
        width: 100%;
    }
}

/* ------------------------------------------------ */
/*          RED & WHITE GLASSMORPHISM BG            */
/* ------------------------------------------------ */

.about-section {
    margin-top: 10px;
    padding: 60px 8%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    overflow: visible;
}

/* GLASS CARD BACKDROP */
.glass-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0px 8px 35px rgba(212, 0, 0, 0.25);
    z-index: 1;
}

/* Ensure content is above background */
.about-left,
.about-right {
    position: relative;
    z-index: 3;
}

/* HEADINGS */
.about-left h2 {
    font-size: 48px;
    font-family: herofont;
    margin-bottom: 18px;
    color: #222;
}

.about-left h2 span {
    color: #d40000;
}

/* TEXT */
.about-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
    font-family: navfont;
}

/* HIGHLIGHT CARDS */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
    box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0px 10px 30px rgba(212, 0, 0, 0.25);
}

/* TEXT INSIDE CARD */
.highlight-card h3 {
    font-size: 20px;
    color: #d40000;
    margin-bottom: 6px;
    font-family: navfont;
}

.highlight-card p {
    font-size: 14px;
    color: #444;
}

/* RIGHT IMAGE SIDE */
.about-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.about-image-card {
    width: 90%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transition: 0.45s ease;
}

.about-image-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* TRUST BADGE */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #d40000;
    padding: 10px 22px;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    font-family: navfont;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 6%;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------ */
/*           BUSINESSMEN SERVICES SECTION           */
/* ------------------------------------------------ */

.business-services {
    margin-top: 30px;
    padding: 60px 8%;
    position: relative;
    text-align: center;
}

/* Glass Background */
.bs-glass {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 35px rgba(212,0,0,0.18);
    z-index: 1;
}

/* Header */
.bs-header {
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}

.bs-header h2 {
    font-size: 48px;
    font-family: herofont;
    color: #222;
}

.bs-header h2 span {
    color: #d40000;
}

.bs-header p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-family: navfont;
}

/* Grid */
.bs-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Cards */
.bs-card {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 35px 25px;
    border: 2px solid rgba(212,0,0,0.4);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: 
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

    text-align: center;
}

/* Card Hover */
.bs-card:hover {
    transform: translateY(-10px);
    border-color: #d40000;
    background: rgba(255,255,255,0.35);
    box-shadow: 0 15px 40px rgba(212,0,0,0.25);
}

/* Icon Box */
.icon-box {
    width: 85px;
    height: 85px;
    border-radius: 18px;
    background: #ffe4e4;

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

    margin: 0 auto 18px;

    transition: 
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Icon Image */
.icon-box img {
    width: 42px;
    transition: filter 0.35s ease;
}

/* Icon Hover Effect */
.bs-card:hover .icon-box {
    background: #d40000;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(212,0,0,0.30);
}

.bs-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

/* Text */
.bs-card h3 {
    margin: 0;
    font-size: 20px;
    font-family: navfont;
    font-weight: 700;
    color: #d40000;
    transition: transform 0.3s ease;
}

.bs-card p {
    margin-top: 8px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    font-family: navfont;
    transition: transform 0.3s ease;
}

/* Text Hover Lift */
.bs-card:hover h3,
.bs-card:hover p {
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 900px) {
    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .bs-grid {
        grid-template-columns: 1fr;
    }
}

/* Hidden cards */
.hidden-card {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

/* View More Button */
.view-btn-wrapper {
    margin-top: 35px;
    position: relative;
    z-index: 5;
}

.view-more-btn {
    padding: 14px 28px;
    background: #d40000;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: navfont;
    font-size: 16px;
    cursor: pointer;
    transition: 0.35s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #b80000;
    box-shadow: 0px 8px 25px rgba(212,0,0,0.35);
}

/* Slide animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ============================= */
/*       HOLIDAY SECTION         */
/* ============================= */

.holiday-services {
    margin-top: 30px;
    padding: 60px 8%;
    position: relative;
    text-align: center;
    overflow: visible;
}

.holiday-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 35px rgba(212, 0, 0, 0.22);
    z-index: 1;
}

/* HEADER */
.holiday-header {
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}

.holiday-header h2 {
    font-size: 48px;
    font-family: herofont;
    color: #222;
}

.holiday-header h2 span {
    color: #d40000;
}

.holiday-header p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 17px;
    font-family: navfont;
    color: #444;
}

/* GRID (same as businessmen) */
.holiday-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* HOLIDAY CARD */
.holiday-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    border: 2px solid rgba(212, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.holiday-card:hover {
    transform: translateY(-8px);
    border-color: #d40000;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 40px rgba(212, 0, 0, 0.25);
}

/* IMAGE WRAPPER */
.holiday-img-wrapper {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.holiday-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.holiday-card:hover .holiday-img-wrapper img {
    transform: scale(1.06);
}

/* ICON BOX */
.holiday-icon-box {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 80px;
    height: auto;
    background: white;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: 0.35s ease;
}

.holiday-icon-box img {
    width: 42px;
    transition: filter 0.35s ease;
}

.holiday-card:hover .holiday-icon-box {
    background: #d40000;
    transform: translateY(-4px);
}

.holiday-card:hover .holiday-icon-box img {
    filter: brightness(0) invert(1);
}

/* CONTENT */
.holiday-content {
    padding: 22px 25px;
    text-align: left;
}

.holiday-content h3 {
    font-size: 22px;
    margin: 0;
    font-family: navfont;
    color: #222;
    transition: transform 0.3s ease;
}

.holiday-content p {
    font-size: 15px;
    color: #666;
    margin-top: 6px;
    font-family: navfont;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.holiday-card:hover h3,
.holiday-card:hover p {
    transform: translateY(-3px);
}

/* HIDDEN CARDS */
.holiday-hidden-card {
    display: none;
    opacity: 0;
}

/* SHOW CLASS FOR ANIMATION */
.holiday-hidden-card.show {
    display: block;
    animation: slideDown 0.4s ease forwards;
}

/* BUTTON */
.holiday-view-btn-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 35px;
}

#holidayViewBtn {
    padding: 12px 32px;
    background: #d40000;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: navfont;
    transition: 0.3s ease;
}

#holidayViewBtn:hover {
    background: #b80000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,0,0,0.35);
}

/* ANIMATION */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .holiday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .holiday-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================== */
/*   OUR OTHER DIVISIONS    */
/* ======================== */

.divisions-section {
    margin-top: 30px;
    padding: 60px 8%;
    position: relative;
    overflow: visible;
}

/* Glass background */
.divisions-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 35px rgba(212, 0, 0, 0.18);
    z-index: 1;
}

/* Header */
.divisions-header {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 50px;
}

.divisions-header h2 {
    font-size: 48px;
    font-family: herofont;
    color: #222;
}

.divisions-header h2 span {
    color: #d40000;
}

.divisions-header p {
    margin-top: 10px;
    font-size: 17px;
    font-family: navfont;
    color: #555;
}

/* GRID */
.divisions-grid {
    z-index: 3;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.division-card {
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(212,0,0,0.35);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.35s ease;
}

/* IMAGE */
.division-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* CONTENT */
.division-content {
    padding: 20px;
    text-align: left;
}

.division-content h3 {
    margin: 0;
    font-size: 20px;
    color: #d40000;
    font-family: navfont;
}

.division-content p {
    margin-top: 6px;
    font-size: 14px;
    font-family: navfont;
    color: #444;
}

/* HOVER EFFECTS */
.division-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(212,0,0,0.25);
    background: rgba(255,255,255,0.35);
}

.division-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .divisions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/*         FOOTER            */
/* ========================= */

.footer-section {
    margin-top: 60px;
    padding: 50px 8% 35px;
    position: relative;
    background: transparent;
}

/* Glass Background */
.footer-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 30px rgba(212, 0, 0, 0.18);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Column Styling */
.footer-col h3 {
    font-size: 20px;
    font-family: herofont;
    color: #d40000;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-family: navfont;
}

/* Logo */
.footer-logo img {
    width: 100px;
    margin-bottom: 12px;
}

.footer-logo p {
    max-width: 260px;
    font-size: 15px;
    color: #444;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.footer-socials a img {
    width: 32px;
    filter: grayscale(1) brightness(0.6);
    transition: 0.3s ease;
}

.footer-socials a:hover img {
    transform: translateY(-4px) scale(1.1);
    filter: grayscale(0) brightness(1);
}

/* Bottom copyright */
.footer-bottom {
    position: relative;
    z-index: 5;
    margin-top: 45px;
    text-align: center;
}

.footer-bottom p {
    font-size: 15px;
    color: #555;
    font-family: navfont;
}

.footer-bottom span {
    color: #d40000;
    font-weight: 700;
}

/* Watermark image */
.footer-bottom .watermark-logo {
    height: 70px;
    vertical-align: middle;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.footer-bottom a:hover .watermark-logo {
    transform: scale(1.08);
}

/* Author text styling */
.author-text {
    font-family: hero, sans-serif;
    color: #ffffff;
    font-size: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0; /* Keeps the text entirely invisible */
    pointer-events: none; /* Prevents users from clicking or interacting with it */
    z-index: 9999;
}

/* Responsive */
@media(max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo p {
        margin: 0 auto;
    }
}

@media(max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================= */
/*   WHATSAPP FLOATING BTN   */
/* ========================= */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle at 30% 30%, #5ae890, #25d366 60%, #128c7e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;

    /* HD 3D Bubble Shadow */
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 
                inset 0 6px 12px rgba(255, 255, 255, 0.6), 
                inset 0 -4px 8px rgba(0, 0, 0, 0.15);

    transition: 0.35s ease;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.25)); /* HD icon shadow */
}

/* HOVER EFFECT */
.whatsapp-float:hover {
    transform: scale(1.25) translateY(-6px) rotate(8deg);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.5), 
                inset 0 8px 14px rgba(255, 255, 255, 0.8), 
                inset 0 -4px 8px rgba(0, 0, 0, 0.2);
}

/* Bubble Float Animation */
@keyframes bubbleFloat {
    0% { transform: translateY(0) scale(1); }
    50% { 
        transform: translateY(-10px) scale(1.02); 
        box-shadow: 0 20px 35px rgba(37, 211, 102, 0.3), 
                    inset 0 6px 12px rgba(255, 255, 255, 0.6), 
                    inset 0 -4px 8px rgba(0, 0, 0, 0.15);
    }
    100% { transform: translateY(0) scale(1); }
}

/* BUBBLE APPEAR ANIMATION */
.whatsapp-float.show-bubble {
    opacity: 1;
    pointer-events: auto;
    animation: 
        popInBubble 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        bubbleFloat 3s infinite ease-in-out 0.8s forwards;
}

@keyframes popInBubble {
    0% { opacity: 0; transform: scale(0) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* CLICK POP ANIMATION */
.whatsapp-float.clicked-pop {
    animation: popAndReturn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    pointer-events: none; /* Prevents multiple clicks while popping */
}

@keyframes popAndReturn {
    0% { transform: scale(1.15) translateY(-6px); opacity: 1; }
    15% { transform: scale(1.4) translateY(-10px); opacity: 0; }
    40% { transform: scale(0) translateY(0); opacity: 0; }
    70% { transform: scale(1.15) translateY(0); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
    }
}

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

@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 5%;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right .image-card {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .hero-wrapper {
        padding: 40px 4%;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left .hero-subtext {
        font-size: 15px;
        max-width: 90%;
    }

    .stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .image-card {
        width: 100%;
        height: 320px !important;
    }
}

/* ============================
   BUSINESSMEN SERVICES 
============================ */

.bs-header {
    text-align: center;
    margin-bottom: 50px;
}

.bs-header h2 {
    font-size: 46px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .bs-header h2 {
        font-size: 40px;
    }
    .bs-header p {
        max-width: 80%;
        margin: auto;
    }
}

/* GRID FIX */
@media (max-width: 1024px) {
    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 600px) {
    .bs-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bs-card {
        padding: 25px 20px;
    }

    .bs-header h2 {
        font-size: 32px;
    }
}

/* ==================================
   HIDE NAV LINKS ON MOBILE & TABLET
================================== */

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none !important;
    }

    .navbar {
        justify-content: center !important;
        padding: 12px 20px;
    }

    .center-logo img {
        width: 55px; /* slightly smaller for mobile */
    }
}


/* SOCIAL ICON CENTER FIX FOR MOBILE */
@media (max-width: 768px) {
    .footer-socials {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        gap: 18px;
        width: 100%;
        margin: 0 auto;
    }

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

    .footer-col h3 {
        text-align: center !important;
    }
}



.division-card {
    text-decoration: none;
    color: inherit;
    display: block;
}




/* RESET */
@font-face {
    font-family: hero;
    src: url(BonaNovaSC-Italic.ttf);
}

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

body {
  font-family: Poppins, sans-serif;
  background: #ffffff;
  overflow: hidden; /* loader hides scroll */
}

/* ================= LOADER ================= */

:root {
  --red: #d71920;
  --white: #ffffff;
  --soft-red: rgba(215, 25, 32, 0.15);
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  width: 70%;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0); /* PERFECTLY CENTERED NOW */
}

.status {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  transition: opacity 0.5s ease;
}

/* LINE TRACK */
.track {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--soft-red);
  overflow: visible;
  transition: opacity 0.5s ease;
}

.line {
  position: absolute;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: travel 3.6s ease-in-out infinite;
}

.plane {
  position: absolute;
  left: -30%;
  top: 50%;
  transform: translateY(-50%);
  animation: travel 3.4s ease-in-out infinite;
}

.plane svg {
  width: 22px;
  height: 22px;
  transform: scaleX(-1);
}

@keyframes travel {
  0% { left: -30%; }
  100% { left: 100%; }
}

.fade-out {
  opacity: 0;
}

/* LOADER LOGO */
.logo {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo.show {
  opacity: 1;
  transform: translateY(0);
}

.logo img {
  max-width: 160px;
}



/* ================= HERO SECTION ================= */

.hero {
  height: 100vh;
  width: 100%;
  background: url("/images/hero\ new\ bg\ \(4\).svg") center/cover no-repeat;
  position: relative;
}

/* Logo style */
.logo-img {
  position: absolute;
  width: auto;
  object-fit: contain;
}

/* TOP-LEFT LOGO */
.logo-left {
  top: -11px;
  left: 10px;
  height: 120px;
}

/* TOP-RIGHT LOGO */
.logo-right {
  top: 1px;
  right: -10px;
  transform: rotate(-90deg);
  height: 55px;
}

/* HERO TITLE */
.hero-title {
  position: absolute;
  top: 55%;
  left: 60px;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: left;
  letter-spacing: 1px;
  max-width: 600px;
  font-family: hero;
}

.highlight {
  color: #cc0033;
}

.footer-bottom a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


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

/* MOBILE (0 - 480px) */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    background: url("/images/hero\ bg\ for\ mbile\ 2.png") center/cover no-repeat;
  }

  .logo-left {
    height: 65px;
    top: 15px;
    left: 15px;
  }

  .logo-right {
    height: 40px;
    top: 5px;
    right: -5px;
  }

  .hero-title {
    font-size: 32px;
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
    max-width: 90%;
    line-height: 1.35;
  }

  .loader-inner {
    width: 85%;
  }
}

/* TABLET (481px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .hero {
    height: 75vh; /* Adjusted height for better tablet scaling */
    background-position: center;
  }

  .logo-left {
    height: 100px;
    top: -8px;
  }

  .logo-right {
    height: 55px;
    top: 5px;
  }

  .hero-title {
    font-size: 38px;
    left: 40px;
    top: 55%;
    max-width: 75%;
  }
}

/* LARGE SCREENS (1025px +) */
@media (min-width: 1025px) {
  .logo-left {
    height: 140px;
  }

  .logo-right {
    height: 65px;
  }

  .hero-title {
    font-size: 48px;
    left: 60px;
    top: 55%;
    max-width: 600px;
  }
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #11111100; /* dark background */
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 5px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
    background: darkred;
}