/* ==========================================
   NAVIGATION STYLES WITH SMOOTH SCROLL ANIMATION
   ========================================== */

/* Nav Wrapper - Transparent by default */
.nav-wrapper {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(0);
}

/* Nav when scrolled - Glassy effect */
.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-wrapper.hide {
    transform: translateY(-100%);
}

/* Nav Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 10px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .nav-container {
        min-height: 140px;
    }
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 120px;
    }
}

/* Right Section */
.nav-right-section {
    display: none;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    flex: 1;
    margin-left: 40px;
}

@media (min-width: 1024px) {
    .nav-right-section {
        display: flex;
    }
}

/* Contact Row */
.contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0A327F;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled .contact-item {
    color: #0A327F;
}

.contact-item:hover {
    color: #FF6888;
}

.contact-item i {
    font-size: 14px;
}

/* CTA Button with constant shine */
.cta-button {
    --radius: 25px;
    --padding: 4px;
    --shine-hue: 15deg;
    --transition: 0.35s;

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #FF6888, #FD7000);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.35),
        inset 0 4px 8px rgba(255,255,255,0.15),
        0 6px 18px rgba(255, 104, 136, 0.45);
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--padding));
    border-radius: calc(var(--radius) + var(--padding));
    background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(0,0,0,0.3));
    z-index: -1;
}

.cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.9),
        hsla(var(--shine-hue), 100%, 70%, 0.8),
        transparent 80%
    );
    opacity: 0.65;
    animation: shine-loop 3s linear infinite;
    pointer-events: none;
}

@keyframes shine-loop {
    0%   { transform: translateX(-120%); }
    50%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

.cta-button {
    text-shadow:
        0 0 6px rgba(255,255,255,0.7),
        0 0 12px rgba(255,140,90,0.6);
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.45),
        inset 0 6px 12px rgba(255,255,255,0.25),
        0 12px 35px rgba(255, 104, 136, 0.75),
        0 0 25px rgba(255, 160, 100, 0.9);
}

.cta-button:hover::after {
    opacity: 0.9;
    animation-duration: 1.5s;
}

.cta-button:active {
    transform: translateY(0);
    filter: brightness(1.15);
}

/* Nav Links Row */
.nav-links-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #0A327F;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.nav-wrapper.scrolled .nav-link {
    color: #0A327F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #FF6888, #FD7000);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6888;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==========================================
   HAMBURGER MENU
   ========================================== */

.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

@media (min-width: 1024px) {
    .hamburger-btn {
        display: none;
    }
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-wrapper.scrolled .hamburger-btn span {
    background: #0A327F;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu-wrapper {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-wrapper.show {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-menu-link {
    display: block;
    padding: 15px 30px;
    color: #0A327F;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
}

.mobile-menu-link:hover {
    background: #f9fafb;
}

.mobile-contact {
    padding: 20px 30px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact a {
    color: #0A327F;
    text-decoration: none;
    font-size: 14px;
}

.mobile-contact i {
    margin-right: 8px;
}

/* ==========================================
   BANNER WITH SMOOTH SCROLL ANIMATION
   ========================================== */

.banner-container {
    margin-top: 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    border-radius: 0;
    overflow: visible;
    z-index: 1;
}

/* When scrolled - add top margin to prevent overlap */
.banner-container.scrolled {
    margin-top: 100px;
}

@media (min-width: 1024px) {
    .banner-container.scrolled {
        margin-top: 140px;
    }
}

/* Swiper */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-pagination-bullet-active {
    background: #FF6888 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

/* ==========================================
   MOBILE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .nav-wrapper {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

    .hamburger-btn span {
        background: #0A327F;
    }

    .contact-item {
        color: #0A327F;
    }

    .nav-link {
        color: #0A327F;
    }

    /* Adjust mask position for mobile */
    .nav-wrapper::after {
        top: 100px;
    }
}
@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* how it works animation */
.flip-animation {
    transition: transform 0.6s ease-in-out, background-color 0.3s ease-in-out;
    transform-style: preserve-3d;
}

.parent-div:hover .flip-animation {
    transform: rotateY(360deg);
    background-color: #32475a;
    color: white;

    /* Yellow color */
}

.parent-div img {
    transition: transform 0.9s ease-in-out;
}

.parent-div:hover img {
    transform: scale(1.05);

    /* Scale up by 10% */
}

/* Logo track */
.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
    /* Ensures the logos loop without gaps */
    width: max-content;
}

/* Individual logo */
.brand-logo {
    display: inline-block;
    transition: transform 0.9s ease-in-out, filter 0.3s ease-in-out;
    will-change: transform;
}

.brand-logo:hover {
    transform: scale(1.1) !important;
}

/* Infinite scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll by half of the container's width */
    }
}

