/* ================= FULL WIDTH HERO ================= */

.hero-full {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

/* ================= IMAGE LAYER ================= */

.hero-image-layer {
    position: absolute;
    inset: 0;
    background: url('/assets/images/va-hero.png') no-repeat center center;
    background-size: cover;
    transform: translateX(100%);
    animation: slideImage 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 0;
}

/* Image slides from right to left */
@keyframes slideImage {
    to {
        transform: translateX(0);
    }
}

/* ================= OVERLAY ================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.20) 40%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
}

/* ================= CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 2;
}

/* TEXT appears AFTER image */
.hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1.1s; /* After image finishes */
}

.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1.4s;
}

.btn-primary-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 1.7s;
}

/* Fade animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= STYLING ================= */

.text-accent {
    color: #00f2ff;
}

.btn-primary-hero {
    background: #00f2ff;
    color: #000814;
    border: none;
    font-weight: 800;
    padding: 14px 40px;
    transition: 0.3s ease;
}

.btn-primary-hero:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px #00f2ff;
}
/* ================= BIGGER HERO TEXT ================= */

.hero-content h1 {
    font-size: 5rem;      /* Bigger headline */
    font-weight: 900;
    line-height: 1.05;
}

.hero-content p {
    font-size: 1.6rem;    /* Bigger paragraph */
    max-width: 700px;
}

.btn-primary-hero {
    font-size: 1.2rem;
    padding: 18px 56px;
}

/* ================= TYPOGRAPHY ================= */

.text-accent {
    color: #00f2ff;
}

.fw-black {
    font-weight: 900;
}

/* ================= BUTTON ================= */

.btn-primary-hero {
    background: #00f2ff;
    color: #000814;
    border: none;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    background: #ffffff;
    color: #000814 !important;
    transform: translateY(-3px);
    box-shadow: 0 0 20px #00f2ff;
}
/* ================= TRUSTED SECTION ================= */

/* ================= TRUSTED LOGO SECTION ================= */

.trusted-section {
    background: #0e151d;
    padding: 90px 0;
    overflow: hidden;
}

/* Wrapper */
.logo-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving Track */
.logo-carousel {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

/* FORCE FULL COLOR */
.logo-carousel img {
    height: 95px;
    width: auto;
    object-fit: contain;

    /* FORCE COLOR */
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal;
}

/* Subtle hover (optional) */
.logo-carousel img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* Infinite Scroll */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-wrapper:hover .logo-carousel {
    animation-play-state: paused;
}
/* ================= END TRUSTED SECTION ================= */
/* ================= IMPACT SECTION ================= */

/* ================= IMPACT SECTION ================= */

/* ================= IMPACT SECTION ================= */

.impact-section {
    background: url('/assets/images/impact-background.png') no-repeat center center;
    background-size: cover;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Softer readability overlay */
.impact-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        90deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.88) 45%,
        rgba(255,255,255,0.82) 100%
    ); */
    z-index: 1;
}

.impact-container {
    position: relative;
    z-index: 2;
}

/* ================= LEFT SIDE ================= */

.impact-left {
    padding-right: 50px;
}

