:root {
    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --primary: #ffc107;
    --primary-light: #ffdd57;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SMOOTH INTERACTIONS ONLY */
.btn,
.service-card,
.about-card,
.why-item,
.nav-link,
.btn-nav,
.btn-hero-primary,
.btn-hero-outline {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* READABILITY FIX */
p {
    line-height: 1.7;
}

a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* GLOBAL */
html,
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    cursor: default;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    width: 100%;
}

@media(min-width:1400px) {
    body {
        cursor: default;
    }
}

/* DOT */
.cursor-dot,
.cursor-outline {
    display: block;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    z-index: 10001;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* OUTLINE */
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* HOVER EFFECT */
.cursor-hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(255, 193, 7, 0.2);
}

/* BUTTON */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

/* SHOW */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER */
#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* NAVBAR BASE */
.navbar {
    position: relative;
    z-index: 1100;
}

.navbar,
.navbar .container,
.navbar .row {
    overflow: visible !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 14px 0;
}

/* SCROLL EFFECT */
.navbar.scrolled {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 8px 0;
}

/* BRAND */
.navbar img {
    display: block;
    width: 50px;
    height: auto;
}

/* LINKS */
.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
}

.navbar-nav .nav-link i {
    font-size: 15px;
    display: flex;
    align-items: center;
}

/* ACTIVE LINK */
.navbar-nav .nav-link.active {
    background: rgba(255, 193, 7, 0.12);
    color: var(--primary) !important;
    font-weight: 600;
}

/* HOVER */
.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* CTA BUTTON */
.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* HOVER */
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* DROPDOWN */
.dropdown-menu {
    margin-top: 15px;
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-md);
    padding: 10px;
}

/* DROPDOWN ITEMS */
.dropdown-item {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
}

/* NESTED DROPDOWN */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 10px;
}


/* ================= MEGA MENU FINAL ================= */
.mega-menu {
    position: relative;
}

.mega-menu-box {
    top: 100%;
    left: 0;

    width: 100%;
    /* 🔥 FIX */
    max-width: 100%;
    /* 🔥 MATCH CONTAINER */

    left: 0;
    transform: none;

    background: #fff;
    padding: 30px 40px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 9999;
}

/* SHOW */
.mega-menu:hover .mega-menu-box {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0);
}

.mega-menu-box .row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* 🔥 more spacing */
}

.mega-menu-box .col-lg-3, .mega-menu-box .col-lg-2 {
    flex: 1;
    min-width: 120px;
    /* 🔥 prevents cut */
}

/* TITLE */
.mega-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0px 10px 0px;
    color: #111;
}

.mega-title a {
    font-size: 16px;
    font-weight: 700;
    color: #111 !important;
	text-decoration: none;
}

/* LINKS */
.mega-list {
    list-style: none;
    padding: 0px 10px 0px;
}

.mega-list li {
    margin-bottom: 12px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #444;
    text-decoration: none;
    font-size: 0.95rem;

    transition: 0.3s;
}

.mega-list li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

/* HERO */
.about-hero,
.services-hero,
.contact-hero,
.careers-hero {

    background:
    linear-gradient(
        135deg,
        rgba(8, 12, 15, 0.9),
        rgba(16, 25, 28, 0.85),
        rgba(28, 45, 52, 0.82)
    ),
    url('../images/about.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #fff;
}

.hero {
    position: relative;

    width: 100%;
    min-height: 90vh;

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

    text-align: center;
    padding: 80px 20px;

    background:
    linear-gradient(
        135deg,
        rgba(8, 12, 15, 0.88),
        rgba(16, 25, 28, 0.82),
        rgba(28, 45, 52, 0.78)
    ),
    url('../images/hero.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;

    background: radial-gradient(circle, rgba(255,193,7,0.2), transparent);
    animation: moveGlow 10s infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 15% 20%,
        rgba(255, 193, 7, 0.18),
        transparent 25%),

        radial-gradient(circle at 85% 80%,
        rgba(255, 215, 0, 0.12),
        transparent 30%),

        radial-gradient(circle at center,
        rgba(255,255,255,0.03),
        transparent 40%);

    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-btn
{
	display: flex;
	justify-content: center; 
	gap: 3px;
	flex-wrap: wrap:
}

@keyframes floatBg {
    0% { transform: translate(0,0); }
    100% { transform: translate(20px,20px); }
}


/* HERO TEXT */
.hero-title {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;
	text-shadow: 0 5px 20px rgba(0,0,0,0.4);
    color: #f8f5ee;

    text-shadow:
        0 4px 20px rgba(0,0,0,0.45),
        0 0 20px rgba(255,193,7,0.08);
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 700px;
    margin: auto;
	text-shadow: 0 3px 10px rgba(0,0,0,0.3);
	color: white;
}

/* TRUST LINE */
.trust-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    margin-top: 15px;
 	color: #ffd54f;
    text-shadow: 0 0 10px rgba(255,193,7,0.25);
    font-weight: 600;
}

/* PRIMARY BUTTON */
.btn-hero-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    text-decoration: none;
	box-shadow:
        0 10px 30px rgba(255,193,7,0.35),
        0 0 25px rgba(255,193,7,0.18);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.6);
}