#scrollToTopBtn {
    width: 30px;
    /* Adjust the width for responsiveness */
    height: 40px;
    background-color: #FD7000;

}

@media (min-width: 769px) {
    #scrollToTopBtn {
        width: 40px;
        /* Slightly larger on medium screens */
        height: 60px;
    }
}

@media (min-width: 1024px) {
    #scrollToTopBtn {
        width: 50px;
        /* Even larger on large screens */
        height: 70px;
    }
}
/* ==========================================
   SERVICE SECTION WITH TILT & GLOW EFFECTS
   ========================================== */

/* ==========================================
   GLASS BUBBLES FOR SERVICE SECTION
   ========================================== */

/* Service section with bubbles container */
.service-section-bg {
    background: #0A327F;
    position: relative;
    overflow: hidden;
}

/* Bubbles container */
.service-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Individual bubble */
.glass-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: float-bubble 20s infinite ease-in-out;
}

/* Different bubble sizes */
.glass-bubble.small {
    width: 60px;
    height: 60px;
}

.glass-bubble.medium {
    width: 100px;
    height: 100px;
}

.glass-bubble.large {
    width: 150px;
    height: 150px;
}

.glass-bubble.xlarge {
    width: 200px;
    height: 200px;
}

/* Bubble glow effect */
.glass-bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

/* Floating animation */
@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(40px, -50px) scale(1.05);
        opacity: 0.75;
    }
}

/* Individual bubble positions and delays */
.bubble-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bubble-2 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.bubble-3 {
    top: 20%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.bubble-4 {
    top: 70%;
    left: 75%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.bubble-5 {
    top: 40%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.bubble-6 {
    top: 15%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.bubble-7 {
    top: 80%;
    left: 40%;
    animation-delay: 2.5s;
    animation-duration: 23s;
}

.bubble-8 {
    top: 50%;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

/* Ensure service content is above bubbles */
.service-section-bg > .max-w-7xl {
    position: relative;
    z-index: 1;
}

/* Responsive - hide some bubbles on mobile */
@media (max-width: 768px) {
    .glass-bubble.xlarge {
        width: 120px;
        height: 120px;
    }

    .glass-bubble.large {
        width: 100px;
        height: 100px;
    }

    .bubble-6,
    .bubble-7,
    .bubble-8 {
        display: none;
    }
}

/* Additional subtle bubble variant with different animation */
@keyframes float-bubble-alternate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-30px, -30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(20px, -60px) rotate(240deg) scale(0.95);
    }
}

.bubble-alternate {
    animation-name: float-bubble-alternate;
}

/* Service Card with Tilt Effect */
.service-card {
    position: relative;
    min-height: 400px;
    max-height: 500px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    background: white;
    /* Default shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Simple outer glow on hover */
.service-card:hover {
    box-shadow:
        0 0 25px rgba(255, 104, 136, 0.6),
        0 0 50px rgba(253, 112, 0, 0.4),
        0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Service Image */
.service-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

/* Bottom Content Area */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

/* Service Title */
.service-card-title {
    color: #1C2325;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .service-card-title {
        font-size: 1.5rem;
    }
}

.service-card:hover .service-card-title {
    color: #FF6888;
}

/* Service Description */
.service-card-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-description {
    max-height: 60px;
    visibility: visible;
    opacity: 1;
    margin-bottom: 1rem;
}

/* Learn More Button - SMALLER SIZE */
.service-learn-more {
    --radius: 20px;
    --padding: 2px;

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem; /* Reduced padding */
    font-size: 0.75rem; /* Smaller font size */
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #FF6888, #FD7000);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.3),
        inset 0 3px 6px rgba(255,255,255,0.15),
        0 4px 12px rgba(255, 104, 136, 0.4);
    overflow: hidden;
    transition: all 0.35s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-learn-more {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.service-learn-more::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--padding));
    border-radius: calc(var(--radius) + var(--padding));
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.2));
    z-index: -1;
}

/* Shine effect on button */
.service-learn-more::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.8),
        transparent 80%
    );
    opacity: 0;
    animation: button-shine 3s linear infinite;
    pointer-events: none;
}

