* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #E6F1F6 !important;
}


/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.4s ease;
}

/* Scroll state */
.main-header.scrolled {
    top: 0px;
}

/* ===== NAV ===== */
.nav-menu {
    width: 75%;
    margin: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    transition: 0.4s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.main-header.scrolled .nav-menu {
    width: 100%;
    border-radius: 0;
}

/* Nav List */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 5px 30px;
    list-style: none;
    margin: 0px;
    /* justify-content: space-between; */
}


/* Links */
.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: 0.4s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Logo */
.logo img {
    height: 60px;
}

/* ===== MOBILE BAR ===== */
.mobile-bar {
    display: none;
    width: 80%;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    padding: 14px 20px;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    height: 48px;
}

/* Hamburger */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        height: 35px;
    }

    .mobile-bar {
        display: flex;
        /* margin: 0px; */
        padding: 10px 15px;
    }

    .nav-menu {
        width: 80%;
        max-height: 0;
        overflow: hidden;
        margin-top: 10px;
    }

    .nav-menu.active {
        max-height: 420px;
    }

    .nav-links {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }
}



/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slides wrapper */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1.5s ease;
}

/* Active slide */
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Slide content */
.content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

.content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.content p {
    font-size: 20px;
    opacity: 0.9;
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 6px 16px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.45);
}

.nav-btn.prev {
    left: 30px;
}

.nav-btn.next {
    right: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .content {
        left: 6%;
        bottom: 18%;
    }

    .content h1 {
        font-size: 38px;
    }

    .content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 500px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 15px;
    }

    .nav-btn {
        font-size: 30px;
        padding: 4px 12px;
    }
}


/* =====================================================
   WELCOME SECTION
===================================================== */
.welcome {
    position: relative;
    padding: clamp(60px, 8vw, 70px) 15px;
    overflow: hidden;
    background-color: #fff;
}

/* ================= BACKGROUND GLOW ================= */

.welcome::before,
.welcome::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Top glow */
.welcome::before {
    width: clamp(300px, 40vw, 520px);
    height: clamp(300px, 40vw, 520px);
    top: clamp(-180px, -10vw, -100px);
    left: clamp(-180px, -10vw, -100px);
    background: radial-gradient(circle,
            rgba(0, 114, 255, 0.18),
            rgba(0, 114, 255, 0.05) 50%,
            transparent 80%);
}

/* Bottom glow */
.welcome::after {
    width: clamp(250px, 35vw, 420px);
    height: clamp(250px, 35vw, 420px);
    bottom: clamp(-160px, -10vw, -80px);
    right: clamp(-140px, -10vw, -80px);
    background: radial-gradient(circle,
            rgba(120, 75, 255, 0.16),
            rgba(120, 75, 255, 0.04) 50%,
            transparent 85%);
}

/* ================= CONTAINER FIX ================= */

.welcome .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ================= TITLE ================= */

.welcome .title {
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 0 10px;
}