/* OUTLINE BUTTON */
.btn-hero-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* REMOVE IMAGE DRAG */
img {
    user-select: none;
}

/* OPTIMIZED SECTION SPACING */
.section {
    padding: 40px 0;
}

.section+.section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* TITLE */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* SUBTITLE */
.section-subtitle {
    margin-bottom: 40px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 0.95rem;
}

/* TRUST LINE */
.about-trust {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.15rem;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
    margin-top: 20px;
}

/* CARD */
.service-card,
.about-card {
    display: block;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    text-decoration: none;
    color: #111;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* HOVER */
.service-card:hover,
.about-card:hover {
    transform: translateY(-10px) scale(1.01);
}

/* ICON BOX */
.service-card .icon-box,
.about-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-size: 26px;
    color: #000;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

/* TITLE */
.service-card h5,
.about-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* TAGLINE */
.tagline {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p,
.about-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}

/* LIST */
.service-card ul,
.about-list {
    padding-left: 0;
    list-style: none;
    margin-top: 10px;
}

.service-card ul li,
.about-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-card ul li::before,
.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* CTA */
.service-card .cta {
    margin-top: 15px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.service-card:hover .cta {
    color: var(--primary);
    transform: translateX(5px);
}

/* SIGNATURE */
.why-signature {
    font-weight: 600;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

/* STACK */
.why-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.why-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    align-items: flex-start;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

/* ICON */
.why-item .icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

/* ICON */
.why-item i {
    color: #000000;
    font-size: 18px;
}

/* TEXT */
.why-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* SECTION BG */
.impact-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* BOX */
.impact-box {
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HOVER */
.impact-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

/* NUMBER */
.impact-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* TEXT */
.impact-box p {
    font-size: 0.9rem;
    color: #ddd;
}

/* GLOW EFFECT */
.impact-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent);
    top: -100px;
    left: -100px;
    animation: moveGlow 8s infinite alternate;
}

.impact-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    bottom: -80px;
    right: -80px;
    animation: moveGlow 10s infinite alternate;
}

/* IMAGE */
.faq-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* ACCORDION */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* BUTTON */
.faq-accordion .accordion-button {
    font-weight: 500;
    padding: 16px;
    background: #fff;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
}

/* BODY */
.faq-accordion .accordion-body {
    background: #fff;
    font-size: 0.92rem;
    color: #555;
    padding: 15px 18px;
}

/* SECTION */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2f3);
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.info-item i {
    background: var(--primary);
    padding: 10px;
    border-radius: 50%;
}

/* CTA BUTTON */
.btn-contact {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    padding: 14px 25px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover,
.btn-nav:hover {
    filter: brightness(1.05);
}

/* CARD */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* FORM GROUP */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

/* INPUT */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255,193,7,0.2);
}

/* LABEL */
.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 13px;
    color: #777;
    pointer-events: none;
    transition: 0.3s;
    background: #fff;
    padding: 0 5px;
}

/* FLOAT */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 11px;
    color: #ffc107;
}