@keyframes button-shine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.service-learn-more:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.4),
        inset 0 4px 8px rgba(255,255,255,0.2),
        0 8px 20px rgba(255, 104, 136, 0.6);
}

.service-learn-more:hover::after {
    animation-duration: 1.5s;
}

.service-learn-more:active {
    transform: translateY(0);
}

/* Arrow icon - smaller */
.service-learn-more svg {
    width: 0.875rem; /* Reduced from 1rem */
    height: 0.875rem;
    transition: transform 0.3s ease;
}

.service-learn-more:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card-content {
        min-height: 120px;
        padding: 1rem;
    }

    .service-card-description {
        font-size: 0.8rem;
    }

    .service-learn-more {
        padding: 0.4rem 0.875rem; /* Even smaller on mobile */
        font-size: 0.7rem;
    }

    .service-learn-more svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}


/* ==========================================
   HOW IT WORKS SECTION - CARD LAYOUT WITH GLOW
   ========================================== */

/* How it works card container */
.hiw-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    border: 2px solid transparent;
}

.hiw-card:hover {
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 104, 136, 0.3);
    border-color: rgba(255, 104, 136, 0.2);
    transform: translateY(-4px);
}

/* Left side - Image and counter */
.hiw-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image container with glow effect */
.hiw-image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .hiw-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .hiw-image-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* Glow effect on image hover */
.hiw-card:hover .hiw-image-wrapper {
    box-shadow:
        0 0 20px rgba(255, 104, 136, 0.6),
        0 0 40px rgba(253, 112, 0, 0.4),
        0 0 60px rgba(255, 104, 136, 0.2);
    transform: scale(1.05);
}

.hiw-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FF6888, #FD7000);
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.hiw-card:hover .hiw-image-wrapper::before {
    opacity: 0.8;
    animation: glow-pulse-hiw 2s ease-in-out infinite;
}

@keyframes glow-pulse-hiw {
    0%, 100% {
        filter: blur(15px);
        opacity: 0.7;
    }
    50% {
        filter: blur(20px);
        opacity: 1;
    }
}

/* The actual image */
.hiw-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.hiw-card:hover .hiw-image {
    transform: rotate(5deg) scale(1.05);
}