.welcome .title h1 {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.welcome .title b {
    background: linear-gradient(90deg, #00c6ff, #002e46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome .title p {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.7;
    color: #000;
    opacity: 0.9;
    margin-top: 12px;
}

/* ================= TRUST GRID ================= */

.trust {
    margin-top: clamp(40px, 6vw, 70px);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 3vw, 32px);
}

/* Card */
.trust-box {
    border-radius: 18px;
    padding: clamp(22px, 3vw, 36px) 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.trust-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.trust-box h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #00c6ff, #002e46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-box p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.6;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Large Tablet */
@media (max-width: 991px) {

    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome {
        padding: 70px 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .trust-row {
        /* grid-template-columns: 2fr ; */
    }

    .welcome {
        padding: 60px 12px;
    }

    .welcome .title h1 {
        line-height: 1.3;
    }

    .welcome .title p {
        font-size: 14px;
    }

    .trust-box {
        padding: 26px 16px;
    }
}

/* Extra Small Devices (320px–360px) */
@media (max-width: 360px) {

    .welcome {
        padding: 50px 10px;
    }

    .trust-box h2 {
        font-size: 24px;
    }

    .trust-box p {
        font-size: 13px;
    }
}



/* =====================================================
   WORK SECTION
===================================================== */

.work-section {
    padding: 40px 0;
    /* background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%); */
    overflow: hidden;
}


/* =====================================================
   SLIDER WRAPPER
===================================================== */

.work-slider-wrapper {
    position: relative;
    /* max-width: 1200px; */
    /* margin: auto; */
    padding: 0 60px;
}

/* =====================================================
   SLIDER
===================================================== */

.work-slider {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease;
}

/* =====================================================
   WORK CARD
===================================================== */

.work-card {
    position: relative;
    min-width: 360px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

/* Active / hover emphasis */
.work-card.active,
.work-card:hover {
    transform: translateY(-14px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

/* Image */
.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover img {
    transform: scale(1.12);
}

/* Overlay gradient */
.work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.15),
            transparent);
    z-index: 1;
}

/* =====================================================
   WORK INFO
===================================================== */

.work-info {
    position: absolute;
    bottom: 26px;
    left: 26px;
    z-index: 2;
    color: #fff;
}

.work-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.work-info span {
    font-size: 14px;
    opacity: 0.85;
}

/* =====================================================
   NAVIGATION BUTTONS
===================================================== */

.work-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    margin: 50px;
}

.work-nav:hover {
    background: #0072ff;
    color: #fff;
}

.work-nav.prev {
    left: 0;
}

.work-nav.next {
    right: 0;
}

/* =====================================================
   PAGINATION
===================================================== */

.work-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.work-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfd6e0;
    transition: 0.3s;
}

.work-pagination .dot.active {
    width: 26px;
    border-radius: 6px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
    .work-slider-wrapper {
        padding: 0 40px;
    }

    .work-card {
        min-width: 300px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .work-section {
        padding: 80px 0;
    }

    .work-slider-wrapper {
        padding: 0 20px;
    }

    .work-card {
        min-width: 85%;
        height: 360px;
    }

    .work-nav {
        /* display: none; */
        margin: 10px;
    }
}




/* ================= MAIN HEADING ================= */
.main-heading {
    text-align: center;
    margin-bottom: 40px;
}

.main-heading .top {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #00c6ff;
    background: #ffffff;
    padding: 8px 22px;
    margin-bottom: 14px;
    border-radius: 30px;
}

.main-heading .bottom {
    font-size: 35px;
    font-weight: 700;
    color: #0a2c44;
    line-height: 1.15;
}

/* ================= RESPONSIVE ================= */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
    .main-heading .bottom {
        font-size: 36px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .main-heading {
        margin-bottom: 32px;
    }

    .main-heading .top {
        font-size: 13px;
        letter-spacing: 2px;
        padding: 7px 18px;
    }

    .main-heading .bottom {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .main-heading .bottom {
        font-size: 24px;
    }
}



/* =========================
   PRODUCT SECTION
========================= */
.product-section {
    padding: 40px 0;
}

.product-boxes {
    display: flex;
    gap: 12px;
    height: 400px;
    margin-top: 40px;
}

/* =========================
   PRODUCT ITEM
========================= */
.product-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    transition: flex 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Expanded item */
.product-item.active {
    flex: 2;
}

/* Image */
.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* =========================
   OVERLAY
========================= */
.product-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-item:hover::after,
.product-item.active::after {
    opacity: 1;
}

/* =========================
   CAPTION
========================= */
.product-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
}

.product-item:hover .product-caption,
.product-item.active .product-caption {
    opacity: 1;
    transform: translateY(0);
}

.product-caption h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.product-caption p {
    margin-top: 4px;
    font-size: 14px;
    opacity: 0.85;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .product-boxes {
        height: 320px;
    }

    .product-caption h4 {
        font-size: 16px;
    }

    .product-caption p {
        font-size: 13px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    .product-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        height: auto;
    }

    .product-item {
        height: 260px;
        flex: unset;
        transition: none;
    }

    .product-item.active {
        flex: unset;
    }

    .product-item::after {
        opacity: 1;
    }

    .product-caption {
        opacity: 1;
        transform: none;
    }
}





/* =====================================================
   PROJECTS SECTION
===================================================== */
.projects-section {
    padding: clamp(60px, 8vw, 80px) 0;
    overflow: hidden;
}

/* Container grid for desktop */
.projects-section .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

/* =====================================================
   LEFT BIG PROJECT CARD
===================================================== */
.project-left {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 12 / 9;
    background: #000;
}

.project-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-left:hover img {
    transform: scale(1.05);
}

/* Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));
    padding: clamp(20px, 4vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.project-overlay h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
}

.project-overlay p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 95%;
}

/* =====================================================
   PROJECT META
===================================================== */
.project-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 14px;
}

.project-meta span {
    display: block;
    opacity: 0.7;
    font-size: 13px;
}

.project-meta strong {
    font-size: 14px;
    font-weight: 500
}

/* =====================================================
   RIGHT CONTENT
===================================================== */
.project-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-intro {
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.7;
    margin-bottom: 22px;
    color: #000000;
}

/* =====================================================
   NAV ARROWS
===================================================== */
.nav-arrows {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.nav-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #002e46;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-arrows button:hover {
    background: #005684;
    transform: scale(1.08);
}

/* =====================================================
   PROJECT CARDS STRIP
===================================================== */
.project-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* padding-bottom: 10px; */
}

