/* GLOBAL MODERN UI */
body {
    scroll-behavior: smooth;
}

/* Gradient Overlay Upgrade */
.overlay.overlay1 {
    background: linear-gradient(120deg, rgba(10, 20, 50, 0.9), rgba(255, 79, 1, 0.4));
}

/* Premium Heading */
.tp-caption.best {
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Glow Button */
.banner-btn {
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.banner-btn:hover::before {
    top: 0;
    left: 0;
}

/* Smooth zoom background */
.rev_slider li img {
    animation: zoomHero 20s ease-in-out infinite;
}

@keyframes zoomHero {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}



.stats-section {
    padding: 40px 0;
    background: #0a1432;
    color: #fff;
}

.stats-section h2 {
    font-size: 40px;
    color: var(--accent);
}

.stats-section {
    padding: 60px 0;
    background: #0b1934;
    /* Dark background makes the blue pop */
    color: #ffffff;
}

.stat-box {
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Keep the number and symbol together */
.stat-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0691d5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e2e8f0;
    margin: 0;
}


.industry-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: 0.4s;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.industry-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.25) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 60%);
    transform: translateX(-120%) skewX(-20deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

/* hover */
.industry-box:hover::after {
    transform: translateX(120%) skewX(-20deg);
}

.industry-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.image-inner img {
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =========================
   SLIDER SIZE
========================= */
.premiumSlider {
    height: 90vh;
}

/* =========================
   SLIDE BASE
========================= */
.swiper-slide {
    position: relative;
    overflow: hidden;
    background-size: cover;
    /* prevents repeat */
    background-position: center;
    background-repeat: no-repeat;
    /* IMPORTANT */
}

/* Background image via <img> */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
}

/* Cinematic zoom */
.swiper-slide-active img {
    transform: scale(1);
}

/* =========================
   OVERLAY (single clean one)
========================= */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(19, 29, 59, 0.85) 0%,
            rgba(19, 29, 59, 0.4) 50%,
            rgba(19, 29, 59, 0.1) 80%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* =========================
   CONTENT
========================= */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    color: #fff;
    z-index: 2;

    /* glass effect */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;

    /* animation base */
    opacity: 0;
}

/* =========================
   TEXT
========================= */
.hero-content h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.hero-content h1 span {
    color: #06b6d4;
    /* updated accent (better than orange) */
}

.hero-content p {
    margin: 15px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
   BUTTON
========================= */
.hero-btn {
    display: inline-block;
    margin-top: 10px;
}

/* =========================
   STAGGER TEXT ANIMATION
========================= */

/* initial state */
.hero-content h1,
.hero-content p,
.hero-content .hero-btn {
    opacity: 0;
    transform: translateY(40px);
}

/* active animations */
.swiper-slide-active .hero-content {
    animation: fadeContainer 0.8s ease forwards;
}

.swiper-slide-active .hero-content h1 {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.swiper-slide-active .hero-content p {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.swiper-slide-active .hero-content .hero-btn {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes fadeContainer {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   EXIT ANIMATION (smooth)
========================= */
.swiper-slide-prev .hero-content,
.swiper-slide-next .hero-content {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-60%);
    }
}

.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}






/* industy box */
.industry-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.industry-box i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 15px;
}

.industry-box h4 {
    font-size: 16px;
    font-weight: 600;
}

/* Hover effect */
.industry-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/* welcome section animation */


/* INITIAL STATE */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

/* LEFT IMAGE ANIMATION */
.reveal-left {
    transform: translateX(-80px);
}

/* RIGHT TEXT ANIMATION */
.reveal-right {
    transform: translateX(80px);
}

/* ACTIVE STATE */
.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT FADE-UP INSIDE */
.info-welcome h1,
.info-welcome p,
.info-welcome h3,
.info-button {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

/* ACTIVE TEXT */
.reveal-active .info-welcome h1,
.reveal-active .info-welcome p,
.reveal-active .info-welcome h3,
.reveal-active .info-button {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER EFFECT */
.reveal-active .info-welcome h1 {
    transition-delay: 0.2s;
}

.reveal-active .info-welcome p:nth-child(1) {
    transition-delay: 0.4s;
}

.reveal-active .info-welcome p:nth-child(2) {
    transition-delay: 0.6s;
}

.reveal-active .info-welcome h3 {
    transition-delay: 0.8s;
}

.reveal-active .info-button {
    transition-delay: 1s;
}

.image-inner img {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}




.infomation li p {
    font-size: 15px;
    line-height: 1.6;
}

.infomation li span {
    font-weight: 700;
    color: var(--primary);
}

/* Hover effect */
.infomation li:hover {
    transform: translateX(5px);
    transition: 0.3s;
}

.image-wrap a.opdf {
    font-size: 30px;
    width: 70px;
    height: 70px;
}

/* ===== SECTION WRAPPER ===== */

/* SECTION BACKGROUND */
.why-choose-animate {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F4F8FB 0%, #ffffff 100%);
    padding: 40px 0;
}

/* ANIMATED GRADIENT BLOB */
.why-choose-animate::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatBlob 8s ease-in-out infinite;
}

/* SECOND BLOB */
.why-choose-animate::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.15), transparent 70%);
    bottom: -120px;
    right: -100px;
    animation: floatBlob 10s ease-in-out infinite reverse;
}