/* Counter badge */
.hiw-counter {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0A327F, #1a4a9f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(10, 50, 127, 0.4);
    border: 2px solid white;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .hiw-counter {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.hiw-card:hover .hiw-counter {
    background: linear-gradient(135deg, #FF6888, #FD7000);
    transform: rotate(360deg) scale(1.1);
}

/* Right side - Text content */
.hiw-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.hiw-title {
    color: #0E3440;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .hiw-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hiw-title {
        font-size: 1.5rem;
    }
}

.hiw-card:hover .hiw-title {
    color: #FF6888;
}

.hiw-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .hiw-description {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    .hiw-description {
        font-size: 1rem;
    }
}

/* Process connector arrows - Optional decorative elements */
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.process-connector svg {
    width: 40px;
    height: 40px;
    color: #0A327F;
    opacity: 0.3;
}

/* Responsive - Stack on mobile */
@media (max-width: 640px) {
    .hiw-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .hiw-text-section {
        align-items: center;
    }
}

/* Alternative: Horizontal layout for tablet */
@media (min-width: 641px) and (max-width: 1023px) {
    .hiw-card {
        gap: 1.25rem;
    }
}

/* ==========================================
   WHY CHOOSE US - BORDER FILL EFFECT
   ========================================== */

/* Card with subtle before-hover animation */
.wcu-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Subtle floating animation before hover */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.wcu-card {
    animation: gentle-float 4s ease-in-out infinite;
}

.wcu-card:nth-child(1) { animation-delay: 0s; }
.wcu-card:nth-child(2) { animation-delay: 0.5s; }
.wcu-card:nth-child(3) { animation-delay: 1s; }
.wcu-card:nth-child(4) { animation-delay: 1.5s; }

/* Border fill effect - starts from bottom and fills up */
.wcu-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg,
        rgba(255, 104, 136, 0.05) 0%,
        rgba(253, 112, 0, 0.05) 100%);
    border-radius: 1.5rem;
    transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

/* Animated gradient border */
.wcu-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
        #FF6888 0%,
        #FD7000 25%,
        #FF6888 50%,
        #FD7000 75%,
        #FF6888 100%);
    background-size: 300% 300%;
    border-radius: 1.5rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover state - border fills and card lifts */
.wcu-card:hover {
    animation: none; /* Stop floating */
    transform: translateY(-16px);
    border-color: transparent;
    box-shadow:
        0 20px 50px rgba(255, 104, 136, 0.25),
        0 0 0 1px rgba(255, 104, 136, 0.1);
}

.wcu-card:hover::before {
    height: 100%; /* Fill entire card from bottom to top */
}

.wcu-card:hover::after {
    opacity: 1; /* Show animated gradient border */
}

/* Card content wrapper */
.wcu-card-content {
    position: relative;
    z-index: 1;
}

/* Icon Container - Simple & Clean */
.wcu-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #f8fafc;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 4px 12px rgba(10, 50, 127, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .wcu-icon-wrapper {
        margin: 0 0 1.5rem 0;
    }
}

/* Subtle glow before hover */
.wcu-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle,
        rgba(10, 50, 127, 0.1) 0%,
        transparent 70%);
    border-radius: 2rem;
    opacity: 0.5;
    transition: all 0.5s ease;
    filter: blur(12px);
}

/* Gorgeous glow on hover */
.wcu-card:hover .wcu-icon-wrapper::before {
    background: radial-gradient(circle,
        rgba(255, 104, 136, 0.4) 0%,
        rgba(253, 112, 0, 0.2) 50%,
        transparent 70%);
    opacity: 1;
    inset: -16px;
}

/* Icon background transforms on hover */
.wcu-card:hover .wcu-icon-wrapper {
    background: linear-gradient(135deg, #FF6888, #FD7000);
    transform: scale(1.05);
    box-shadow:
        0 12px 28px rgba(255, 104, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Icon image */
.wcu-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0) saturate(100%) invert(18%) sepia(78%) saturate(1780%) hue-rotate(193deg);
}

.wcu-card:hover .wcu-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Title - Simple & Elegant */
.wcu-title {
    color: #1e293b;
    margin: 0 0 1rem 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.4s ease;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .wcu-title {
        text-align: left;
        font-size: 1.375rem;
    }
}

/* Gradient text on hover */
.wcu-card:hover .wcu-title {
    background: linear-gradient(135deg, #FF6888, #FD7000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Simple underline animation */
.wcu-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6888, #FD7000);
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
    .wcu-title::after {
        margin-left: 0;
    }
}

.wcu-card:hover .wcu-title::after {
    width: 60px;
}

/* Description */
.wcu-description {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .wcu-description {
        text-align: left;
    }
}

.wcu-card:hover .wcu-description {
    color: #475569;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .wcu-card {
        padding: 1.75rem 1.25rem;
    }

    .wcu-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.25rem;
    }

    .wcu-icon {
        width: 40px;
        height: 40px;
    }

    .wcu-title {
        font-size: 1.125rem;
    }
}


/* ==========================================
   STATISTICS SECTION - ANIMATED CARDS
   ========================================== */