.project-cards::-webkit-scrollbar {
    display: none;
}

/* Card */
.project-card {
    min-width: clamp(150px, 45vw, 180px);
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.project-card img {
    width: 100%;
    height: clamp(140px, 30vw, 190px);
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}

.project-card h4 {
    font-size: 14px;
    text-align: center;
    color: #444;
}

/* Active card */
.project-card.active {
    transform: scale(1.06);
}

.project-card.active h4 {
    color: #002e46;
    font-weight: 600;
}

/* =====================================================
   TABLET
===================================================== */
@media (max-width: 992px) {
    .projects-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-left {
        aspect-ratio: 10 / 10;
    }

    .nav-arrows {
        justify-content: center;
    }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 576px) {
    .project-overlay {
        padding: 16px;
    }

    .project-overlay h3 {
        font-size: 20px;
    }

    .project-overlay p {
        font-size: 14px;
        max-width: 100%;
    }

    .project-intro {
        text-align: center;
        font-size: 14px;
    }

    .project-card {
        min-width: 70%;
        display: none;
    }

    .project-card img {
        height: 160px;
    }
}



.clients {
    padding: 50px 0;
}

/* .main-heading {
    text-align: center;
    margin-bottom: 35px;
}

.main-heading .top {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #00c6ff;
    margin-bottom: 12px;
}

.main-heading .bottom {
    font-size: 36px;
    font-weight: 700;
    color: #0a2c44;
} */

/* ===== SLIDER ===== */
.client-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.client-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.client-slider:nth-child(3) .client-track {
    animation: scroll-right 20s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
}

.client-logo img {
    max-height: 80px;
    display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .client-track {
        gap: 30px;
    }

    .client-logo img {
        max-height: 50px;
    }
}



/* ===== ABOUT SECTION ===== */
.about {
    padding: 50px 0px;
}

/* .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Tablets */
@media (max-width: 992px) {
    /* .container {
        max-width: 960px;
    } */
}

/* Small tablets */
@media (max-width: 768px) {
    /* .container {
        max-width: 720px;
        padding: 0 16px;
    } */
}

/* Mobile */
@media (max-width: 576px) {
    /* .container {
        max-width: 100%;
        padding: 0 14px;
    } */
}


/* ROW - TWO COLUMNS */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* responsive stacking */
}

/* IMAGE COLUMN */
.about-img {
    flex: 1 1 45%;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* TEXT COLUMN */
.about-txt {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADINGS */

.about .main-heading {
    margin-bottom: 0px;
}

.about .main-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    margin: 0px;
}


/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
    .about .main-heading .bottom {
        font-size: 32px;
    }

    .about .main-heading p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-txt {
        text-align: center;
    }

    .about button {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .about .main-heading .bottom {
        font-size: 24px;
    }

    .about .main-heading p {
        font-size: 14px;
    }
}




/* ===== TESTIMONIAL SECTION ===== */
.ts-wrapper {
    position: relative;
    padding: 40px 0px 80px;
    overflow: hidden;
}


/* Slider Layout */
.ts-slider {
    background: #fff;
    border-radius: 8px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 30px;
}

/* Side Cards */
.ts-side {
    position: relative;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.ts-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
}

.ts-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: 0.3s;
}


/* Center Card */
.ts-center {
    display: flex;
    justify-content: center;
}