/* FLOAT ANIMATION */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.why-choose-animate .reveal-left,
.why-choose-animate .reveal-right {
    opacity: 0;
    transition: all 0.9s ease;
}

/* LEFT */
.why-choose-animate .reveal-left {
    transform: translateX(-80px);
}

/* RIGHT */
.why-choose-animate .reveal-right {
    transform: translateX(80px);
}

/* ACTIVE */
.why-choose-animate .reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LIST ANIMATION ===== */
.why-choose-animate .infomation li {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

/* STAGGER */
.why-choose-animate .reveal-active .infomation li:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.why-choose-animate .reveal-active .infomation li:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.why-choose-animate .reveal-active .infomation li:nth-child(3) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.why-choose-animate .reveal-active .infomation li:nth-child(4) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.why-choose-animate .reveal-active .infomation li:nth-child(5) {
    transition-delay: 1s;
    opacity: 1;
    transform: translateY(0);
}


/* ===== IMAGE EFFECT ===== */
.why-choose-animate .image-heading img {
    transition: 1s ease;
}

.why-choose-animate .reveal-active .image-heading img {
    transform: scale(1.05);
}

/* FLOAT */
.why-choose-animate .image-wrap img {
    animation: whyFloat 4s ease-in-out infinite;
}

@keyframes whyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* HOVER */
.why-choose-animate .image-box {
    transition: 0.4s;
}

.why-choose-animate .image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* ===== LIST ITEM HOVER ===== */
.why-choose-animate .infomation li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-choose-animate .infomation li:hover {
    transform: translateX(10px);
    background: #fff;
    padding-left: 10px;
    border-left: 3px solid var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* NUMBER HOVER */
.why-choose-animate .infomation li span {
    transition: 0.3s;
}

.why-choose-animate .infomation li:hover span {
    /* color: var(--accent); */
    transform: scale(1.2);
}

/* TEXT HOVER */
.why-choose-animate .infomation li p {
    transition: 0.3s;
}

.why-choose-animate .infomation li:hover p {
    color: #111;
}

.why-choose-animate .themesflat-btn.hvr-shutter-out-verticallll {
    background-color: white;
    color: var(--primary);
}

.why-choose-animate .themesflat-btn.hvr-shutter-out-verticallll:hover {
    color: white;
}


/* MAIN IMAGE ZOOM */
.why-choose-animate .image-heading img {
    transition: 0.6s ease;
}

.why-choose-animate .image-heading:hover img {
    transform: scale(1.08);
}

/* BROCHURE CARD HOVER */
.why-choose-animate .image-box {
    transition: all 0.4s ease;
    cursor: pointer;
}

.why-choose-animate .image-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


/* Oue MISSION */
.our-mision-vision {
    margin-top: 40px;
    padding-bottom: 40px;
}

.mission-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box h3 {
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}



/* ===== SECTION BASE ===== */
.mission-animate {
    overflow: hidden;
}

/* ===== SCROLL ANIMATION ===== */
.mission-animate .reveal-left,
.mission-animate .reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.mission-animate .reveal-left {
    transform: translateX(-60px);
}

.mission-animate .reveal-right {
    transform: translateX(60px);
}

.mission-animate .reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CARD STYLE ===== */
.mission-animate .mission-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.mission-animate .mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* SUBTLE GLOW */
.mission-animate .mission-box:hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(6, 182, 212, 0.12), transparent);
    top: 0;
    left: -100%;
    animation: shine 0.8s;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* ===== TEXT ANIMATION ===== */
.mission-animate .mission-box h3,
.mission-animate .mission-box p {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

/* STAGGER */
.mission-animate .reveal-active .mission-box:nth-child(1) h3 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.mission-animate .reveal-active .mission-box:nth-child(1) p {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.mission-animate .reveal-active .mission-box:nth-child(2) h3 {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.mission-animate .reveal-active .mission-box:nth-child(2) p {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

/* ===== HIGHLIGHT TEXT ===== */
.mission-animate .highlight {
    transition: 0.3s;
}

.mission-animate .highlight:hover {
    color: var(--primary);
}

/* ===== IMAGE EFFECT ===== */
.mission-animate img {
    max-width: 100%;
    transition: 1s ease;
}

/* FLOATING IMAGE */
.mission-animate .reveal-active img {
    animation: floatMission 5s ease-in-out infinite;
}

@keyframes floatMission {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* IMAGE HOVER */
.mission-animate .reveal-right:hover img {
    transform: scale(1.05);
}





/* SECTION */
.cert-premium-new {
    padding: 50px 0;
    background: linear-gradient(180deg, #F4F8FB, #ffffff);
    overflow: hidden;
}

/* TITLE */
.cert-premium-new .sub-title {
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--accent);
}

.cert-premium-new .main-title {
    font-size: 34px;
    font-weight: 700;
    color: #0B3C5D;
    margin: 17px 0;
}

.cert-premium-new .desc {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* SLIDER */
.cert-slider-new {
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.cert-track-new {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: certScroll 25s linear infinite;
}

/* PAUSE ON HOVER */
.cert-slider-new:hover .cert-track-new {
    animation-play-state: paused;
}

/* CARD DESIGN */
.cert-card {
    min-width: 160px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.cert-card img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* TEXT */
.cert-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* HOVER EFFECT */
.cert-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 168, 168, 0.2);
}

/* SCROLL ANIMATION */
@keyframes certScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}








.highlight-line {
    margin-top: 10px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #666d81;
    margin-top: 10px;
}

/* Reduce card size */
.imagebox.style1 {
    transform: scale(0.92);
    transition: 0.3s;
}

/* Make text tighter */
.imagebox-content {
    padding: 10px 15px !important;
}

/* Reduce heading size */
.imagebox-heading h3 {
    font-size: 16px;
}

/* Reduce description */
.imagebox-desc p {
    font-size: 13px;
    margin-bottom: 5px;
}

/* Button small */
.imagebox-button h2 {
    font-size: 12px;
}

/* Hover effect (premium touch) */
.imagebox.style1:hover {
    transform: scale(1);
}

.distance-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.imagebox-image img {
    width: 100%;
    height: 280px;
    /* adjust: 160–200 based on your need */
    object-fit: cover;
    /* keeps image nicely cropped */
}

/* Reduce overall card height */
.imagebox.style1 {
    margin-bottom: 10px;
}

.imagebox-item .imagebox.style1 .imagebox-title {
    right: 210px;
}

.flat-recent-project {
    padding: 40px 0 30px;
}

.main-services .title-section.style1 {
    padding-bottom: 25px !important;
}