* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgb(2, 21, 45), rgb(4, 35, 70));
    font-family: "Josefin Sans", sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.background-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: .4;
}

.glow1 {
    width: 400px;
    height: 400px;
    background: #00c8ff;
    top: -120px;
    right: -100px;
}

.glow2 {
    width: 500px;
    height: 500px;
    background: #4d5dff;
    bottom: -180px;
    left: -100px;
}

/* Header */
.header {
    padding-top: 90px;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #000000;
}

.nav-item {
    padding-right: 20px;
}

.logo-img {
    width: 60px;
}

.logo-text {
    width: 200px;
}

/* .navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 20px;
    font-weight: 500;
    font-size: 18px;
} */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.5s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.slide1 {
    background-image: url('../images/hero/hero-slide-1.jpg');
}

.slide2 {
    background-image: url('../images/hero/hero-slide-2.jpg');
}

.slide3 {
    background-image: url('../images/hero/hero-slide-3.jpg');
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-left {
    max-width: 750px;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

.hero-left h4 {
    color: #4cc9ff;
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-left p {
    font-size: 15px;
    color: #d8e7ff;
    margin-bottom: 25px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #0d6efd, #00d4ff);
    color: #fff;
    border: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00d4ff, #0d6efd);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-grey {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-grey:hover {
    background: #fff;
    color: #02152d;
}

.stats {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    padding: 22px 30px;
    border-radius: 20px;
    min-width: 170px;
    transition: 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-box h2 {
    font-size: 34px;
    margin-bottom: 5px;
    color: #4cc9ff;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4cc9ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #4cc9ff;
    animation: particles 10s linear infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.particles span:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.particles span:nth-child(3) {
    left: 35%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.particles span:nth-child(4) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.particles span:nth-child(5) {
    left: 65%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.particles span:nth-child(6) {
    left: 75%;
    animation-duration: 13s;
    animation-delay: 4s;
}

.particles span:nth-child(7) {
    left: 90%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: #00d4ff;
    transform: scale(1.3);
    box-shadow: 0 0 15px #00d4ff;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff33, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 2;
    animation: pulse 6s infinite;
}

/* ========================= ABOUT SECTION ========================== */

.about-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* =========================     LEFT IMAGE DESIGN   ========================== */

.about-image-wrapper {
    position: relative;
}

.about-image-box {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    isolation: isolate;
    animation: floating 6s ease-in-out infinite;
}

.about-image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, 0.18),
            transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.about-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: 1.2s ease;
    z-index: 3;
}

.about-image-box:hover::after {
    left: 140%;
}

.about-image-box img {
    width: 100%;
    display: block;
    border-radius: 35px;
    transform: scale(1.05);
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

.about-image-box:hover img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

/* Border Glow */

.image-border {
    position: absolute;
    inset: -15px;
    border-radius: 45px;
    border: 1px solid rgba(76, 201, 255, 0.25);
    animation: rotateBorder 10s linear infinite;
}

.image-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg,
            rgba(76, 201, 255, 0.2),
            transparent 60%);
    filter: blur(30px);
    z-index: -1;
}

/* Floating Card */

.experience-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    padding: 28px 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.experience-card h2 {
    font-size: 48px;
    color: #4cc9ff;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
}

.experience-card p {
    font-size: 16px;
    color: #d7e8ff;
    margin: 0;
    line-height: 1.5;
}

/* =========================
           CONTENT
        ========================== */

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4cc9ff;
    margin-bottom: 25px;
}

.about-tag::before {
    content: '';
    width: 50px;
    height: 1px;
    background: #4cc9ff;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-content p {
    color: #cfe4ff;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* =========================
           FEATURES
        ========================== */

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.feature-card:hover {
    background-color: #fff;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #000;
}

.feature-card:hover::before {
    background-color: #fff;
}

.feature-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 24px;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.05); */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            transparent);
    opacity: 0;
    transition: 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            #0d6efd,
            #00d4ff);
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* =========================
           BUTTON
        ========================== */

.about-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 100px;
    background:
        linear-gradient(135deg,
            #0d6efd,
            #00d4ff);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.about-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            #00d4ff,
            #0d6efd);
    opacity: 0;
    transition: 0.5s;
}

.about-btn span {
    position: relative;
    z-index: 2;
}

.about-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.about-btn:hover::before {
    opacity: 1;
}


.about-btn:hover i {
    transform: translateX(5px);
}

/* =========================
           GLOW
        ========================== */

.about-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle,
            rgba(0, 212, 255, 0.12),
            transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: pulse 8s infinite;
}

/* Our Services */
.services-section {
    padding: 100px 0;
}

.sub-title {
    color: #4dcfff;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.main-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    transition: .5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 1s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.content p {
    line-height: 1.8;
    opacity: .9;
    margin-bottom: 25px;
    font-size: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 60px;
    background: linear-gradient(135deg, #0d6efd, #00d4ff);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: .5s ease;
    overflow: hidden;
    position: relative;
    width: max-content;
}

.read-more span {
    transition: .5s ease;
    display: inline-block;
}

.service-card:hover .read-more {
    background: linear-gradient(135deg, #00d4ff, #0d6efd);
}

.service-card:hover .read-more span {
    transform: translateX(8px);
}

.animate-card {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp .8s ease forwards;
}

.animate-card:nth-child(2) {
    animation-delay: .1s;
}

.animate-card:nth-child(3) {
    animation-delay: .2s;
}

.animate-card:nth-child(4) {
    animation-delay: .3s;
}

/* testimonial section */


.testimonial-section {
    /* background: linear-gradient(145deg, #001a56 0%, #002475 100%); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 50px 24px;
}

.wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADING SECTION */
.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading .script {
    font-family: 'Allura', cursive;
    color: #cddbff;
    font-size: 40px;
    line-height: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.heading h1 {
    color: #ffffff;
    font-size: 62px;
    font-weight: 800;
    margin-top: -28px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFF, #c7e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* SLIDER CONTAINER */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 48px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5);
    height: 570px;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.92, 0.4, 1);
    will-change: transform;
}

/* each testimonial card = slide */
.testimonial-card {
    flex: 0 0 100%;
    position: relative;
    border: 1.5px solid rgba(111, 168, 255, 0.55);
    border-radius: 48px;
    background: rgba(10, 25, 60, 0.55);
    backdrop-filter: blur(2px);
    padding: 135px 48px 52px 48px;
    transition: all 0.2s ease;
    min-height: 580px;
}

/* Profile image (absolute on desktop) */
.profile {
    position: absolute;
    left: 32px;
    top: 18px;
    z-index: 12;
}

.profile img {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef3ff;
    box-shadow: 0 12px 22px -8px rgba(0, 0, 0, 0.4);
    background: #fff;
    transition: transform 0.3s;
}

.profile img:hover {
    transform: scale(1.02);
}

/* decorative line + circle (profile) */
.profile::before {
    content: '';
    position: absolute;
    width: 92px;
    height: 2px;
    background: #6fa8ff;
    top: 50%;
    right: -92px;
    border-radius: 2px;
}

.profile::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #6fa8ff;
    right: -104px;
    top: calc(50% - 9px);
    background: #00206b;
}

/* agent info */
.agent-info {
    position: absolute;
    top: 22px;
    left: 190px;
    z-index: 8;
}

.agent-info h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.agent-info p {
    color: #cfdfff;
    font-size: 14px;
    font-weight: 400;
    margin-top: 3px;
}

/* rating badge */
.rating {
    position: absolute;
    right: 32px;
    top: 20px;
    padding: 10px 28px;
    background: #2a4070;
    backdrop-filter: blur(4px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFD966;
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: 500;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    z-index: 8;
}

.rating::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 2px;
    background: #6fa8ff;
    left: -75px;
    top: 50%;
}

.rating::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #6fa8ff;
    left: -88px;
    top: calc(50% - 9px);
    background: #00206b;
}

/* content text */
.content {
    color: #fff;
}

.content h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(120deg, #FFE6B0, #FFD966);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.content p {
    font-size: 18px;
    line-height: 1.75;
    color: #f0f4ff;
    margin-bottom: 20px;
}

.client {
    margin-top: 32px;
    color: #FFDE8D;
    font-size: 24px;
    font-weight: 700;
    border-left: 5px solid #FFD966;
    padding-left: 20px;
}

/* Navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 20, 60, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: #2a5fbf;
    border-color: #ffd966;
    color: #FFD966;
}

.btn-prev {
    left: 20px;
}

.btn-next {
    right: 20px;
}

/* dots container */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    padding-bottom: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}

.dot.active {
    background: #FFD966;
    width: 28px;
    border-radius: 20px;
    box-shadow: 0 0 6px #ffd966;
}

/* pause indicator (optional hover pause) */
.slider-container:hover .slides-wrapper {
    animation-play-state: paused;
}


/* end */




/* ---client logo section-- */

/* ========== ANIMATED BACKGROUND MASTER ========== */
/* Deep oceanic blues with a breathing, fluid movement — premium & calm */
.client-logo {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    /* Animated gradient core — smooth shifting hues & motion */
    /* background: linear-gradient(125deg, #001a56, #002475, #00308b, #001a56); */
    background-size: 300% 300%;
    animation: breathFlow 16s cubic-bezier(0.45, 0.05, 0.2, 0.99) infinite alternate;

    /* Subtle background-attachment for a larger-than-life presence */
    background-attachment: fixed;
    padding: 2rem 1rem;

    /* ensure smooth hardware acceleration where possible */
    will-change: background-position;
}

/* Keyframe animation — elegant, slow undulation between deep blues & richer tones */
@keyframes breathFlow {
    0% {
        background-position: 0% 30%;
    }

    25% {
        background-position: 40% 60%;
    }

    50% {
        background-position: 80% 40%;
    }

    75% {
        background-position: 40% 70%;
    }

    100% {
        background-position: 100% 80%;
    }
}

/* Floating celestial glow — adds depth & life without distraction */
.client-logo::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 180, 255, 0.08) 0%, rgba(0, 30, 80, 0) 70%);
    animation: softPulse 12s ease-in-out infinite alternate;
}