/* ERROR */
.error-text {
    color: red;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* BUTTON */
.btn-premium {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

/* LOADER */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

/* SUCCESS */
.form-success {
    display: none;
    margin-top: 15px;
    color: green;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 45px 0 15px;
}

.footer h5,
.footer h6 {
    color: #fff;
    margin-bottom: 15px;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--primary);
}

/* SOCIAL */
.social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

/* FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 20px;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* about us page */

/* ABOUT HERO */
.about-hero,
.services-hero,
.careers-hero,
.contact-hero {
    min-height: 60vh;
    padding: 80px 20px;
}

/* TITLE */
.about-hero-title,
.services-hero-title,
.careers-title {
    font-size: 2.6rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* SUBTITLE */
.about-hero-subtitle,
.services-hero-subtitle,
.careers-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto 15px;
}

/* SUPPORT LINE */
.about-hero-support,
.services-hero-support,
.careers-support {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* BUTTONS */
.about-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.premium-highlight {
    background: #ffffff; /* ✅ WHITE BACKGROUND */
    border-radius: 20px;
    padding: 70px 20px;
}

/* GRID */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

/* CARD */
.highlight-card {
    padding: 18px 20px;
    border-radius: 12px;

    background: #fff;
    border: 1px solid #eee;

    color: #444;
    font-size: 14.5px;
    line-height: 1.6;

    transition: all 0.3s ease;
}

/* HOVER (PREMIUM EFFECT) */
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #ffc107;
}

/* MAIN LINE */
.highlight-main {
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;

    /* ✨ PREMIUM STYLE */
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;

    background: linear-gradient(90deg, #fff8e1, #fff);
    border: 1px solid #ffc107;

    color: #111;

    box-shadow: 0 6px 20px rgba(255,193,7,0.25);

    transition: 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.highlight-main:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,193,7,0.35);
}

/* TITLE */
.section-title {
    color: #111;
    font-weight: 600;
}

.highlight-card {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(120deg, transparent, #ffc107, transparent) border-box;
    border: 1px solid transparent;
}

.senior-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;

    background: #fff;
    border: 1px solid #ffc107;
	color: #000;

    padding: 10px 14px;
    border-radius: 30px;

    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    z-index: 999;
}

/* 🔥 ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* SECTION Background White*/
.about-page,
.careers-intro,
.what-we-do,
.why-about,
.services-intro-advanced,
.financial-services,
.taxation-services,
.business-services,
.why-services,
.careers-jobs,
.why-split {
    background: #fff;
}

/* SECTION Background Ash*/
.careers-why,
.services,
.dropdown-item:hover,
.hiring-process,
.faq-section {
    background: #f8f9fa;
}

/* IMAGE */
.about-img,
.intro-img img,
.career-img img,
.life-img,
.why-img img,
.why-image img,
.why-services-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: 0.4s;
}

.about-img:hover,
.intro-img img:hover,
.career-img img:hover,
.faq-image img:hover,
.why-img img:hover,
.why-services-img img:hover {
    transform: scale(1.03);
}

/* CARDS */
.about-box,
.financial-card,
.tax-card,
.business-card,
.what-card, 
.registration-card {
	background: rgba(255,255,255,0.03);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: 20px;
    text-align: left;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}


.about-box:hover,
.financial-card:hover,
.tax-card:hover,
.business-card:hover,
.what-card:hover, 
.registration-card-hover {
    transform: translateY(-8px);
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
}

/* ICON */
.about-box .icon,
.financial-card .icon-box,
.tax-card .icon-box,
.business-card .icon-box,
.what-card .icon-box, 
.registration-card .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    box-shadow: var(--shadow-md);
}

/* TITLE */
.about-box h5,
.financial-card h5,
.tax-card h5,
.what-card h5, 
.registration-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.about-box p,
.financial-card p,
.tax-card p,
.business-card p,
.what-card p, 
.registration-card p{
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 12px;
}

/* LIST */
.about-box ul,
.financial-card ul,
.tax-card ul,
.what-card ul, 
.registration-card ul,
.business-card ul{
    list-style: none;
    padding-left: 0;
}

.about-box ul li,
.financial-card ul li,
.tax-card ul li,
.what-card ul li, 
.registration-card ul li,
.business-card ul li{
    font-size: 0.9rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
}

.about-box ul li::before,
.financial-card ul li::before,
.tax-card ul li::before, 
.registration-card ul li:before,
.business-card ul li:before
{
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* TRUST LINE */
.about-highlight {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    border-left: 4px solid var(--primary);
    display: inline-block;
    padding-left: 12px;
}


/* CARD */
.why-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    font-size: 0.92rem;
    transition: 0.3s;
}