/* Statistics section with animated background */
.stats-section {
    background: #0A327F;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 104, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 112, 0, 0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Statistics Card */
.stats-card {
    position: relative;
    background: linear-gradient(135deg, #FF6888 0%, #FD7000 100%);
    border-radius: 0px 50px 0px 50px;
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Floating animation before hover */
@keyframes float-stats {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.stats-card {
    animation: float-stats 3s ease-in-out infinite;
}

.stats-card:nth-child(1) { animation-delay: 0s; }
.stats-card:nth-child(2) { animation-delay: 0.3s; }
.stats-card:nth-child(3) { animation-delay: 0.6s; }

/* Shine effect overlay */
.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stats-card:hover::before {
    animation: shine-sweep 1.5s ease-in-out infinite;
}

@keyframes shine-sweep {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Glow effect on hover */
.stats-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF6888, #FD7000);
    border-radius: 0px 50px 0px 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
}

.stats-card:hover::after {
    opacity: 0.8;
    animation: glow-pulse-stats 2s ease-in-out infinite;
}

@keyframes glow-pulse-stats {
    0%, 100% {
        filter: blur(20px);
        opacity: 0.6;
    }
    50% {
        filter: blur(30px);
        opacity: 1;
    }
}

/* Hover state */
.stats-card:hover {
    animation: none; /* Stop floating */
    transform: translateY(-20px) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(255, 104, 136, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FD7000 0%, #FF6888 100%);
}

/* Icon container */
.stats-icon-wrapper {
    margin-bottom: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

/* Icon glow effect */
.stats-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(15px);
}

.stats-card:hover .stats-icon-wrapper::before {
    opacity: 1;
    animation: icon-glow 2s ease-in-out infinite;
}

@keyframes icon-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.stats-card:hover .stats-icon-wrapper {
    transform: scale(1.15) rotateY(360deg);
}

.stats-icon {
    height: 5rem;
    width: 5rem;
    transition: all 0.6s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@media (min-width: 768px) {
    .stats-icon {
        height: 7rem;
        width: 7rem;
    }
}

@media (min-width: 1024px) {
    .stats-icon {
        height: 8rem;
        width: 8rem;
    }
}

.stats-card:hover .stats-icon {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

/* Counter number animation */
.stats-counter {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .stats-counter {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .stats-counter {
        font-size: 6rem;
    }
}

.stats-card:hover .stats-counter {
    transform: scale(1.1);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Counter pulsing effect on hover */
@keyframes counter-pulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
}

.stats-card:hover .stats-counter {
    animation: counter-pulse 1.5s ease-in-out infinite;
}

/* Label text */
.stats-label {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .stats-label {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .stats-label {
        font-size: 1.5rem;
    }
}

.stats-card:hover .stats-label {
    transform: translateY(4px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Particle decoration on hover */
.stats-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.stats-card:hover .stats-particle {
    opacity: 0.8;
    animation: particle-rise 2s ease-in-out infinite;
}

@keyframes particle-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.stats-particle:nth-child(1) { top: 80%; left: 20%; animation-delay: 0s; }
.stats-particle:nth-child(2) { top: 70%; left: 50%; animation-delay: 0.3s; }
.stats-particle:nth-child(3) { top: 85%; left: 80%; animation-delay: 0.6s; }
.stats-particle:nth-child(4) { top: 75%; left: 35%; animation-delay: 0.9s; }
.stats-particle:nth-child(5) { top: 80%; left: 65%; animation-delay: 1.2s; }

/* Responsive padding adjustments */
@media (min-width: 768px) {
    .stats-card {
        padding: 3.5rem 2rem 5rem;
    }
}

@media (min-width: 1024px) {
    .stats-card {
        padding: 3rem 2rem 5rem;
    }
}
/* ==========================================
   MODERN FOOTER DESIGN - NO CARDS
   ========================================== */

/* Footer with gradient background */
.modern-footer {
    background: linear-gradient(135deg,
        rgba(10, 50, 127, 0.95) 0%,
        rgba(26, 74, 159, 0.90) 50%,
        rgba(10, 50, 127, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.modern-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 104, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 112, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 80%);
    animation: gradient-shift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Centered logo overlay with animation */
.footer-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    animation: logo-float 20s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -48%) scale(1.05); }
}

.footer-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .footer-logo-overlay {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .footer-logo-overlay {
        width: 550px;
        height: 550px;
    }
}

/* Glass effect divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    margin: 4rem 0;
}

/* Modern section headings */
.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF6888, #FD7000);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover .footer-heading::after {
    width: 60px;
}

/* Modern footer links */
.footer-link {
    position: relative;
    display: inline-block;
    color: #ABB2C1;
    transition: all 0.3s ease;
    padding: 0.375rem 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6888, #FD7000);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Icon styling */
.footer-link svg,
.footer-link i {
    transition: all 0.3s ease;
}

.footer-link:hover svg,
.footer-link:hover i {
    color: #FF6888;
    transform: scale(1.1);
}

/* Social icons modern style */
.social-icon-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.social-icon-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF6888, #FD7000);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon-modern:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow:
        0 8px 20px rgba(255, 104, 136, 0.4),
        0 0 20px rgba(253, 112, 0, 0.2);
}

.social-icon-modern:hover::before {
    opacity: 1;
}

.social-icon-modern svg,
.social-icon-modern i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon-modern:hover svg,
.social-icon-modern:hover i {
    transform: scale(1.1);
}

/* Copyright section */
.footer-copyright {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ABB2C1;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Floating decoration elements */
.footer-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 104, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: float-decoration 20s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-decoration {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Content wrapper with proper z-index */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Footer sections hover effect */
.footer-section {
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 1.125rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}
/* ==========================================
   ABOUT US SECTION - SIMPLE MODERN ANIMATIONS
   ========================================== */

/* Main image animations */
.about-main-image {
    animation: float-gentle 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.01);
    }
}

.about-main-image:hover {
    animation-play-state: paused;
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Decorative border animation */
.about-border-effect {
    animation: border-pulse 4s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(4px, 4px);
    }
    50% {
        opacity: 0.8;
        transform: translate(8px, 8px);
    }
}

/* Floating image animations */
.about-floating-image {
    animation: float-smooth 5s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.about-floating-image:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotate(-2deg);
}

/* Floating image glow pulse */
.about-floating-glow {
    animation: glow-pulse-about 3s ease-in-out infinite;
}

@keyframes glow-pulse-about {
    0%, 100% {
        opacity: 0.2;
        filter: blur(15px);
    }
    50% {
        opacity: 0.4;
        filter: blur(20px);
    }
}

/* Badge animation */
.about-badge {
    animation: badge-bounce 3s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.about-badge:hover {
    animation-play-state: paused;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: scale(1.05);
}

/* Heading animation - fade in slide up */
.about-heading {
    animation: slide-in-up 1s ease-out;
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient text shimmer effect */
.about-heading {
    background-size: 200% auto;
    animation: gradient-shimmer 3s linear infinite;
}

@keyframes gradient-shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Description fade in */
.about-description {
    animation: fade-in-content 1.2s ease-out 0.3s both;
}

@keyframes fade-in-content {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button animation */
.about-cta-button {
    position: relative;
    overflow: hidden;
}

.about-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Arrow animation on button */
.about-cta-button svg {
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.about-cta-button:hover svg {
    animation: arrow-slide 0.6s ease-out forwards;
}

@keyframes arrow-slide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(5px);
    }
}

/* Quote card animation */
.about-quote-card {
    animation: quote-fade-in 1.5s ease-out 0.6s both;
    position: relative;
}

@keyframes quote-fade-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Quote card hover effect */
.about-quote-card:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 40px rgba(10, 50, 127, 0.15);
}

/* Quote icon animation */
.about-quote-icon {
    animation: quote-icon-spin 20s linear infinite;
}

@keyframes quote-icon-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Decorative background blobs animation */
.about-blob-1 {
    animation: blob-float-1 20s ease-in-out infinite;
}

.about-blob-2 {
    animation: blob-float-2 18s ease-in-out infinite;
}

@keyframes blob-float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes blob-float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(1.1);
    }
    66% {
        transform: translate(20px, -20px) scale(0.9);
    }
}

/* Image container scale on hover */
.about-image-container:hover .about-main-image {
    animation-play-state: paused;
}

/* Stagger animation delays for multiple elements */
.about-text-content > * {
    animation-fill-mode: both;
}

.about-text-content > *:nth-child(1) {
    animation-delay: 0.1s;
}

.about-text-content > *:nth-child(2) {
    animation-delay: 0.3s;
}

.about-text-content > *:nth-child(3) {
    animation-delay: 0.5s;
}

.about-text-content > *:nth-child(4) {
    animation-delay: 0.7s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    @keyframes float-gentle {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.01);
        }
    }

    @keyframes float-smooth {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-15px) rotate(1deg);
        }
    }
}