/* second light source moving independently — adds premium organic movement */
.client-logo::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 80% 70%, rgba(70, 130, 255, 0.07) 0%, rgba(0, 20, 50, 0) 70%);
    animation: driftGlow 18s ease-in-out infinite alternate;
}

@keyframes softPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes driftGlow {
    0% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.2;
    }

    100% {
        transform: translate(3%, 2%) scale(1.25);
        opacity: 0.6;
    }
}


@keyframes titleSubtleGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 240, 0.2));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(80, 160, 255, 0.5));
    }
}

/* logo grid — robust, gap consistency, no overflow */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    justify-items: center;
    align-items: center;
}

/* logo card — enhanced with subtle backdrop blur + glassmorphism elegance */
.logo-card {
    background: rgba(20, 40, 80, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: default;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(30, 65, 120, 0.55);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 22px 35px -12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

/* crisp white logos, perfect centering */
.logo-card img {
    max-width: 85%;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.25s ease, filter 0.2s;
}

.logo-card:hover img {
    transform: scale(1.03);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* graceful fallback for alt text */
.logo-card img[alt] {
    font-style: italic;
}

/* ========== RESPONSIVE BREAKPOINTS — fully fluid & elegant ========== */
@media (max-width: 1100px) {
    .logo-grid {
        gap: 1rem;
    }

    .logo-card {
        height: 170px;
    }
}

@media (max-width: 900px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .logo-card {
        height: 160px;
    }

    .title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .client-wrapper {
        padding: 0 0.5rem;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-card {
        height: 140px;
    }

    .logo-card img {
        max-height: 55px;
    }

    .logo-card {
        backdrop-filter: blur(6px);
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .logo-card {
        height: 130px;
    }

    .client-title {
        font-size: clamp(1.6rem, 6vw, 2.3rem);
    }
}

/* Accessibility: respect reduced motion preferences — calm down all animations */
@media (prefers-reduced-motion: reduce) {
    .client-logo {
        animation: none;
        background: linear-gradient(125deg, #001a56, #002475);
        background-attachment: fixed;
    }

    .client-logo::before,
    .client-logo::after {
        animation: none;
        opacity: 0.2;
    }

    .logo-card {
        transition: none;
    }

    .logo-card:hover {
        transform: none;
    }
}


/* --logo section end -- */


/******************************--about page --*************************  */


/* ---about section start-- */

/* SECTION */
.about-section {
    padding: 200px 8%;
    position: relative;
    isolation: isolate;
}

/* subtle background depth */
.about-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 0%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.03) 0%, rgba(0, 180, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-section-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

/* IMAGE BOX */
.image-box {
    flex: 1;
    opacity: 0;
    transform: translateX(-60px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform, opacity;
}

.image-box.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.image-box img {
    width: 100%;
    border-radius: 32px;
    display: block;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.5s ease, box-shadow 0.4s;
    animation: floatImage 6s ease-in-out infinite;
}

.image-box img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 40px 55px -18px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.15);
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CONTENT BOX */
.content-box {
    flex: 1.2;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.content-box.show {
    opacity: 1;
    transform: translateX(0);
}

/* HEADING – vibrant gradient for dark background */
.content-box h2 {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.2;

    /* Typing animation */
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ffaa66;
    width: 0;
    transition: border-color 0.2s;
}

/* Typing activation */
.content-box.show h2 {
    animation: typingText 3.2s steps(42, end) forwards, blinkCursor 0.75s step-end infinite;
}

@keyframes typingText {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {

    0%,
    100% {
        border-color: #ffaa66;
    }

    50% {
        border-color: transparent;
    }
}

/* PARAGRAPHS – light color for dark background */
.content-box p {
    font-size: 17px;
    line-height: 1.85;
    color: #e2e8f0;
    margin-bottom: 22px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-box.show p:nth-child(2) {
    animation: slideFadeUp 0.7s forwards 0.25s;
}

.content-box.show p:nth-child(3) {
    animation: slideFadeUp 0.7s forwards 0.55s;
}

.content-box.show p:nth-child(4) {
    animation: slideFadeUp 0.7s forwards 0.85s;
}

@keyframes slideFadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* QUOTE / BOTTOM TEXT – cyan/gold glow */
.bottom-text {
    margin-top: 100px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(120deg, #9bc5ff, #6ee7ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.45;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px;
    border-radius: 80px;
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bottom-text.show {
    opacity: 1;
    transform: translateY(0);
    animation: softGlowPulse 2.2s infinite alternate ease-in-out;
}

@keyframes softGlowPulse {
    0% {
        text-shadow: 0 0 5px rgba(110, 231, 255, 0.3);
        letter-spacing: normal;
    }

    100% {
        text-shadow: 0 0 18px rgba(110, 231, 255, 0.6), 0 0 25px rgba(155, 197, 255, 0.4);
        letter-spacing: 0.3px;
    }
}


/* end */


/* ----- about second start    ----- */

/* ==========================
   ANIMATED BACKGROUND
========================== */
.about-second {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(2, 21, 45) 0%, rgb(4, 35, 70) 50%, rgb(2, 21, 45) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 12s ease infinite;
    overflow-x: hidden;
    isolation: isolate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* floating shapes */
.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 18s infinite ease-in-out;
    backdrop-filter: blur(3px);
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-60px) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.glow-line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 20% 40%, rgba(100, 150, 255, 0.08) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
    animation: shiftDots 20s linear infinite;
    z-index: 0;
}

@keyframes shiftDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}



/* SECTION TITLE */
.section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #A5F0FF, #80B3FF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmerText 4s linear infinite;
    letter-spacing: -0.02em;
}

@keyframes shimmerText {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.section {
    padding: 100px 0px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    margin: 20px auto 0;
    border-radius: 4px;
    animation: lineWiden 2s ease-in-out infinite alternate;
}

@keyframes lineWiden {
    0% {
        width: 60px;
        opacity: 0.6;
    }

    100% {
        width: 140px;
        opacity: 1;
    }
}

/* CARDS - equal height columns */
.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 40px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 40px;
    padding: 0;
    margin-bottom: 50px;
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.4);
}

.reverse {
    direction: rtl;
}

.reverse>* {
    direction: ltr;
}

/* CONTENT SIDE - padding inside */
.feature-content {
    padding: 35px 0 35px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reverse .feature-content {
    padding: 35px 35px 35px 0;
}

.feature-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #1e1b4b, #312e81);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: transform 0.3s;
}

.feature-card:hover .feature-content h3 {
    transform: translateX(8px);
}

.feature-content p {
    color: #1e293b;
    line-height: 1.9;
    margin-bottom: 28px;
    font-weight: 450;
    font-size: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags span {
    background: linear-gradient(145deg, #eef2ff, #e0e7ff);
    color: #1e3a8a;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: default;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tags span:hover {
    transform: scale(1.08) translateY(-3px);
    background: linear-gradient(145deg, #d9e6ff, #c7dafe);
    color: #0f2b6d;
    box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.2);
}

/* ==========================
   IMAGE - FULL SIZE START TO END (EDGE-TO-EDGE COVER)
========================== */
.feature-image {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s;
    position: relative;
    /* background: #0f172a; */
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* First card image side - round only right corners */
.feature-card:not(.reverse) .feature-image {
    border-radius: 0 40px 40px 0;
}

/* Reverse card image side - round left corners */
.feature-card.reverse .feature-image {
    border-radius: 40px 0 0 40px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills entire container from edge to edge, no empty space */
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.5s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
    filter: brightness(1.02);
}

/* SCROLL REVEAL */
.reveal {
    transform: translateY(70px) scale(0.96);
    transition: all 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

.reveal.active {
    transform: translateY(0) scale(1);
}

.reveal .feature-content h3,
.reveal .feature-content p,
.reveal .tags,
.reveal .feature-image {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease-out;
}

.reveal.active .feature-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.reveal.active .feature-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.reveal.active .tags {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.reveal.active .feature-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* gentle floating for cards */
@keyframes gentleFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.feature-card {
    animation: gentleFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -1.5s;
}

.feature-card:hover {
    animation: none;
}



/* ----about second end---- */



/* ----------------about third ------------------- */




/* === NEW CLASS NAMES: abo-thrid (section), thrid-container, etc. === */
.abo-thrid {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 2rem;
}

.thrid-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

/* left content area */
.thrid-content {
    flex: 1.1;
    min-width: 280px;
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.thrid-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #a3e4ff;
    border: 1px solid rgba(100, 180, 255, 0.3);
    margin-bottom: 1.5rem;
}

.thrid-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #b5e4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.3rem;
    letter-spacing: -0.02em;
}

.thrid-content p {
    font-size: 1.08rem;
    color: #cfebff;
    margin-bottom: 2rem;
    max-width: 90%;
    opacity: 0.9;
}

/* CTA button */
.thrid-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 200, 255, 0.5);
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: softPulse 2.5s infinite;
}

.thrid-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    color: #44ddff;
}

.thrid-btn span {
    color: white;
}

.thrid-btn:hover {
    background: rgba(0, 160, 255, 0.2);
    border-color: #4cddff;
    transform: scale(1.02);
    animation: none;
    box-shadow: 0 10px 25px -5px rgba(0, 160, 255, 0.3);
}

.thrid-btn:hover i {
    transform: scale(1.15) translateX(3px);
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 221, 255, 0.3);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(68, 221, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(68, 221, 255, 0);
    }
}

/* right side grid (cards) */
.thrid-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    min-width: 280px;
}

.thrid-card {
    background: rgba(12, 30, 55, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 1.8rem 1.2rem 1.8rem 1.5rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(80, 160, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpCard 0.6s forwards;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.thrid-card:nth-child(1) {
    animation-delay: 0.1s;
}

.thrid-card:nth-child(2) {
    animation-delay: 0.25s;
}

.thrid-card:nth-child(3) {
    animation-delay: 0.4s;
}

.thrid-card:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes fadeUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thrid-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(20, 50, 85, 0.75);
    border-color: rgba(0, 200, 255, 0.6);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.4);
}

.thrid-card.active {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.18), rgba(0, 100, 200, 0.22));
    border-left: 3px solid #2ad4ff;
    border-top: 1px solid rgba(0, 210, 255, 0.5);
}

.thrid-card i {
    font-size: 2.7rem;
    margin-bottom: 1.4rem;
    display: inline-block;
    color: #6bc8ff;
    transition: all 0.25s ease;
}

.thrid-card:hover i {
    transform: scale(1.08);
    color: #a0e0ff;
    text-shadow: 0 0 6px rgba(0, 200, 255, 0.6);
}

.thrid-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: -0.2px;
    color: white;
}

.thrid-card p {
    color: #cae3ff;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

/* gentle border animation */
@keyframes gentleBorderPulse {
    0% {
        border-color: rgba(80, 160, 255, 0.25);
    }

    50% {
        border-color: rgba(80, 200, 255, 0.5);
    }

    100% {
        border-color: rgba(80, 160, 255, 0.25);
    }
}

.thrid-card {
    animation: fadeUpCard 0.6s forwards, gentleBorderPulse 5s infinite ease-in-out;
    animation-delay: 0s, 0.6s;
}

.thrid-card:hover {
    animation-play-state: paused;
}


/* ---------------about third end -------------------- */




/*---------------------------------- about four start----------------------- */

/* main container with abo-four class */
.abo-four {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 790px;
}

/* header block */
.abo-four-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.abo-four-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    padding: 0.5rem 1.4rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.abo-four-badge i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.abo-four-badge span {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #cbd5e6;
    text-transform: uppercase;
}

.abo-four-title {
    font-size: 3.8rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 30%, #94a3f8 70%, #38bdf8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.abo-four-subhead {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.abo-four-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
    margin: 1.5rem auto 0;
    border-radius: 4px;
}

/* grid for 4 cards (abo-four-grid) */
.abo-four-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

/* card base style (abo-four-card) */
.abo-four-card {
    position: relative;
    background: rgba(12, 18, 32, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 2rem 1.8rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: default;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.abo-four-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 1.8px;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.4), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.abo-four-card:hover::before {
    opacity: 0.8;
}

.abo-four-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 22, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 40px -18px rgba(0, 0, 0, 0.5);
}

/* icon inside card */
.abo-four-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #38bdf8;
}

.abo-four-card:hover .abo-four-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

/* card heading */
.abo-four-card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

/* card paragraph */
.abo-four-card p {
    color: #cbd5e6;
    line-height: 1.65;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

/* accent line */
.abo-four-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    margin: 0.8rem 0 1rem;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.abo-four-card:hover .abo-four-accent {
    width: 80px;
}

/* number badge */
.abo-four-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    pointer-events: none;
    transition: 0.2s;
}

.abo-four-card:hover .abo-four-number {
    color: rgba(255, 255, 255, 0.08);
}

/* mission card variation icon color */
.abo-four-card--mission .abo-four-icon {
    color: #e879f9;
}

.abo-four-card--values .abo-four-icon {
    color: #2dd4bf;
}

.abo-four-card--promise .abo-four-icon {
    color: #fbbf24;
}

.abo-four-card--values .abo-four-accent {
    background: linear-gradient(90deg, #2dd4bf, #14b8a6);
}

.abo-four-card--promise .abo-four-accent {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

/* Feature area */

.feature-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, 0.2),
            transparent);
    opacity: 0;
    transition: 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            #0d6efd,
            #00d4ff);
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* footer signature */
.abo-four-footer {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.abo-four-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    color: #8193b2;
    font-weight: 500;
}

.abo-four-footer-item i {
    font-size: 0.9rem;
    color: #3b82f6;
}


/*---------------------------------- about four  end-------------------------------------  */






/* =================================================-------------footer section start ---------------============================================== */


/* dummy page content to show footer context */
.page-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.page-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, #0a2b5e, #2266cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.page-preview p {
    color: #1f3a6b;
    max-width: 550px;
    margin-top: 0.8rem;
    font-weight: 500;
}

/* ----- NEW FOOTER DESIGN (UNIFIED BLUE THEME) ----- */
.chemtech-footer {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    border-top: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 -20px 35px -15px rgba(0, 0, 0, 0.5);
}

/* animated background particles / blue nebulae */
.footer-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: driftGlow 20s infinite alternate;
}

.sphere-1 {
    width: 350px;
    height: 350px;
    background: #3b82f6;
    top: -100px;
    right: -50px;
}

.sphere-2 {
    width: 450px;
    height: 450px;
    background: #1e4fbd;
    bottom: -150px;
    left: -80px;
    animation-duration: 25s;
}

.sphere-3 {
    width: 220px;
    height: 220px;
    background: #60a5fa;
    top: 40%;
    left: 20%;
    filter: blur(70px);
    opacity: 0.15;
}

@keyframes driftGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(25px, 20px) scale(1.2);
    }
}