/* ICON */
.why-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

/* HOVER */
.why-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

/* SECTION */
.about-final {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 90px 20px;
}

/* TEXT */
.about-final-text {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* LIST */
.commitment-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.commitment-list span {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* TRUST LINE */
.about-trust-line {
    color: var(--primary);
    font-weight: 600;
}

/* CTA */
.cta-text {
    max-width: 600px;
    margin: 0 auto 10px;
    opacity: 0.9;
    font-size: 1rem;
}

.about-final-cta a {
    margin-top: 10px;
}

/* INTRO SECTION */

.intro-highlight {
    color: var(--primary);
    font-weight: 500;
}

/* TEXT */
.services-intro-advanced p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* TITLE ALIGN */
.services-intro-advanced .section-title {
    text-align: left;
}

/* TITLE */
.business-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* LIST */
.why-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CTA SECTION */
.services-cta {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 90px 20px;
    color: #fff;
}

/* BUTTONS */
.careers-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* TEXT */
.careers-intro p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* HIGHLIGHT */
.career-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

/* CARD */
.career-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
    text-align: center;
}

/* HOVER */
.career-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ICON */
.career-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    margin: 0 auto 15px;
}

/* TITLE */
.career-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* TEXT */
.career-card p {
    font-size: 0.92rem;
    color: #555;
}

/* CARD */
.job-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