/* Scroll animation base */
.impact-left,
.impact-right {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-left {
    transform: translateX(-80px);
}

.impact-right {
    transform: translateX(80px);
}

/* Active state when visible */
.impact-left.active,
.impact-right.active {
    opacity: 1;
    transform: translateX(0);
}

.impact-profile img {
    width: 100%;
    max-width: 380px;   /* Bigger, proportional */
    height: auto;
    display: block;
    margin-bottom: 40px;
}

/* Divider */
.impact-divider {
    display: flex;
    align-items: center;
    margin: 35px 0;
}

.impact-divider span {
    flex: 1;
    height: 2px;
    background: #1f1f1f;
    opacity: 0.6;
}

.impact-divider i {
    margin: 0 18px;
    font-size: 22px;
    color: #000;
}

/* Testimonial */
.impact-testimonial p {
    font-size: 16.5px;
    line-height: 1.95;
    color: #2b2b2b;
    max-width: 100%;
}

.impact-author {
    margin-top: 22px;
}

.impact-author strong {
    display: block;
    font-weight: 700;
    color: #1f3c88;
    font-size: 16px;
}

.impact-author span {
    font-size: 14px;
    color: #666;
}

/* ================= RIGHT SIDE ================= */

.impact-right {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically balances with left */
}

/* Bigger title */
.impact-title {
    font-size: 50px;        /* was 56px */
    font-weight: 900;
    color: #2c3e70;
    margin-bottom: 65px;    /* more space */
    line-height: 1.05;
}

/* Bigger content blocks */
.impact-block {
    display: flex;
    gap: 22px;
    margin-bottom: 50px;   /* more vertical height */
}

/* Bigger icon */
.impact-icon {
    width: 6px;                 /* THICKNESS */
    height: 65px;               /* HEIGHT */
    background: #1f4fbf;        /* blue color */
    position: relative;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Arrow notch */
.impact-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 18px;
    width: 0;
    height: 0;
    border-left: 8px solid #1f4fbf;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Bigger paragraph text */
.impact-block p {
    font-size: 20px;       /* was 18px */
    line-height: 2;        /* more breathing space */
    color: #2e2e2e;
    margin: 0;
}
/* ================= STAGGER ANIMATION ================= */

.impact-block {
    display: flex;
    gap: 22px;
    margin-bottom: 50px;

    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active state */
.impact-block.active {
    opacity: 1;
    transform: translateX(0);
}

/* Optional smoother stagger effect */
.impact-block:nth-child(2) { transition-delay: 0.15s; }
.impact-block:nth-child(3) { transition-delay: 0.3s; }
.impact-block:nth-child(4) { transition-delay: 0.45s; }
.impact-block:nth-child(5) { transition-delay: 0.6s; }
/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .impact-section {
        padding: 90px 0;
    }

    .impact-left,
    .impact-right {
        padding: 0;
        transform: none !important;
        opacity: 1 !important;
        text-align: center;
    }

    .impact-profile img {
        max-width: 280px;
        margin: 0 auto 30px;
    }

    .impact-title {
        font-size: 36px;
        text-align: center;
    }

    .impact-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .impact-icon {
        margin-bottom: 10px;
    }

    .impact-block p {
        font-size: 16px;
    }
}
/* ================= end of IMPACT SECTION ================= */
/* ================= WHAT WE DO ================= */

/* ================= WHAT WE DO SECTION ================= */

.what-we-do-section {
    background: #f0f8ff;
    padding: 0;
    overflow: hidden;
}

/* ================= HEADER ================= */

.what-header {
    padding: 90px 20px 60px;
    background: linear-gradient(135deg, #d9eefc, #c8e6f9);
    text-align: center;

    /* animation initial state */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.what-header h2 {
    font-size: 52px;
    font-weight: 900;
    color: #1f3c88;
    margin-bottom: 25px;
}

.header-divider {
    width: 120px;
    height: 6px;
    background: #1f3c88;
    margin: 0 auto;
    border-radius: 10px;
}

/* ================= GRID ================= */

.what-grid {
    min-height: auto; /* removed fixed height */
}

/* ================= COLUMNS ================= */

.what-col {
    padding: 70px 45px;
    color: #fff;
    position: relative;

    /* animation initial state */
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Alternate slide directions */
.what-col:nth-child(odd) {
    transform: translateX(-70px);
}

.what-col:nth-child(even) {
    transform: translateX(70px);
}

.what-col.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay */
.what-col:nth-child(1) { transition-delay: 0.1s; }
.what-col:nth-child(2) { transition-delay: 0.25s; }
.what-col:nth-child(3) { transition-delay: 0.4s; }
.what-col:nth-child(4) { transition-delay: 0.55s; }

.what-inner {
    max-width: 280px;
    margin: auto;
}

/* ================= BACKGROUND SHADES ================= */

.what-col.light { background: #889fbf; }
.what-col.medium { background: #6e89ad; }
.what-col.dark { background: #4d6f99; }
.what-col.blue { background: #2e57a3; }

/* ================= ICON ================= */

.what-icon {
    font-size: 42px;
    margin-bottom: 30px;
}

/* ================= TITLES ================= */

.what-col h5 {
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* ================= LIST ================= */

.what-col ul {
    list-style: disc;
    padding-left: 20px;
}

.what-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

/* ================= HOVER ================= */

.what-col:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .what-header h2 {
        font-size: 36px;
    }

    .what-col {
        text-align: center;
        padding: 60px 30px;
        transform: none !important;
        opacity: 1 !important;
    }

    .what-col ul {
        list-style: none;
        padding-left: 0;
    }

}
/* end of what we do section */
/* ================= TESTIMONIAL IMAGE SECTION ================= */

.testimonial-image-section {
    width: 100%;
    padding: 100px 0 0 0;
    background: #ffffff;
    overflow: hidden;
}

/* ================= HEADER ================= */

.testimonial-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-heading {
    font-size: 48px;
    font-weight: 900;
    color: #1f3c88;
    margin-bottom: 20px;
}

.testimonial-divider {
    width: 100px;
    height: 5px;
    background: #1f3c88;
    margin: 0 auto;
    border-radius: 10px;
}

/* ================= IMAGE ================= */

.testimonial-image-wrapper {
    width: 100%;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .testimonial-heading {
        font-size: 32px;
    }

    .testimonial-image-section {
        padding: 70px 0 0 0;
    }

}
/* end of testimonial css */
/* ================= CONTACT IMAGE SECTION ================= */
/* ================= CONTACT IMAGE SECTION ================= */

/* ================= CONTACT IMAGE SECTION ================= */

.contact-image-section {
    position: relative;
    background: url('/assets/images/contact.png') no-repeat center center;
    background-size: cover;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

/* Overlay */
.contact-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        180deg,
        rgba(0, 60, 180, 0.45) 0%,
        rgba(0, 80, 200, 0.35) 50%,
        rgba(0, 80, 200, 0.65) 100%
    ); */
    z-index: 1;
}

/* ================= ANIMATION BASE ================= */

.animate {
    opacity: 0;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-left {
    transform: translateX(-80px);
}

.animate-right {
    transform: translateX(80px);
}

.animate-up {
    transform: translateY(40px);
}

/* When visible */
.animate.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================= CENTER HEADLINE ================= */

.contact-heading {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    letter-spacing: 1px;
}

/* ================= FOOTER CONTACT INFO ================= */

.contact-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.contact-footer-box {
    padding: 0 80px;
}

.contact-footer-box:first-child {
    text-align: left;
}

.contact-footer-box:last-child {
    text-align: right;
}

/* Typography */
.contact-footer-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-footer-box h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-footer-box p {
    margin-bottom: 6px;
    font-size: 15px;
    opacity: 0.95;
}

.contact-footer-box a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-footer-box i {
    margin-right: 8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .contact-image-section {
        min-height: 650px;
    }

    .contact-heading {
        font-size: 34px;
        top: 38%;
    }

    .contact-footer-box {
        padding: 0 20px;
        text-align: center !important;
        margin-bottom: 20px;
    }
}

/* end of contact image section */
/* featured va */
/* CARD HOVER EFFECT */
/* ===============================
   VA CARD CONTAINER
=================================*/
.va-card-sky {
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    border-radius: 2rem;
}

/* Lift + Shadow */
.va-card-sky:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.25);
}

/* Border Glow Effect */
.va-card-sky::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    pointer-events: none; /* Prevent blocking clicks */
}

.va-card-sky:hover::after {
    border-color: rgba(0, 123, 255, 0.4);
}


/* ===============================
   IMAGE ZOOM EFFECT
=================================*/
.avatar-box img {
    transition: transform 0.4s ease;
}

.va-card-sky:hover .avatar-box img {
    transform: scale(1.1);
}


/* ===============================
   PREMIUM HIGHLIGHT BUTTON
=================================*/
.btn-primary-va {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Button Hover */
.btn-primary-va:hover {
    background: linear-gradient(135deg, #0056b3, #00a2ff);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.45);
}

/* Arrow Slide */
.btn-primary-va i {
    transition: transform 0.3s ease;
}

.btn-primary-va:hover i {
    transform: translateX(5px);
}

/* Shine Animation */
.btn-primary-va::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.btn-primary-va:hover::before {
    left: 130%;
}

/* Auto highlight when card hovered */
.va-card-sky:hover .btn-primary-va {
    background: linear-gradient(135deg, #00c6ff, #007bff);
}


/* ===============================
   BADGE STYLE
=================================*/
.badge-status {
    background: #e8f3ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #007bff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    pointer-events: none; /* Prevent blocking clicks */
}

/* Pulsing Dot */
.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40,167,69,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}
/* end of featured va */