/* floating micro icons (molecular decor) */
.float-molecule {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(96, 165, 250, 0.2);
    pointer-events: none;
    z-index: 1;
    animation: floatSlow 14s infinite alternate;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* main footer container */
.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3.2rem 2rem 2rem;
    position: relative;
    z-index: 5;
}

/* grid layout: 4 columns flexible */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.5rem;
}

/* columns styling */
.footer-col {
    transition: transform 0.2s ease;
}

.footer-col h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.35rem;
    background: linear-gradient(135deg, #fff, #b9dcff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: -0.2px;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.footer-col:hover h3:after {
    width: 75px;
}

.brand-text {
    color: #c7dcff;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(59, 130, 246, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfd9ff;
    font-size: 1.2rem;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
}

/* list styles */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbdef5;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    font-weight: 450;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: #5c9eff;
    transition: transform 0.2s;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-col ul li a:hover i {
    transform: translateX(4px);
    color: #90caf9;
}

/* newsletter area */
.news-group {
    margin-top: 0.2rem;
}

.news-input {
    width: 100%;
    background: rgba(18, 40, 80, 0.7);
    border: 1px solid #2c5aa6;
    border-radius: 60px;
    padding: 12px 18px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.25s;
    backdrop-filter: blur(3px);
}

.news-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    background: #0c2c58;
}