/* HOVER */
.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* TOP */
.job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* BADGE */
.job-badge {
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* LOCATION */
.job-location {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

/* LIST */
.job-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    flex-grow: 1;
}

.job-card ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.job-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* BUTTON */
.job-btn {
    display: inline-block;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #000;
    padding: 8px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.job-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* STEPS */
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* STEP */
.step {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    width: 180px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.step span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step:hover {
    transform: translateY(-6px);
}

.career-cta {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 90px 20px;
    color: #fff;
}

/* FORM BOX */
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    font-size: 0.9rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CONTACT CARDS */
.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card i {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 10px;
}

.btn-main {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.why-list i {
    color: var(--primary);
    margin-right: 8px;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none; /* IMPORTANT */
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.4);
    z-index: 9999;

    pointer-events: none; /* IMPORTANT */
}

/* ================= SMOOTH ENTRY ================= */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation */
/* PULSE EFFECT */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes check {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


@media(min-width:992px) {
    .slide-menu {
        position: static !important;
        height: auto;
        background: transparent;
        padding: 0;
        width: auto;
        max-width: none;
        right: 0;
    }

    .navbar,
    .navbar .container,
    .navbar .row {
        overflow: none !important;
    }

    .mega-menu {
        position: static;
    }

    .mega-menu-box {
        position: absolute;
        top: 45%;
        width: 100%;
        /* ✅ EXACT CONTAINER WIDTH */
        max-width: 100vw;
        /* ✅ SAFE FOR SMALL SCREENS */

        background: #fff;
        padding: 30px 40px;
        margin: 30px;

        border-radius: 16px;
        /* 🔥 premium */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;

        transition: all 0.3s ease;
        z-index: 9999;
    }

    /* HOVER */
    .mega-menu:hover .mega-menu-box {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

	.contact-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }


}

@media(max-width:991px) {

    /* ===== SLIDE MENU (COMPRESSED) ===== */
    .slide-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        /* 🔥 reduced width */
        max-width: 300px;
        /* 🔥 tighter */
        height: 100vh;

        background: linear-gradient(160deg, #0b1c22, #132f36);
        backdrop-filter: blur(18px);

        padding: 20px 16px;
        /* 🔥 reduced padding */
        z-index: 9999;
        transition: 0.4s ease;
        overflow-y: auto;

        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .slide-menu.show {
        right: 0;
    }

    /* ===== HEADER ===== */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    /* 🔥 PREMIUM CLOSE BUTTON */
    .close-menu {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: none;

        background: rgba(255, 255, 255, 0.08);
        color: #fff;

        font-size: 16px;
        transition: 0.3s;
    }

    .close-menu:hover {
        background: var(--primary);
        color: #000;
    }

    /* ===== NAV LINKS ===== */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 4px;

        font-size: 0.92rem;
    }

    /* HOVER */
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    /* ===== CTA ===== */
    .btn-nav {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* ===== MOBILE DROPDOWN ===== */

    .mega-menu-box {
        display: none !important;
        margin-top: 8px;
        overflow: hidden;
        transform: translateY(-5px);
        transition: all 0.3s ease;
    }

    /* ===== SHOW ONLY WHEN ACTIVE ===== */
    .mega-menu.active .mega-menu-box {
        display: block !important;
        height: auto;
        opacity: 1;
        transform: translateY(0);
        margin-top: 10px;
    }

    /* STACK */
    .mega-menu-box .row {
        flex-direction: column;
        gap: 10px;
    }

    /* CARD STYLE */
    .mega-menu-box .col-lg-3, .mega-menu-box .col-lg-2 {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        background: linear-gradient(160deg, #0b1c22, #132f36);

        border-radius: 14px;

        border: 1px solid rgba(255, 255, 255, 0.05);

        backdrop-filter: blur(10px);
    }

    /* TITLE */
    .mega-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 8px;
        padding-left: 24px;
    }

	    /* TITLE */
    .mega-title a {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary) !important;
        margin-bottom: 8px;
    }

    .mega-list {
        padding: 0;
        margin: 0;
    }

    .mega-list li {
        list-style: none;
        margin-bottom: 2px;
    }

    /* LINKS */
    .mega-list li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 24px 10px;
        border-radius: 10px;
        font-size: 0.82rem;
        color: #e0e0e0;
        transition: 0.2 ease;
    }

    .mega-list li a i {
        font-size: 13px;
        color: var(--primary);
    }

    /* HOVER */
    .mega-list li a:hover {
        background: rgba(255, 255, 255, 0.07);
        transform: translateX(4px);
        color: #fff;
    }

    /* REMOVE DESKTOP DROPDOWN */
    .mega-menu .dropdown-menu {
        position: relative !important;
        display: block;
        background: transparent;
        box-shadow: none;
    }

    /* ===== SERVICES BUTTON ===== */
    .services-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 12px 14px;
        border-radius: 12px;

        background: rgba(255, 193, 7, 0.08);
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    /* ===== ARROW ROTATE ===== */
    .mega-menu.active .services-toggle i:last-child {
        transform: rotate(180deg);
    }

    /* ===== NAV LINKS ===== */
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 12px;
    }

    /* ===== CLOSE BUTTON ===== */
    .close-menu {
        border-radius: 50%;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.08);
    }

    /* ===== CTA BUTTON ===== */
    .btn-nav {
        margin-top: 12px;
        border-radius: 12px;
        padding: 12px;
    }
	.hero{
		min-height: 40vh;
	}

	.about-hero,
	.services-hero,
	.contact-hero,
	.careers-hero {
		min-height: 40vh;	
	}
	
	.contact-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

}

/* MOBILE */
@media(max-width:768px) {
    body {
        cursor: default;
    }

	.hero{
		min-height: 65vh;
		align-items: left;
		justify-content: Left;
		text-align: left;
	}

	.trust-line
	{
		align-items: left;
		justify-content: Left;
	}
	
    .hero-title {
        font-size: 1.3rem;
    }

	.hero-btn
	{
		align-items: left;
		justify-content: left;
		display: flex;
	}

	.hero-btn a
	{
		gap: 5px; 	
	}

	/* OUTLINE BUTTON */
	.btn-hero-outline {
		display: none;
	}

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

	.about-hero,
	.services-hero,
	.contact-hero,
	.careers-hero {
		min-height: 65vh;	
	}

    .about-hero-title {
        font-size: 1.3rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

	.section-title {
    font-size: 1.5rem;
	}

    .services-intro-advanced .section-title {
        text-align: center;
    }

    .services-intro-advanced p {
        text-align: center;
    }

    .careers-title {
        font-size: 1.9rem;
    }

    .careers-subtitle {
        font-size: 0.95rem;
    }

    .careers-intro .section-title {
        text-align: center;
    }

    .careers-intro p {
        text-align: center;
    }
		    /* TITLE */
    .mega-title a {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary) !important;
        margin-bottom: 8px;
    }
}