.ts-card {
    max-width: 650px;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Profile */
.ts-profile img {
    width: 120px;
    height: 180px;
    border-radius: 6px;
    object-fit: cover;
}

/* Content */
.ts-content {
    position: relative;
}

.ts-quote {
    font-size: 80px;
    color: #4b5be6;
    position: absolute;
    top: -40px;
    left: -10px;
    opacity: 0.15;
}

.ts-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ts-content h4 {
    font-size: 18px;
    margin: 0;
    color: #111;
}

.ts-content span {
    font-size: 14px;
    color: #777;
}

/* ================= FULL RESPONSIVE IMPROVEMENTS ================= */

/* Large Screens */
@media (max-width: 1200px) {
    .ts-slider {
        padding: 50px 30px;
        gap: 20px;
    }

    .ts-card {
        max-width: 100%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .ts-slider {
        grid-template-columns: 90px 1fr 90px;
        padding: 40px 25px;
    }

    .ts-side {
        height: 90px;
    }

    .ts-profile img {
        width: 100px;
        height: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ts-slider {
        grid-template-columns: 1fr;
        padding: 35px 20px;
        text-align: center;
    }

    .ts-side {
        display: none;
    }

    .ts-card {
        flex-direction: column;
        gap: 20px;
    }

    .ts-profile img {
        width: 90px;
        height: 130px;
    }

    .ts-content p {
        font-size: 15px;
    }

    .ts-quote {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        font-size: 70px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ts-wrapper {
        padding: 30px 15px 60px;
    }

    .ts-slider {
        padding: 25px 15px;
    }

    .ts-profile img {
        width: 80px;
        height: 110px;
    }

    .ts-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .ts-content h4 {
        font-size: 16px;
    }

    .ts-content span {
        font-size: 13px;
    }

    .ts-quote {
        font-size: 60px;
        top: -20px;
    }
}




/* ===============================
   EXHIBITIONS SECTION
================================= */

.exhibitions {
    padding: 40px 0;
}

/* ROW FIX (if not using Bootstrap) */
.exhibitions .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* ===============================
   CARD
================================= */

.exhibitions-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 1 1 calc(33.333% - 20px);
    padding: 0px;
}

.exhibitions-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* ===============================
   IMAGE
================================= */

.box-img {
    width: 100%;
    height: 275px;
    overflow: hidden;
    padding: 10px 10px 0px 10px;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* .exhibitions-box:hover img {
    transform: scale(1.1);
} */

/* ===============================
   CONTENT
================================= */

.box-txt {
    padding: 10px 15px 15px 15px;
}

.box-txt h1 {
    font-size: 20px;
    font-weight: 600;
    color: #0a2c44;
    text-align: center;
    /* margin-bottom: 12px; */
}

.box-txt p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 15px;
    margin-top: 5px;
    text-align: center;
}

/* ===============================
   META (LOCATION & DATE)
================================= */

.meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.meta i {
    color: #002e46;
    font-size: 15px;
}

/* ===============================
   BUTTON
================================= */

.more {
    position: relative;
    display: block;
    width: fit-content;
    margin: 25px auto 0;
    padding: 14px 30px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.more::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.more::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.35s ease;
}

.more:hover::before {
    width: 100%;
}

.more:hover::after {
    transform: translateX(6px);
}



/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px) {
    .exhibitions-box {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .exhibitions {
        padding: 60px 0;
    }

    .exhibitions-box {
        flex: 1 1 100%;
        margin: 0px 10px;
    }

    .box-img {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .box-txt {
        padding: 22px;
    }

    .box-txt h1 {
        font-size: 18px;
    }

    .meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* =========================================
   GLOBAL SECTION (WITH BG VIDEO)
========================================= */

.Global {
    position: relative;
    min-height: 800px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
}

/* Background Video */
.global-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.Global::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content Layer */
.Global .main-heading,
.presence-grid {
    position: relative;
    z-index: 2;
}

/* =========================================
   BOTTOM ALIGNED PRESENCE GRID
========================================= */

.presence-grid {
    margin-top: auto;
    /* 🔥 pushes to bottom */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    /* padding: 30px; */
    border-radius: 10px;
}

/* =========================================
   PRESENCE CARD
========================================= */

.Presence {
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Presence:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.Presence span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.Presence span img {
    width: 70px;
    height: auto;
}

.Presence p {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .presence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .Global {
        min-height: auto;
        padding: 80px 20px;
    }

    .presence-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .Presence span {
        justify-content: center;
    }

    .Presence p {
        text-align: center;
    }
}



/* ====== TECHNOLOGY SECTION ====== */
/* ====== TECHNOLOGY SECTION ====== */
.Technology {
    position: relative;
    padding: 100px 0;
    background: url("images/Technology bg.jpg") center / cover no-repeat fixed;
}

/* Overlay */
.Technology::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */
}

/* .Technology .container {
    position: relative;
    z-index: 1;
} */

/* ====== TEXT ====== */
.Technology .main-heading h1,
.Technology h2 {
    color: #fff;
}

.Technology .main-heading p,
.Technology .col-8 p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
}

/* ====== GRID SYSTEM ====== */
.Technology .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.Technology .col-6 {
    width: 50%;
    padding: 15px;
}

.tec-p {
    color: #fff;
}

/* ====== FEATURE BOX ====== */
.Technology .col-6>.row {
    display: flex;
    align-items: flex-start;
    padding: 22px;
    gap: 18px;
    border-radius: 14px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease;
}

.Technology .col-6>.row:hover {
    transform: translateY(-6px);
}

/* ICON */
.Technology .col-4 {
    width: 70px;
    flex-shrink: 0;
}

.Technology .col-4 img {
    max-width: 60px;
    width: 100%;
}

/* TEXT COLUMN */
.Technology .col-8 {
    flex: 1;
}

/* ====== TABLET ====== */
@media (max-width: 992px) {
    .Technology .col-6 {
        width: 100%;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {

    /* Disable fixed bg for mobile (browser limitation) */
    .Technology {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .Technology {
        padding: 60px 0;
    }

    .Technology .col-6>.row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .Technology .col-4 img {
        max-width: 50px;
    }
}


/* ================= FOOTER ================= */
footer {
    background: #f9fbff;
    padding: 60px 0 25px;
}

/* ================= ABOUT ================= */
.footer-about img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.6;
    color: #001a46;
    margin-bottom: 15px;
}

/* ================= HEADINGS ================= */
footer h2,
footer h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #001a46;
}

/* ================= LINKS ================= */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #001a46;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

footer ul li a:hover {
    color: #252B70;
}

/* ================= CONTACT ================= */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #001a46;
}

.contact-info i {
    font-size: 16px;
    color: #252B70;
    margin-top: 3px;
    min-width: 18px;
}

.contact-info a {
    color: #001a46;
    text-decoration: none;
}

.contact-info a:hover {
    color: #252B70;
}

/* ================= SOCIAL ================= */
.social-media {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-media a {
    font-size: 16px;
    color: #252B70;
    transition: 0.3s;
}

.social-media a:hover {
    color: #002e46;
}

/* ================= MAP ================= */
.map-responsive iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom b {
    text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }

    .social-media {
        justify-content: center;
    }

    .map-responsive iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px;
    }

    .map-responsive iframe {
        height: 180px;
    }
}


/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Base button */
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Phone */
.phone-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Hover effect */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Pulse animation for WhatsApp */
.whatsapp-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile spacing */
@media (max-width: 576px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}


/* From Uiverse.io by SujitAdroja */
/* .btn {
    color: #002e46;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #002e46;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    display: block;
    margin: 40px auto 0;
    text-align: center;
}

.btn:hover {
    color: white;
}

.btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #002e46;
    z-index: -1;
    transition: all 1s;

}

.btn:hover::before {
    width: 160%;
} */

.btn {
    --color: #002e46;
    display: flex;
    justify-content: center;
    font-family: inherit;
    align-items: center;
    padding: 10px 22px;
    margin: 40px auto 0 !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    border: 2px solid var(--color);
    background: transparent;
    color: var(--color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    transition: color 0.4s ease, transform 0.2s ease;
}

/* animated blob */
.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 200px;
    background: var(--color);
    /* border-radius: 50%; */
    top: 120%;
    left: 120%;
    transition: all 0.6s ease;
}

.btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn:hover::before {
    top: -100px;
    left: 0px;
}

/* active / tap */
.btn:active {
    transform: scale(0.97);
}

/* keyboard accessibility */
.btn:focus-visible {
    outline: 3px solid rgba(0, 46, 70, 0.35);
    outline-offset: 3px;
}


.social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    margin-left: 25px;
}

/* Icon base */
.social-media a {
    width: 40px;
    height: 40px;
    background: rgba(37, 43, 112, 0.08);
    color: #252B70;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.social-media a:hover {
    background: #252B70;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .social-media {
        justify-content: flex-start;
        gap: 12px;
    }

    .social-media a {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .social-media {
        justify-content: center;
        gap: 16px;
        margin: 10px 0px;
    }

    .social-media a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}



/* products-page */




/* =========================
   PAGE BANNER SECTION
========================= */

.page-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.banner-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.page-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.page-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Breadcrumb */
.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb li {
    color: #fff;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 8px;
}

.breadcrumb li:last-child::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-wrapper {
        height: 200px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }
}

/* =========================
   BANNER CONTENT
========================= */
/* .page-banner-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
} */

.page-banner-content h1 {
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.2;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumb li {
    font-size: clamp(13px, 2.5vw, 15px);
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #00c6ff;
}

.breadcrumb li::after {
    content: "/";
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    display: none;
}



/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .breadcrumb {
        gap: 4px;
    }

    .breadcrumb li::after {
        margin: 0 4px;
    }

    .page-banner-content {
        top: 65%;
    }
}





/* Section Background */
.euepment {
    /* background: #cfd8dc; */
    padding: 80px 0;
}


/* Right Content */
.euepment h1 {
    font-weight: 800;
}

.euepment h4 {
    font-weight: 600;
    margin-top: 15px;
}

.euepment-card {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Premium Badge */
.euepment .badge {
    background: #1e5ea8;
    font-weight: 500;
    border-radius: 6px;
}

/* Specification Table Box */
.euepment .table {
    background: #0f4c8a;
    border-collapse: separate;
    border-spacing: 10px 10px;
    border-radius: 5px;
    /* padding: 15px; */
}

.euepment .table th,
.euepment .table td {
    background: #e3e8ea;
    padding: 5px;
    font-weight: 600;
    border: none;
    font-size: 12px;
    border-radius: 5px;
}

.euepment .table th {
    width: 40%;
    text-transform: uppercase;
}

.euepment .table td {
    width: 60%;
}

/* Image */
.euepment img {
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .euepment {
        padding: 50px 0;
    }

    .euepment h1 {
        font-size: 28px;
    }
}



/* product category page */


/* =========================
   PRODUCT CATEGORY SECTION
========================= */

.product-category {
    padding: 60px 0;
    /* background: #f4f8fb; */
}

/* =========================
   PRODUCT CATEGORY ITEM
========================= */

.product-category-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Make entire card clickable */
.category-btn {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Image */
.product-category-item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

/* Image Zoom on Hover */
/* .category-btn:hover img {
    transform: scale(1.05);
} */

/* =========================
   OVERLAY BOX
========================= */

.name-box {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    background: #ffffff;
    border-radius: 8px;
    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Slide effect on hover */
.category-btn:hover .name-box {
    transform: translateY(-6px);
}

/* Text */
.name-box h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0b2c3d;
}

.name-box p {
    margin: 4px 0 0;
    font-size: 16px;
    color: #000000;
}

/* =========================
   VIEW BUTTON
========================= */

.view-btn {
    background: #0b2c3d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-btn i {
    font-size: 12px;
}

/* Hover effect */
.category-btn:hover .view-btn {
    background: #12455f;
    transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .name-box {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }

    .view-btn {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .name-box {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
    }

    .name-box h3 {
        font-size: 16px;
    }

    .name-box p {
        font-size: 13px;
    }
}


/* about page */



/* COMMON */
.we-are {
    padding: 40px;
    text-align: center;
}

.story {
    padding: 40px 0;
    background: #002E46;
}

.main-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    /* text-align: justify; */
}


.we-are .main-heading {
    margin: auto;
}

/* STORY */
.story-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* TABLET */
@media (max-width: 991px) {
    .main-heading .bottom {
        font-size: 34px;
    }

    .we-are,
    .story {
        padding: 60px 0;
    }

    .story-image {
        margin-bottom: 30px;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .main-heading .bottom {
        font-size: 26px;
    }

    .main-heading p {
        font-size: 15px;
    }

    .we-are,
    .story {
        padding: 40px 0;
    }
}



/* SECTION */
.mission {
    padding: 80px 0px 40px;
}

/* CARDS */
.mission-box,
.vision-box {
    padding: 2.5rem;
    background-color: #f8f9fa;
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, .08);
}

/* TYPOGRAPHY */
.mission-box h2,
.vision-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-box p,
.vision-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
}

/* ACCENT */
.mission-box {
    border-start: 4px solid #0d6efd;
}

.vision-box {
    border-start: 4px solid #20c997;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 576px) {
    .mission {
        padding: 2.5rem 0;
    }

    .mission-box,
    .vision-box {
        padding: 15px;
    }

    .mission-box h2,
    .vision-box h2 {
        font-size: 1.5rem;
    }
}


/* ===============================
   WHAT WE DO – SECTION
================================ */

.we-do {
    padding: 4ch 0;
}


/* Row center fix */
@media (min-width: 992px) {
    .we-do .row {
        justify-content: center;
    }
}

/* Service Box */
.service-box {
    text-align: center;
    padding: 40px 30px;
    height: 100%;
}

.service-box i {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 320px;
    margin: 0 auto;
}

/* ===============================
   DESKTOP BORDERS (3 + 2 CENTERED)
================================ */

@media (min-width: 992px) {

    .we-do .col-lg-4 {
        border-right: 1px solid rgba(0, 0, 0, 0.25);
        margin: 0px;
    }

    /* Top row bottom border */
    .we-do .col-lg-4:nth-child(1),
    .we-do .col-lg-4:nth-child(2),
    .we-do .col-lg-4:nth-child(3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    }

    /* Remove last vertical line top row */
    .we-do .col-lg-4:nth-child(3) {
        border-right: none;
    }

    /* Bottom row fixes */
    .we-do .col-lg-4:nth-child(5) {
        border-right: none;
    }
}

/* ===============================
   TABLET (2 COLUMNS)
================================ */

@media (max-width: 991px) and (min-width: 576px) {

    .main-heading .bottom {
        font-size: 34px;
    }

    .we-do .col-md-6 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .we-do .col-md-6:nth-child(even) {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

    .we-do .col-md-6:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

/* ===============================
   MOBILE (STACKED – NO BORDERS)
================================ */

@media (max-width: 575px) {

    .main-heading .bottom {
        font-size: 28px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .we-do .col-lg-4,
    .we-do .col-md-6 {
        border: none !important;
    }
}



.section-services {
    color: #202020;
    padding-top: 80px;
    padding-bottom: 40px;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #002e46;
    border-radius: 3px;
}

.section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    overflow: hidden;
}

.section-services .single-service .service-content {
    position: relative;
    z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #002e46;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #002e46;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
    background-color: #fff;
    color: #002e46;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color .3s;
    color: #000;
}

.section-services .single-service:hover .title {
    color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 15px;
    transition: color .3s;
    color: #000;
    text-align: justify;
}

.section-services .single-service:hover .description {
    color: #fff;
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
    color: #fff;
}

.section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #002e46;
    transition: background-color .3s;
}

.section-services .single-service:hover a:after {
    background-color: #fff;
}





/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 40px 0;
    background: #f8f9fb;
}

.why-choose .main-heading {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose .main-heading .top {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #22376C;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-choose .main-heading .bottom {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

/* Boxes */
.choose-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.choose-box h2 {
    font-size: 18px;
    font-weight: 600;
    color: #22376C;
    margin-bottom: 15px;
}

.choose-box p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* Hover Effect */
.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 55, 108, 0.15);
}

/* Center Image */
.choose-img {
    /* max-width: 220px; */
    width: 100%;
    /* margin: 20px 0; */
    transition: transform 0.4s ease;
}

/* .choose-img:hover {
    transform: scale(1.05);
} */

/* Responsive */
@media (max-width: 991px) {
    .why-choose {
        padding: 70px 0;
    }

    .why-choose .main-heading .bottom {
        font-size: 28px;
    }

    .choose-img {
        margin: 40px 0;
    }
}


/* CERTIFICATES */
.certificates {
    padding: 40px 0;
}


.certificates-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.certificate-item {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.certificate-item img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.certificate-item:hover {
    transform: translateY(-6px);
}

.certificate-item:hover img {
    filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-heading .bottom {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-heading .bottom {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* LIGHTBOX */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* projects page */




/* Section */
.projects {
    padding: 60px 0;
}

/* Tabs */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: #ffffff;
    color: #002e46;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.tab-btn.active {
    background: #002e46;
    color: #fff;
}

/* Tabs content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Project Card */
.project-item {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    transition: .3s;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.project-item h1 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.project-item img,
.project-item video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Meta (Icons Only) */
.project-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.meta-item i {
    font-size: 16px;
    color: #002e46;
}



/* Mobile */
@media (max-width: 991px) {
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* events page */




/* SECTION */
.events {
    padding: 60px 0px;
}


/* GRID */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,700');

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
}

.card {
    width: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.card.dimmed {
    opacity: 0.4;
    transform: scale(0.95);
}

.card.active {
    transform: scale(1.05);
}

/* IMAGE WRAPPER */
.card-image {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

/* Image zoom effect */
.card-image img {
    width: 100%;
    max-height: 300px;
    height: 300px;
    display: block;
    transition: transform 0.4s ease;
}

/* Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(94, 94, 94, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Link icon */
.image-overlay i {
    color: #fff;
    font-size: 28px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.card-image:hover img {
    transform: scale(1.08);
}

.card-image:hover .image-overlay {
    opacity: 1;
}

.card-image:hover .image-overlay i {
    transform: scale(1);
}

.card-location {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #002e46;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    z-index: 99;
}

/* HEADER */
.card-header {
    padding: 10px 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: none;
}

.card-header h2 {
    margin: 0;
    font-size: 18px;
}

.card-date {
    font-size: 13px;
    color: #666;
}

.toggle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #002e46;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card.active .toggle-arrow {
    transform: rotate(180deg);
    background: #002e46;
    color: #ffffff;
}

/* DESCRIPTION */
.card-description {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    padding: 0 15px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* contact us page */


/* CONTACT SECTION */
.contact {
    padding: 60px 0;
    /* background: #f8f9fb; */
}

/* FORM */
.Message-form {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.Message-form input,
.Message-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #000000;
    padding: 12px 0;
    color: #000;
    font-size: 15px;
    transition: all 0.3s ease;
}

.Message-form textarea {
    resize: none;
    min-height: 110px;
}

.Message-form input::placeholder,
.Message-form textarea::placeholder {
    color: #000000;
}

.Message-form input:focus,
.Message-form textarea:focus {
    outline: none;
    border-bottom-color: #22376C;
}

/* BUTTON */
.submit-btn {
    padding: 14px 45px;
    border-radius: 30px;
    border: 1px solid #22376C;
    background: #fff;
    color: #22376C;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    align-self: flex-start;
    width: 100%;
}

.submit-btn:hover {
    background: #22376C;
    color: #fff;
}

/* INFO SECTION */
.touch-title {
    font-size: 34px;
    margin-bottom: 20px;
    color: #22376C;
}

.contact h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #22376C;
}

.contact p {
    font-size: 16px;
    color: #000000;
    margin: 6px 0;
}

.contact p i {
    margin-right: 8px;
    color: #22376C;
}

/* LINKS */
.contact a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.contact a:hover {
    color: #22376C;
    text-decoration: underline;
}

/* REACH BOX */
.reach-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    height: 200px;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reach-box i {
    font-size: 23px;
    color: #22376C;
    /* margin-bottom: 10px; */
}

.reach-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #22376C;
}

.reach-box p {
    font-size: 15px;
    margin: 4px 0;
    color: #000000;
}

.reach-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* SOCIAL MEDIA */
.s-medias {
    display: flex;
    gap: 14px;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
}

.s-medias a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f6;
    color: #22376C;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .s-medias a i {
    transition: color 0.3s ease;
}

.s-medias i a:hover {
    background: #22376C;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(34, 55, 108, 0.25);
} */


/* RESPONSIVE */
@media (max-width: 991px) {
    .Message-form-wrap {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .touch-title {
        font-size: 26px;
    }

    .submit-btn {
        width: 100%;
    }

    .Message-form {
        padding: 10px;
    }
}


/* ===== Service Centers Section ===== */
.service-centers {
    padding: 60px 0;
}

.service-centers .row {
    row-gap: 30px;
}

/* ===== Office Card ===== */
.our-office {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.our-office:hover {
    transform: translateY(-6px);
}

/* Remove forced flex from row (Bootstrap handles layout) */
.our-office .row {
    height: 100%;
}

/* ===== Image ===== */
.office-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== Content ===== */
.office-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-office h1 {
    font-size: 22px;
    font-weight: 600;
    color: #002e46;
    margin-bottom: 8px;
}

.our-office p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 6px;
}

/* ===== Social Media ===== */
.medias {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.medias a {
    width: 36px;
    height: 36px;
    background: #002e46;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}

.medias a:hover {
    background: #000;
    transform: translateY(-3px);
}

/* ===== Buttons ===== */
.office-btn {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.our-office button {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #002e46;
    background: transparent;
    color: #002e46;
    cursor: pointer;
    transition: 0.3s ease;
}

.our-office button:hover {
    background: #002e46;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

/* Large Desktop */
@media (min-width: 1400px) {
    .office-img img {
        min-height: 280px;
    }
}

/* Laptop */
@media (max-width: 1199px) {
    .office-img img {
        min-height: 230px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .service-centers {
        padding: 50px 0;
    }

    .office-img img {
        min-height: 220px;
        margin-bottom: 15px;
    }

    .our-office h1 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .service-centers {
        padding: 40px 0;
    }

    .our-office {
        padding: 15px;
    }

    .our-office h1 {
        font-size: 18px;
    }

    .our-office p {
        font-size: 13px;
    }

    .office-btn {
        flex-direction: column;
    }

    .our-office button {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .office-img img {
        min-height: 180px;
    }

    .medias {
        justify-content: center;
    }

    .medias a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}