.news-input::placeholder {
    color: #92add9;
}

.subs-button {
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(100deg, #1e5bd7, #0f3d9e);
    border: none;
    border-radius: 60px;
    padding: 11px 10px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 12px -5px rgba(0, 0, 0, 0.5);
}

.subs-button i {
    font-size: 0.85rem;
}

.subs-button:hover {
    background: linear-gradient(100deg, #2b6eff, #1f4bc2);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -10px #2b6eff80;
}

.subs-button:active {
    transform: scale(0.97);
}

/* contact details */
.contact-details {
    margin-top: 1rem;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    color: #cbdef5;
}

.contact-line i {
    width: 24px;
    font-size: 0.95rem;
    color: #6ea5ff;
}

/* bottom bar */
.footer-bar {
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding-top: 1.5rem;
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9bb1d0;
}

.footer-bar .legal-links {
    display: flex;
    gap: 8px;
}

.footer-bar .legal-links a {
    color: #9bb1d0;
    text-decoration: none;
    transition: 0.2s;
}

.footer-bar .legal-links a:hover {
    color: white;
}

/* science badge (interactive) */
.science-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(254, 254, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 80px;
    padding: 5px 14px;
    font-size: 0.7rem;
    gap: 8px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 0.5px solid rgba(96, 165, 250, 0.5);
    color: white;
}

.science-badge i {
    font-size: 0.75rem;
}

.science-badge:hover {
    background: #2563eb60;
    transform: translateY(-2px);
}

/* toast message style */
.toast-notify {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #04264f;
    backdrop-filter: blur(12px);
    border: 1px solid #3b82f6;
    border-radius: 60px;
    padding: 10px 24px;
    color: #e0f0ff;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 9999;
    box-shadow: 0 12px 20px -8px black;
    white-space: nowrap;
    font-family: 'Inter', monospace;
    animation: fadeSlide 0.2s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}



/* =================================================-------------footer section end  ---------------============================================== */




/* ====== contact page     ===== */


/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    padding: 100px 8%;
}

.contact-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

/* FORM */

.contact-form {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 40px;
}

.contact-form .small-title {
    color: #4dcfff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    padding: 14px 15px;
    color: #fff;
    margin-bottom: 15px;
    outline: none;
    transition: .4s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, .5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4dcfff;
    background: rgba(255, 255, 255, .12);
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0d6efd, #00d4ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 160, 255, .3);
}

/* INFO AREA */

.contact-info {
    padding-top: 10px;
}

.contact-info .desc {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.info-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    border-radius: 16px;
    padding: 22px;
    transition: .4s;
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .09);
}

.info-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.info-card i {
    font-size: 22px;
    color: #4dcfff;
}

.info-card h4 {
    margin-bottom: 0;
    color: white;
    font-size: 18px;
}

.info-card p {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    margin-bottom: 4px;
}

.info-card p a {
    color: rgba(255, 255, 255, .65);
    transition: .2s ease;
}

.info-card p a:hover {
    color: #4dcfff;
}

/* MAP */

.map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.map-box {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
}

.map-label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    padding: 14px 16px 0;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 240px;
    margin-top: 10px;
    border: none;
    filter: grayscale(.2) invert(.92) contrast(.9);
}

@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   SCROLL ANIMATION
========================== */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   FLOATING EFFECT
========================== */

.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-banner {
    background-image: url(../images/hero/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
    width: 100%;
    padding: 100px;
    display: flex;
    align-items: center;
}

.welcome-banner {
    background: rgb(0 0 0 / 62%);
    padding: 50px;
    max-width: 800px;
    display: block;
    margin: auto;
    border-radius: 25px 0px;
    color: #fff;
    margin-top: 100px;
}

.welcome-banner h4 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    font-size: 32px;
}

/* WhatsApp Floating Button */
.whatsapp-chat {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-chat:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Pulse Animation */
.whatsapp-chat::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.navbar .dropdown-menu {
    display: block;
    min-width: 260px;
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 0;
    padding: 10px;
    background: rgba(4, 20, 40, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    pointer-events: none;
    left: auto;
    right: 0;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (min-width: 576px) {
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-item {
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    transition: background .2s ease, padding-left .2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(77, 207, 255, 0.15);
    color: #4dcfff;
    padding-left: 18px;
}

/* ===== Industries Page ===== */
.industries-section {
    padding: 60px 0 100px;
}

.industries-lead {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .7);
    line-height: 1.9;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.industry-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    transition: .4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.industry-image {
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-label {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    background: linear-gradient(135deg, #0d6efd, #00d4ff);
}

/* ===== Generic Page Banner (image background hero) ===== */
.page-banner {
    position: relative;
    min-height: 380px;
    /*margin-top: 76px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
}

.page-banner-eyebrow {
    color: #4dcfff;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}

.page-banner-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .85);
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 260px;
    }

    .page-banner-title {
        font-size: 34px;
    }
}

/* ===== Exports Page ===== */
.export-section {
    padding: 70px 0;
    text-align: center;
}

.export-about {
    max-width: 800px;
    margin: 0 auto;
}

.export-section .thrid-grid {
    margin: 0 auto;
}

.export-section .thrid-card {
    text-align: center;
}

.export-heading {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.export-subheading {
    color: #4dcfff;
    font-size: 22px;
    font-weight: 700;
    margin: 50px 0 22px;
}

.export-about p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 18px;
}

.export-doc-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 35px;
}

.export-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.export-doc-list li {
    color: #cae3ff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.export-doc-list li i {
    color: #4dcfff;
    margin-top: 3px;
}

.export-doc-list li a {
    color: #cae3ff;
    text-decoration: none;
    transition: .2s ease;
}

.export-doc-list li a:hover {
    color: #4dcfff;
}

/* ===== Careers - Apply Now Modal ===== */
.apply-modal .modal-content {
    background: linear-gradient(160deg, rgba(8, 28, 55, .97), rgba(4, 18, 38, .98));
    border: 1px solid rgba(80, 160, 255, .25);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    color: #eaf4ff;
}

.apply-modal .modal-header,
.apply-modal .modal-footer {
    border-color: rgba(255, 255, 255, .1);
}

.apply-modal .modal-title {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-modal .modal-title i {
    color: #25D366;
}

.apply-modal .btn-close {
    filter: invert(1) brightness(2);
}

.apply-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #cae3ff;
    background: rgba(37, 211, 102, .08);
    border: 1px solid rgba(37, 211, 102, .3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.apply-note i {
    color: #25D366;
    margin-top: 2px;
}

.apply-form label {
    color: #a3e4ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.apply-form .form-control {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.apply-form .form-control:focus {
    background: rgba(255, 255, 255, .1);
    border-color: #4dcfff;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(77, 207, 255, .15);
}

.apply-form .form-control::placeholder {
    color: rgba(255, 255, 255, .45);
}

.apply-form .form-control[type="file"] {
    color: #cae3ff;
}

.apply-form .form-control[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #0d6efd, #00d4ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    margin-right: 12px;
    cursor: pointer;
}

.apply-submit-btn {
    width: 100%;
    border: none;
    border-radius: 60px;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s ease;
}

.apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, .45);
    color: #fff;
}

.apply-confirm {
    text-align: center;
    padding: 6px 4px 2px;
}

.apply-confirm-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .15);
    border: 1px solid rgba(37, 211, 102, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #25D366;
}

.apply-confirm h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.apply-confirm p {
    color: #cae3ff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.apply-confirm p strong {
    color: #ffb84d;
}

.apply-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 60px;
    padding: 10px 22px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
    word-break: break-all;
}

.apply-file-chip i {
    color: #4dcfff;
    flex-shrink: 0;
}

.apply-confirm-hint {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .6);
}