* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
.celstar-header {
    width: 100%;
    height: 72px;
    background: #073398;
    position: relative;
    z-index: 999;
}

.container {
    width: 94%;
    margin: auto;
    height: 100%;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.nav-menu ul li a:hover {
    color: #ff7900;
}

.quote-btn a {
    background: #ff7900;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.quote-btn a:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    opacity: 0;
    z-index: 1;
    transform: scale(1.03);

    transition:
        opacity 1.2s ease-in-out,
        transform 5s linear;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .72) 28%,
            rgba(0, 0, 0, .25) 55%,
            rgba(0, 0, 0, .05) 100%);
}

/* Hero Content */
.hero-container {
    width: 100%;
    height: 100%;
    padding: 50px 60px 0;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    color: white;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-content p {
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 620px;
}

/* Features */
.hero-features {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.feature-box i {
    font-size: 28px;
    min-width: 28px;
}

.feature-box span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.btn-orange {
    background: #ff7900;
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-orange:hover {
    background: #e66700;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .85);
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Dots */
.slider-dots {
    position: absolute;
    left: 50px;
    bottom: 145px;
    display: flex;
    gap: 8px;
    z-index: 999;
}

.slider-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .4s ease;
}

.slider-dots .active {
    width: 22px;
    border-radius: 20px;
    background: #ff7900;
}

/* ================= SERVICE SECTION ================= */

.service-section {
    margin-top: -95px;
    position: relative;
    z-index: 50;
    padding-bottom: 50px;
}

.service-wrapper {
    width: 94%;
    margin: auto;
    display: flex;
    gap: 20px;
}

.service-card {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    padding: 45px 22px;
    min-height: 250px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .35s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #214dbd;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(33, 77, 189, .25);
}

/* Icon */

.service-icon {
    width: 46px;
    height: 46px;
    background: #ff6200;
    border-radius: 12px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.service-icon i {
    color: #fff;
    font-size: 18px;
}

/* Hover Icon */

.service-card:hover .service-icon {
    background: #4d7cff;
}

/* Heading */

.service-card h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1c2c7d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: .35s;
}

/* Orange Line */
.service-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #ff6200;
    border-radius: 10px;
    transition: .35s;
}

.service-card:hover h3 {
    color: #fff;
}

/* Paragraph */

.service-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #7b7b7b;
    max-width: 250px;
    margin: auto;
    transition: .35s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, .85);
}

@media(max-width:991px) {

    .service-wrapper {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 10px);
    }

    .service-section {
        margin-top: 0;
        padding: 40px 0;
    }

}

@media(max-width:576px) {

    .service-wrapper {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        min-height: auto;
    }

}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .nav-menu {
        position: absolute;
        top: 72px;
        left: -100%;
        width: 100%;
        background: #073398;
        padding: 30px 0;
        transition: .4s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 22px;
    }

    .quote-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slider {
        min-height: 100vh;
        height: auto;
    }

    .hero-container {
        padding: 100px 20px 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h4 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-features {
        gap: 20px;
    }

    .slider-dots {
        left: 20px;
        bottom: 180px;
    }

}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 85px 15px 30px;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .hero-content h4 {
        font-size: 14px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .btn-orange,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .feature-box span {
        font-size: 11px;
    }


    .slider-dots {
        bottom: 220px;
        left: 15px;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 70px 0;
    background: #f5f2ed;
}

.about-container {
    width: 94%;
    margin: auto;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.about-content {
    max-width: 100%;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7d3cd;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    margin-bottom: 24px;
}

.about-tag span {
    width: 7px;
    height: 7px;
    background: #ff7900;
    border-radius: 50%;
}

.about-content h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #111;
    font-weight: 400;
    margin-bottom: 18px;
    max-width: 520px;
}

.about-content h2 strong {
    font-weight: 700;
}

.about-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 14px;
    max-width: 560px;
}

/* Right Image */
.about-image {
    position: relative;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 70px 0 70px 0;
    display: block;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    background: #ff7900;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn i {
    color: white;
    font-size: 26px;
}

/* Tablet */
@media(max-width:991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content h2 {
        font-size: 30px;
        max-width: 100%;
    }

    .about-content p {
        max-width: 100%;
    }

    .about-image img {
        height: 380px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .about-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .about-content h4 {
        font-size: 14px;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-image img {
        height: 260px;
        border-radius: 35px;
    }

    .play-btn {
        width: 62px;
        height: 62px;
    }

    .play-btn i {
        font-size: 20px;
    }
}

/* ================= WHY CHOOSE SECTION ================= */

.why-section {
    background: #eef3f6;
    padding: 80px 0;
    overflow: hidden;
}

.why-container {
    width: 94%;
    max-width: 1320px;
    margin: auto;
}

/*====================
Heading
====================*/

.why-heading {
    margin-bottom: 45px;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d9d9d9;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 28px;
}

.why-tag span {
    width: 8px;
    height: 8px;
    background: #ff7900;
    border-radius: 50%;
}

.why-heading h2 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 300;
    color: #111;
    margin: 0;
}

.why-heading h2 strong {
    font-weight: 700;
}

/*====================
Wrapper
====================*/

.why-wrapper {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 50px;
    align-items: center;
}

/*====================
Left Side
====================*/

.why-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/*====================
Card
====================*/

.why-box {

    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: #fff;

    padding: 28px 25px;

    border-radius: 18px;

    border: 1px solid #e7e7e7;

    transition: all .35s ease;

    overflow: hidden;

}

/* Left Orange Line */

.why-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 4px;

    height: 0;

    background: #ff7900;

    border-radius: 20px;

    transition: .35s ease;

}

/* Hover */

.why-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

    border-color: transparent;

    z-index: 2;

}

.why-box:hover::before {

    height: 70%;

}

/*====================
Icon
====================*/

.why-icon {

    min-width: 54px;
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #0f3aa8;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s ease;

}

.why-icon i {

    color: #fff;
    font-size: 20px;

    transition: .35s ease;

}

/* Icon Hover */

.why-box:hover .why-icon {

    background: #ff7900;

    transform: rotate(10deg);

}

.why-box:hover .why-icon i {

    transform: scale(1.15);

}

/*====================
Content
====================*/

.why-text {

    flex: 1;

}

.why-text h3 {

    font-size: 22px;

    font-weight: 700;

    color: #111;

    margin-bottom: 10px;

    transition: .35s ease;

}

.why-text p {

    font-size: 15px;

    color: #6b6b6b;

    line-height: 1.8;

    margin: 0;

    transition: .35s ease;

}

/* Text Hover */

.why-box:hover h3 {

    color: #0f3aa8;

}

.why-box:hover p {

    color: #555;

}

/*====================
Right Side
====================*/

.why-right {
    text-align: center;
}

.why-right img {

    width: 100%;
    max-width: 520px;

    transition: .5s ease;

}

.why-right img:hover {

    transform: scale(1.02);

}

/*====================
Tablet
====================*/

@media(max-width:991px) {

    .why-wrapper {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .why-heading h2 {

        font-size: 40px;

    }

    .why-right {

        text-align: center;

    }

    .why-right img {

        max-width: 420px;

    }

}

/*====================
Mobile
====================*/

@media(max-width:767px) {

    .why-section {

        padding: 60px 0;

    }

    .why-heading {

        margin-bottom: 35px;

    }

    .why-heading h2 {

        font-size: 30px;

    }

    .why-box {

        padding: 22px;

        gap: 15px;

    }

    .why-icon {

        width: 48px;
        height: 48px;
        min-width: 48px;

    }

    .why-icon i {

        font-size: 18px;

    }

    .why-text h3 {

        font-size: 18px;

    }

    .why-text p {

        font-size: 14px;

        line-height: 1.7;

    }

    .why-right img {

        max-width: 100%;

    }

}

@media(max-width:576px) {

    .why-heading h2 {

        font-size: 26px;

        line-height: 1.3;

    }

    .why-tag {

        font-size: 11px;

        padding: 8px 18px;

    }

    .why-box {

        flex-direction: column;

        align-items: flex-start;

    }

    .why-icon {

        margin-bottom: 5px;

    }

}

/*=========================================
MANUFACTURING CAPABILITY SECTION
=========================================*/

.capability-section {
    position: relative;
    padding: 100px 0;
    background: url("../img/bg-factory.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.capability-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 35, .75);
}

.capability-section .container {
    position: relative;
    z-index: 2;
}

/*=========================================
HEADING
=========================================*/

.capability-heading {
    text-align: start;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.capability-heading h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.capability-heading p {
    width: 720px;
    max-width: 100%;
    margin: auto;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================
LAYOUT
=========================================*/

.capability-wrapper {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 40px;
    align-items: start;
}

/*=========================================
LEFT SIDEBAR
=========================================*/

.process-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/*=========================================
BUTTON
=========================================*/

.process-item {

    position: relative;

    width: 100%;

    padding: 18px 22px;

    border: none;

    border-radius: 18px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: .35s;

    overflow: hidden;

    backdrop-filter: blur(10px);

}

/* Orange Fill */

.process-item::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background: #ff6b00;

    transition: .35s;

    z-index: -1;

}

/* Hover */

.process-item:hover {

    transform: translateX(12px);

    border-color: #ff6b00;

    color: #fff;

}

/* Active */

.process-item.active {

    background: #ff6b00;

    border-color: #ff6b00;

    color: #fff;

    transform: translateX(18px);

    box-shadow: 0 15px 35px rgba(255, 107, 0, .30);

}

/* Hover Fill */

.process-item:hover::before {

    width: 100%;

}

/* Connector */

.process-item.active::after {

    content: "";

    position: absolute;

    right: -42px;

    top: 50%;

    width: 42px;

    height: 3px;

    background: #ff6b00;

    transform: translateY(-50%);

}

/*=========================================
RIGHT CONTENT AREA
=========================================*/

.capability-content-area {
    position: relative;
    width: 100%;
    min-height: 560px;
}

/*=========================================
CAPABILITY BOX
=========================================*/

.capability-box {
    display: none;
    animation: fadeSlide .45s ease;
}

.capability-box.active {
    display: block;
}

/*=========================================
CARD
=========================================*/

.capability-card {

    display: grid;

    grid-template-columns: 1fr 480px;

    align-items: center;

    gap: 55px;

    background: #fff;

    border-radius: 30px;

    padding: 45px;

    min-height: 560px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .15);

}

/*=========================================
LEFT CONTENT
=========================================*/

.capability-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    height: 100%;

}

/*=========================================
NUMBER
=========================================*/

.step-number {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #fff4ec;

    color: #ff6b00;

    font-size: 36px;

    font-weight: 700;

    margin-bottom: 25px;

}

/*=========================================
TITLE
=========================================*/

.capability-content h3 {

    font-size: 30px;

    font-weight: 600;

    color: #0f172a;

    line-height: 1.2;

    margin-bottom: 18px;

}

/*=========================================
DESCRIPTION
=========================================*/

.capability-content p {

    color: #6b7280;

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 30px;

}

/*=========================================
FEATURE LIST
=========================================*/

.feature-list {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.feature-list li {

    position: relative;

    padding-left: 34px;

    margin-bottom: 18px;

    color: #1f2937;

    font-size: 16px;

    font-weight: 500;

}

.feature-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #ff6b00;

    color: #fff;

    font-size: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

}

/*=========================================
DOTS
=========================================*/

.process-dots {

    display: flex;

    gap: 10px;

    margin-top: auto;

}

.process-dots span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #d8d8d8;

}

.process-dots span.active {

    width: 32px;

    border-radius: 20px;

    background: #ff6b00;

}

/*=========================================
IMAGE
=========================================*/

.capability-image {

    height: 350px;

    border-radius: 24px;

    overflow: hidden;

}

.capability-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s;

}

.capability-card:hover .capability-image img {

    transform: scale(1.05);

}

/*=========================================
ANIMATION
=========================================*/

@keyframes fadeSlide {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*=========================================
PREMIUM HOVER EFFECT
=========================================*/

.capability-card {
    transition: all .35s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .18);
}

.process-item {
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.process-item:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 0, .20);
}

/*=========================================
IMAGE EFFECT
=========================================*/

.capability-image {
    position: relative;
}

.capability-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .08),
            transparent 45%);

    pointer-events: none;

}

.capability-image img {

    transition: transform .6s ease;

}

.capability-card:hover img {

    transform: scale(1.06);

}

/*=========================================
SMOOTH TEXT
=========================================*/

.capability-content h3,
.capability-content p,
.feature-list li,
.step-number {

    transition: .35s;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1199px) {

    .capability-heading h2 {

        font-size: 40px;

    }

    .capability-card {

        grid-template-columns: 1fr 400px;

        gap: 35px;

        padding: 35px;

    }

    .capability-content h3 {

        font-size: 34px;

    }

    .capability-image {

        height: 400px;

    }

}

/*=========================================
991
=========================================*/

@media(max-width:991px) {

    .capability-wrapper {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .process-sidebar {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

    }

    .process-item {

        transform: none !important;

    }

    .process-item.active::after {

        display: none;

    }

    .capability-card {

        grid-template-columns: 1fr;

        padding: 35px;

        gap: 30px;

    }

    .capability-image {

        order: -1;

        height: 350px;

    }

    .capability-content {

        text-align: center;

    }

    .feature-list {

        margin-left: auto;

        margin-right: auto;

    }

    .process-dots {

        justify-content: center;

    }

}

/*=========================================
767
=========================================*/

@media(max-width:767px) {

    .capability-section {

        padding: 70px 0;

    }

    .capability-heading {

        margin-bottom: 40px;

    }

    .capability-heading h2 {

        font-size: 30px;

    }

    .capability-heading p {

        font-size: 15px;

    }

    .process-sidebar {

        grid-template-columns: 1fr;

    }

    .process-item {

        padding: 15px 18px;

        font-size: 15px;

    }

    .capability-card {

        padding: 22px;

        border-radius: 20px;

    }

    .step-number {

        width: 70px;

        height: 70px;

        font-size: 28px;

        margin-bottom: 18px;

    }

    .capability-content h3 {

        font-size: 26px;

    }

    .capability-content p {

        font-size: 15px;

        line-height: 1.8;

    }

    .feature-list li {

        font-size: 15px;

        margin-bottom: 15px;

    }

    .capability-image {

        height: 260px;

    }

}

/*=========================================
480
=========================================*/

@media(max-width:480px) {

    .capability-heading h2 {

        font-size: 26px;

    }

    .capability-card {

        padding: 18px;

    }

    .step-number {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

    .capability-content h3 {

        font-size: 22px;

    }

    .capability-content p {

        font-size: 14px;

    }

    .feature-list li {

        font-size: 14px;

        padding-left: 28px;

    }

    .process-dots span {

        width: 8px;

        height: 8px;

    }

    .process-dots span.active {

        width: 26px;

    }

}

/*=========================================
PERFORMANCE
=========================================*/

.capability-card,
.process-item,
.capability-image img {

    will-change: transform;

    backface-visibility: hidden;

}

.capability-box {

    animation: fadeSlide .45s ease;

}


/* ================= PRODUCTS SECTION ================= */
.products-section {
    padding: 60px 0;
    background: #f7f4ef;
    overflow: hidden;
}

.products-container {
    width: 94%;
    margin: auto;
}

/* Heading */
.products-heading {
    text-align: center;
    margin-bottom: 55px;
}

.products-heading h2 {
    font-size: 58px;
    line-height: 1.1;
    color: #11164d;
    font-weight: 300;
    margin-bottom: 25px;
}

.products-heading h2 span {
    font-weight: 700;
}

/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.tab-btn {
    padding: 15px 34px;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    background: transparent;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.tab-btn.active {
    background: #ff6200;
    border-color: #ff6200;
    color: white;
}

/* Slider Wrapper */
.products-slider-wrap {
    position: relative;
}

/* Product Grid */
.products-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
    min-height: 460px;
    transition: .35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* Top Image Box */
.product-image {

    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* Link Circle */
.product-link {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    background: #232b92;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 16px;
    transition: .3s ease;
}

.product-link:hover {
    background: #ff6200;
}

/* Content */
.product-content {
    padding: 28px 24px;
}

.product-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 14px;
    line-height: 1.3;
}

.product-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #6f6f6f;
}

/* Navigation Buttons */
.product-nav {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    cursor: pointer;
    z-index: 10;
    transition: .3s ease;
}

.product-nav:hover {
    background: #ff6200;
}

.product-nav:hover i {
    color: white;
}

.product-nav i {
    color: #232b92;
    font-size: 18px;
}

.product-nav.prev {
    left: -26px;
}

.product-nav.next {
    right: -26px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px) {
    .products-heading h2 {
        font-size: 46px;
    }

    .products-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:991px) {
    .products-section {
        padding: 50px 0;
    }

    .products-heading h2 {
        font-size: 38px;
    }

    .products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        min-height: 420px;
    }

    .product-image {
        height: 220px;
    }

    .product-image img {
        width: 180px;
    }
}

@media(max-width:768px) {
    .products-heading h2 {
        font-size: 32px;
    }

    .product-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }

    .products-slider {
        grid-template-columns: 1fr;
    }

    .product-nav {
        display: none;
    }
}

@media(max-width:576px) {
    .products-section {
        padding: 40px 0;
    }

    .products-heading {
        margin-bottom: 40px;
    }

    .products-heading h2 {
        font-size: 28px;
    }

    .tab-btn {
        width: 100%;
        max-width: 220px;
    }

    .product-card {
        min-height: auto;
    }

    .product-image {
        height: 200px;
    }

    .product-image img {
        width: 160px;
    }

    .product-content {
        padding: 22px 20px;
    }

    .product-content h3 {
        font-size: 22px;
    }

    .product-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-link {
        width: 46px;
        height: 46px;
    }
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    padding: 90px 0 200px;
    background: #0d3ca8;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial-container {
    width: 94%;
    margin: auto;
}

/* Heading */
.testimonial-title {
    text-align: center;
    margin-bottom: 55px;
}

.testimonial-title h2 {
    font-size: 54px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.2;
}

.testimonial-title h2 strong {
    font-weight: 700;
}

/* Slider Wrapper */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track */
.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonialSlide 22s linear infinite;
}

/* Card */
.testimonial-card {
    width: 520px;
    min-height: 210px;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* Top */
.client-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

/* Image */
.client-top img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6200;
}

/* Name */
.client-top h4 {
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 5px;
}

/* Company */
.client-top span {
    font-size: 16px;
    color: #777;
}

/* Content */
.testimonial-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Animation */
@keyframes testimonialSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px) {
    .testimonial-card {
        width: 460px;
    }
}

@media(max-width:991px) {
    .testimonial-section {
        padding: 80px 0 170px;
    }

    .testimonial-title h2 {
        font-size: 40px;
    }

    .testimonial-card {
        width: 400px;
        min-height: 190px;
    }

    .client-top h4 {
        font-size: 24px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media(max-width:768px) {
    .testimonial-section {
        padding: 70px 0 140px;
    }

    .testimonial-title h2 {
        font-size: 32px;
    }

    .testimonial-card {
        width: 320px;
        padding: 22px;
    }

    .client-top img {
        width: 60px;
        height: 60px;
    }

    .client-top h4 {
        font-size: 20px;
    }

    .client-top span {
        font-size: 14px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media(max-width:576px) {
    .testimonial-section {
        padding: 60px 0 120px;
    }

    .testimonial-title {
        margin-bottom: 35px;
    }

    .testimonial-title h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .testimonial-card {
        width: 280px;
        min-height: auto;
        padding: 18px;
    }

    .client-top {
        gap: 12px;
        margin-bottom: 18px;
    }

    .client-top img {
        width: 50px;
        height: 50px;
    }

    .client-top h4 {
        font-size: 17px;
    }

    .client-top span {
        font-size: 12px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ================= FOOTER CONTACT ================= */
.footer-contact-section {
    position: relative;
    margin-top: -100px;
    /* overlap upar le aayega */
    z-index: 20;
    padding-bottom: 60px;
    background: transparent;
}

.footer-contact-wrap {
    width: 94%;
    margin: auto;
    background: #fff;
    border-radius: 22px;
    padding: 55px 60px;
    display: grid;
    grid-template-columns: 1.1fr .7fr 1.4fr;
    gap: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

/* Left */
.footer-left img {
    width: 165px;
    margin-bottom: 45px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-info p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.footer-info i {
    color: #ff6200;
    font-size: 18px;
    margin-top: 5px;
}

.footer-copy {
    margin-top: 70px;
    font-size: 16px;
    color: #666;
}

/* Center */
.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: #ff6200;
}

/* Right */
.footer-form h2 {
    font-size: 58px;
    color: #10144d;
    font-weight: 300;
    margin-bottom: 35px;
}

.footer-form h2 span {
    font-weight: 700;
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-grid input,
.footer-form textarea {
    width: 100%;
    border: none;
    background: #f7f4f4;
    padding: 20px;
    border-radius: 16px;
    font-size: 15px;
    outline: none;
}

.footer-form textarea {
    height: 160px;
    resize: none;
    margin-bottom: 20px;
}

.footer-form button {
    background: #ff6200;
    color: white;
    border: none;
    padding: 18px 34px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.footer-form button:hover {
    background: #e25500;
}

.footer-form button i {
    margin-left: 8px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px) {
    .footer-contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-contact-section {
        margin-top: -120px;
    }
}

@media(max-width:768px) {
    .footer-contact-wrap {
        padding: 35px 25px;
    }

    .footer-contact-section {
        margin-top: -90px;
    }

    .footer-form h2 {
        font-size: 38px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-copy {
        margin-top: 40px;
    }
}

@media(max-width:576px) {
    .footer-contact-section {
        margin-top: -70px;
        padding-bottom: 40px;
    }

    .footer-form h2 {
        font-size: 30px;
    }

    .footer-form button {
        width: 100%;
    }

    .footer-info p,
    .footer-links a {
        font-size: 15px;
    }
}

/*================ HEADER ================*/

.celstar-header {
    width: 100%;
    height: 72px;
    background: #0d3ca8;
    position: relative;
    z-index: 9999;
}

.celstar-header .container {
    width: 94%;
    margin: auto;
    height: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 42px;
    display: block;
}

/* Navigation */

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .35s;
}

.nav-menu ul li a:hover {
    color: #ff7900;
}

/* Right Side */

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* Follow */

.follow-us {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.follow-us a {
    color: #fff;
    font-size: 24px;
    transition: .3s;
}

.follow-us a:hover {
    color: #ff7900;
}

/* Button */

.quote-btn {
    background: #ff7900;
    color: #fff;
    text-decoration: none;

    height: 42px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 600;

    transition: .35s;
}

.quote-btn:hover {
    background: #ff6800;
}

.quote-btn i {
    font-size: 13px;
}

/* Mobile */

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/*================ Responsive ================*/

@media(max-width:1100px) {

    .header-right {
        gap: 18px;
    }

    .follow-us span {
        display: none;
    }

    .nav-menu ul {
        gap: 28px;
    }

}

@media(max-width:991px) {

    .menu-toggle {
        display: block;
    }

    .header-right {
        display: none;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 72px;

        width: 100%;
        background: #0d3ca8;

        transition: .4s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        padding: 35px 0;
    }

}

/*==========================
PAGE BANNER
==========================*/

.page-banner {
    position: relative;
    width: 100%;
    height: 380px;


    overflow: hidden;
}

.page-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 10, 25, .92) 0%,
            rgba(0, 20, 45, .82) 25%,
            rgba(0, 20, 45, .40) 55%,
            rgba(0, 20, 45, .05) 100%);
}

.page-banner .container {
    width: 94%;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;
}

.page-content {
    color: #fff;
    max-width: 600px;
}

.page-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: .3s;
}

.breadcrumb a:hover {
    color: #ff7900;
}

.breadcrumb span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7900;
}

.breadcrumb p {
    color: #fff;
    font-size: 17px;
    margin: 0;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .page-banner {
        height: 320px;
    }

    .page-content h1 {
        font-size: 44px;
    }

    .breadcrumb a,
    .breadcrumb p {
        font-size: 16px;
    }

}

@media(max-width:767px) {

    .page-banner {
        height: 280px;
    }

    .page-content h1 {
        font-size: 36px;
    }

    .breadcrumb {
        gap: 10px;
    }

    .breadcrumb a,
    .breadcrumb p {
        font-size: 15px;
    }

}

@media(max-width:576px) {

    .page-banner {
        height: 240px;
    }

    .page-content h1 {
        font-size: 30px;
    }

    .breadcrumb a,
    .breadcrumb p {
        font-size: 14px;
    }

    .breadcrumb span {
        width: 6px;
        height: 6px;
    }

}

/*==========================================
MISSION / VISION SECTION
==========================================*/

.mission-section {
    position: relative;
    margin-top: -110px;
    /* overlap previous section */
    z-index: 20;
    padding-bottom: 100px;
}

.mission-section .container {
    width: 94%;
    max-width: 1320px;
    margin: auto;
}

.mission-wrapper {
    background: #1d43aa;
    border-radius: 36px 36px 36px 36px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

/*============================
Tabs
=============================*/

.mission-tabs {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
}

.mission-tab {
    flex: 1;
    height: 92px;
    border: none;
    outline: none;
    background: #fff;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 500;
    color: #1b1b1b;

    transition: .35s ease;

    border-right: 1px solid #ececec;
}

.mission-tab:last-child {
    border-right: none;
}

.mission-tab i {
    font-size: 20px;
}

.mission-tab.active {
    background: #ff5a0a;
    color: #fff;
}

.mission-tab:hover {
    background: #ff5a0a;
    color: #fff;
}

/*============================
Blue Content
=============================*/

.tab-content {
    display: none;
    background: #1d43aa;
    padding: 48px 48px 60px;
}

.tab-content.active {
    display: block;
}

.mission-body {
    width: 100%;
}

.mission-desc {
    max-width: 760px;

    color: #fff;
    opacity: .92;

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 45px;
}

/*============================
Grid
=============================*/

.mission-grid {

    display: grid;

    grid-template-columns: 1fr 520px;

    gap: 35px;

    align-items: start;

}

.mission-left {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}

.mission-right {

    position: relative;

}

.mission-right img {

    width: 100%;

    height: 620px;

    object-fit: cover;

    display: block;

    border-radius: 26px;

}

/*==========================================
MISSION CARDS
==========================================*/

.mission-card {

    background: #2952cb;

    border-radius: 22px;

    padding: 32px 28px;

    min-height: 245px;

    transition: .35s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

}

.mission-card:hover {

    transform: translateY(-8px);

    background: #3460e3;

}

.mission-card .icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .18);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

}

.mission-card .icon i {

    font-size: 26px;

    color: #fff;

}

.mission-card h3 {

    font-size: 18px;

    line-height: 1.1;

    color: #fff;

    font-weight: 400;

    margin-bottom: 10px;

}

.mission-card p {

    font-size: 14px;

    line-height: 1.09;

    color: rgba(255, 255, 255, .85);

}


/*==========================================
IMAGE
==========================================*/

.mission-right {

    display: flex;

    align-items: center;

    justify-content: center;

}

.mission-right img {

    width: 100%;

    height: 100%;

    max-height: 620px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}


/*==========================================
TAB ANIMATION
==========================================*/

.tab-content {

    animation: fadeMission .45s ease;

}

@keyframes fadeMission {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px) {

    .mission-grid {

        grid-template-columns: 1fr 420px;

        gap: 30px;

    }

    .mission-card h3 {

        font-size: 25px;

    }

}


@media(max-width:991px) {

    .mission-section {

        margin-top: -70px;

        padding-bottom: 80px;

    }

    .mission-tabs {

        flex-wrap: wrap;

        border-radius: 25px 25px 0 0;

    }

    .mission-tab {

        flex: 0 0 100%;

        height: 70px;

        font-size: 16px;

        border-right: none;

        border-bottom: 1px solid #ececec;

    }

    .mission-tab:last-child {

        border-bottom: none;

    }

    .tab-content {

        padding: 35px;

    }

    .mission-grid {

        grid-template-columns: 1fr;

    }

    .mission-right {

        order: -1;

        margin-bottom: 35px;

    }

    .mission-right img {

        height: 420px;

    }

    .mission-left {

        grid-template-columns: repeat(2, 1fr);

    }

    .mission-desc {

        font-size: 15px;

        margin-bottom: 30px;

    }

}


@media(max-width:767px) {

    .mission-left {

        grid-template-columns: 1fr;

    }

    .mission-card {

        min-height: auto;

        padding: 28px 24px;

    }

    .mission-card h3 {

        font-size: 22px;

    }

    .mission-card p {

        font-size: 15px;

    }

    .mission-right img {

        height: 320px;

    }

    .tab-content {

        padding: 28px 22px;

    }

    .mission-tabs {

        border-radius: 20px 20px 0 0;

    }

}


@media(max-width:576px) {

    .mission-section {

        margin-top: -45px;

        padding-bottom: 60px;

    }

    .mission-tab {

        height: 62px;

        font-size: 15px;

    }

    .mission-tab i {

        font-size: 16px;

    }

    .mission-desc {

        font-size: 14px;

        line-height: 1.8;

    }

    .mission-card {

        padding: 24px 20px;

        border-radius: 18px;

    }

    .mission-card .icon {

        width: 48px;

        height: 48px;

        margin-bottom: 18px;

    }

    .mission-card .icon i {

        font-size: 20px;

    }

    .mission-card h3 {

        font-size: 20px;

        margin-bottom: 12px;

    }

    .mission-card p {

        font-size: 14px;

        line-height: 1.8;

    }

    .mission-right img {

        height: 260px;

        border-radius: 18px;

    }

}

/*==================================================
MISSION SECTION - PART 3
Animations • Hover • Premium Effects
==================================================*/

/*=========================
TAB CONTENT
=========================*/

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(25px);
    transition: all .45s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/*=========================
TAB EFFECT
=========================*/

.mission-tab {
    position: relative;
    overflow: hidden;
}

.mission-tab::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .08);

    transition: .45s;

}

.mission-tab:hover::before {

    left: 0;

}

.mission-tab.active::before {

    display: none;

}

/*=========================
CARD SHINE
=========================*/

.mission-card {

    position: relative;

    overflow: hidden;

}

.mission-card::after {

    content: "";

    position: absolute;

    top: 0;

    left: -140%;

    width: 80%;

    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .12),
            transparent);

    transition: 1s;

}

.mission-card:hover::after {

    left: 140%;

}

/*=========================
ICON
=========================*/

.mission-card .icon {

    transition: .35s;

}

.mission-card:hover .icon {

    transform: rotate(12deg) scale(1.08);

    background: rgba(255, 255, 255, .08);

}

/*=========================
IMAGE
=========================*/

.mission-right {

    overflow: hidden;

    border-radius: 28px;

}

.mission-right img {

    transition: 1s ease;

}

.mission-right:hover img {

    transform: scale(1.06);

}

/*=========================
BUTTON TRANSITION
=========================*/

.mission-tab,
.mission-card {

    transition: .35s ease;

}

/*=========================
FADE ANIMATION
=========================*/

@keyframes fadeMission {

    from {

        opacity: 0;
        transform: translateY(35px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

.tab-content.active {

    animation: fadeMission .5s ease;

}

/*=========================
LARGE SCREEN
=========================*/

@media(min-width:1600px) {

    .mission-wrapper {

        max-width: 1450px;

    }

    .mission-grid {

        grid-template-columns: 1fr 620px;

    }

    .mission-right img {

        height: 700px;

    }

    .mission-card {

        min-height: 270px;

    }

}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .mission-wrapper {

        border-radius: 24px;

    }

    .mission-right {

        border-radius: 22px;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .mission-wrapper {

        border-radius: 18px;

    }

    .mission-right {

        border-radius: 16px;

    }

    .mission-right img {

        border-radius: 16px;

    }

}


/*==================================================
OUR PROCESS SECTION
==================================================*/

.process-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-section .container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

/*==================================================
TOP AREA
==================================================*/

.process-top {

    display: grid;

    grid-template-columns: 35% 65%;

    align-items: flex-end;

    gap: 70px;

    margin-bottom: 50px;
}

/*==========================
TAG
==========================*/

.process-left .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: 1px solid #d8d8d8;

    border-radius: 50px;

    padding: 13px 22px;

    font-size: 14px;

    font-weight: 500;

    color: #222;

    margin-bottom: 34px;

    background: #fff;

}

.process-left .section-tag span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ff5a0a;

}

/*==========================
HEADING
==========================*/

.process-left h2 {

    font-size: 45px;

    line-height: 1.06;

    font-weight: 300;

    color: #1c1c1c;

    letter-spacing: -2px;

    margin: 0;

}

.process-left h2 strong {

    display: block;

    font-weight: 500;

}

/*==========================
RIGHT DESCRIPTION
==========================*/

.process-right {

    padding-top: 40px;

}

.process-right p {

    font-size: 16px;

    line-height: 1.9;

    color: #7b7b7b;

    max-width: 780px;

    margin: 0;

}

/*==================================================
MAIN GRID
==================================================*/

.process-wrapper {

    display: grid;

    grid-template-columns: 520px 1fr;

    gap: 42px;

    align-items: start;

}

/*==================================================
LEFT IMAGE
==================================================*/

.process-image {

    position: relative;

}

.process-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    display: block;

    border-radius: 34px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px) {

    .process-left h2 {

        font-size: 52px;

    }

    .process-wrapper {

        grid-template-columns: 450px 1fr;

    }

    .process-image img {

        height: 560px;

    }

}

@media(max-width:991px) {

    .process-top {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .process-right {

        padding-top: 0;

    }

    .process-wrapper {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .process-image {

        order: -1;

    }

    .process-image img {

        height: 460px;

    }

    .process-left h2 {

        font-size: 42px;

    }

}

@media(max-width:768px) {

    .process-section {

        padding: 80px 0;

    }

    .process-left h2 {

        font-size: 34px;

    }

    .process-right p {

        font-size: 15px;

    }

    .process-image img {

        height: 360px;

        border-radius: 24px;

    }

}

@media(max-width:576px) {

    .process-section {

        padding: 65px 0;

    }

    .process-left .section-tag {

        padding: 10px 18px;

        font-size: 13px;

    }

    .process-left h2 {

        font-size: 28px;

        line-height: 1.2;

    }

    .process-right p {

        font-size: 14px;

        line-height: 1.8;

    }

    .process-image img {

        height: 280px;

        border-radius: 18px;

    }

}

/*==================================================
PROCESS CONTENT
==================================================*/

.process-content {

    display: flex;

    flex-direction: column;

    gap: 38px;

    padding-top: 6px;

}

/*==================================================
PROCESS ITEM
==================================================*/

.process-item {

    display: flex;

    align-items: center;

    gap: 28px;

    transition: .35s ease;

}

/*==============================
ACTIVE STEP
==============================*/

.process-item.active {

    background: #ff5a0a;

    border-radius: 22px;

    padding: 34px 36px;

    box-shadow: 0 18px 40px rgba(255, 90, 10, .18);

}

/*==============================
NUMBER
==============================*/

.step-no {

    min-width: 86px;

    font-size: 66px;

    font-weight: 700;

    line-height: 1;

    color: #1b1b1b;

    letter-spacing: -2px;

}

.process-item.active .step-no {

    color: #fff;

}

/*==============================
CONTENT
==============================*/

.step-content {

    flex: 1;

}

.step-content h3 {

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;

    color: #202020;

    margin-bottom: 8px;

}

.step-content p {

    font-size: 15px;

    line-height: 1.75;

    color: #7b7b7b;

    max-width: 520px;

    margin: 0;

}

.process-item.active h3 {

    color: #fff;

}

.process-item.active p {

    color: rgba(255, 255, 255, .92);

}

/*==============================
HOVER
==============================*/

.process-item:not(.active):hover {

    transform: translateX(12px);

}

.process-item.active:hover {

    transform: translateY(-4px);

}

/*==================================================
IMAGE EFFECT
==================================================*/

.process-image {

    overflow: hidden;

}

.process-image img {

    transition: 1s;

}

.process-image:hover img {

    transform: scale(1.05);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .process-content {

        gap: 28px;

    }

    .process-item.active {

        padding: 28px;

    }

    .step-no {

        font-size: 56px;

        min-width: 72px;

    }

    .step-content h3 {

        font-size: 20px;

    }

    .step-content p {

        font-size: 14px;

    }

}

@media(max-width:768px) {

    .process-item {

        align-items: flex-start;

        gap: 18px;

    }

    .step-no {

        font-size: 46px;

        min-width: 58px;

    }

    .process-item.active {

        padding: 22px;

        border-radius: 18px;

    }

    .step-content h3 {

        font-size: 18px;

    }

    .step-content p {

        font-size: 14px;

        line-height: 1.7;

    }

}

@media(max-width:576px) {

    .process-content {

        gap: 24px;

    }

    .step-no {

        font-size: 38px;

        min-width: 48px;

    }

    .process-item.active {

        padding: 18px;

    }

    .step-content h3 {

        font-size: 17px;

    }

    .step-content p {

        font-size: 13px;

    }

}

/*==========================================
PROCESS PREMIUM EFFECTS
==========================================*/

/* Smooth Animation */

.process-item {
    opacity: 0;
    transform: translateY(25px);
    animation: processFade .7s ease forwards;
}

.process-item:nth-child(1) {
    animation-delay: .1s;
}

.process-item:nth-child(2) {
    animation-delay: .2s;
}

.process-item:nth-child(3) {
    animation-delay: .3s;
}

.process-item:nth-child(4) {
    animation-delay: .4s;
}

@keyframes processFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/*==========================================
ACTIVE CARD
==========================================*/

.process-item.active {

    position: relative;

    overflow: hidden;

}

.process-item.active::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .15),
            transparent);

    transition: 1.1s;

}

.process-item.active:hover::before {

    left: 140%;

}


/*==========================================
IMAGE
==========================================*/

.process-image {

    position: relative;

}

.process-image::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 34px;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .08);

    pointer-events: none;

}

.process-image img {

    transition: 1s ease;

}

.process-image:hover img {

    transform: scale(1.05);

}


/*==========================================
TEXT
==========================================*/

.step-content h3 {

    transition: .35s;

}

.process-item:hover h3 {

    color: #ff5a0a;

}

.process-item.active:hover h3 {

    color: #fff;

}

.step-content p {

    transition: .35s;

}


/*==========================================
NUMBER
==========================================*/

.step-no {

    transition: .35s;

}

.process-item:hover .step-no {

    transform: scale(1.05);

}


/*==========================================
SECTION SPACING
==========================================*/

.process-section {

    overflow: hidden;

}


/*==========================================
LARGE SCREEN
==========================================*/

@media(min-width:1600px) {

    .process-section .container {

        max-width: 1400px;

    }

    .process-wrapper {

        grid-template-columns: 560px 1fr;

        gap: 60px;

    }

    .process-image img {

        height: 700px;

    }

    .process-left h2 {

        font-size: 66px;

    }

}


/*==========================================
TABLET
==========================================*/

@media(max-width:991px) {

    .process-content {

        margin-top: 10px;

    }

    .process-item {

        align-items: flex-start;

    }

    .process-item.active {

        padding: 28px;

    }

}


/*==========================================
MOBILE
==========================================*/

@media(max-width:767px) {

    .process-item {

        gap: 16px;

    }

    .process-item.active {

        padding: 22px;

    }

    .step-no {

        font-size: 44px;

        min-width: 50px;

    }

    .step-content h3 {

        font-size: 18px;

    }

    .step-content p {

        font-size: 14px;

        line-height: 1.7;

    }

}


/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px) {

    .process-wrapper {

        gap: 28px;

    }

    .process-image img {

        height: 250px;

        border-radius: 20px;

    }

    .process-item.active {

        padding: 18px;

        border-radius: 16px;

    }

    .step-no {

        font-size: 36px;

        min-width: 42px;

    }

    .step-content h3 {

        font-size: 17px;

    }

    .step-content p {

        font-size: 13px;

    }

}

/*=========================================
TEAM SECTION
=========================================*/

.team-section {
    padding: 10px 10px;
    margin-bottom: 20px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.team-section .container {
    width: 94%;
    max-width: 1320px;
    margin: auto;
}

/*=========================================
LAYOUT
=========================================*/

.team-wrapper {

    display: grid;

    grid-template-columns: 52% 48%;

    gap: 48px;

    align-items: start;

}

/*=========================================
LEFT CONTENT
=========================================*/

.team-left {
    width: 100%;
}

/*=========================================
SECTION TAG
=========================================*/

.team-left .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: 1px solid #d9d9d9;

    padding: 13px 24px;

    border-radius: 50px;

    margin-bottom: 20px;

    background: #fff;

    font-size: 14px;

    font-weight: 500;

    color: #222;

}

.team-left .section-tag span {

    width: 8px;

    height: 8px;

    background: #ff5b08;

    border-radius: 50%;

}

/*=========================================
HEADING
=========================================*/

.team-left h2 {

    font-size: 46px;

    line-height: 1.08;

    font-weight: 300;

    color: #1d1d1d;

    margin-bottom: 42px;

    letter-spacing: -1px;

}

.team-left h2 strong {

    font-weight: 600;

    display: inline-block;

}

/*=========================================
GROUP IMAGE
=========================================*/

.team-group-image {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

}

.team-group-image img {

    width: 100%;

    height: 400px;

    object-fit: cover;

    display: block;

    transition: 1s;

}

.team-group-image:hover img {

    transform: scale(1.05);

}

/*=========================================
RIGHT GRID
=========================================*/

.team-right {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    align-self: end;

}

/*=========================================
LARGE LAPTOP
=========================================*/

@media(max-width:1200px) {

    .team-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .team-right {

        max-width: 760px;

    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

    .team-left h2 {

        font-size: 46px;

    }

    .team-group-image img {

        height: 460px;

    }

    .team-right {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px) {

    .team-section {

        padding: 80px 0;

    }

    .team-left h2 {

        font-size: 34px;

        line-height: 1.2;

    }

    .team-group-image img {

        height: 340px;

    }

    .team-right {

        grid-template-columns: 1fr;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:576px) {

    .team-section {

        padding: 60px 0;

    }

    .team-left .section-tag {

        padding: 10px 18px;

        font-size: 13px;

    }

    .team-left h2 {

        font-size: 28px;

        margin-bottom: 28px;

    }

    .team-group-image {

        border-radius: 18px;

    }

    .team-group-image img {

        height: 260px;

    }

}

/*=========================================
TEAM CARD
=========================================*/

.team-card {

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .4s ease;

    display: flex;

    flex-direction: column;

    height: 100%;

}

.team-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);

}

/*=========================================
MEMBER IMAGE
=========================================*/

.team-image {

    width: 100%;

    overflow: hidden;

}

.team-image img {

    width: 100%;

    height: 310px;

    object-fit: cover;

    display: block;

    transition: 1s;

}

.team-card:hover .team-image img {

    transform: scale(1.05);

}

/*=========================================
CONTENT AREA
=========================================*/

.team-info {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 26px 22px;

    background: #fff;

}

.team-content {

    flex: 1;

}

/*=========================================
NAME
=========================================*/

.team-content h3 {

    font-size: 22px;

    font-weight: 700;

    color: #202020;

    margin-bottom: 10px;

    line-height: 1.2;

}

/*=========================================
DESIGNATION
=========================================*/

.team-content p {

    font-size: 15px;

    color: #555;

    margin-bottom: 6px;

    line-height: 1.6;

}

/*=========================================
EXTRA TEXT
=========================================*/

.team-content span {

    display: block;

    font-size: 15px;

    color: #444;

    line-height: 1.6;

}

/*=========================================
LINKEDIN BUTTON
=========================================*/

.linkedin-btn {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #1d73e8;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 22px;

    transition: .35s;

    flex-shrink: 0;

    margin-left: 18px;

}

.linkedin-btn:hover {

    background: #0d5dd1;

    transform: scale(1.08);

}

.linkedin-btn i {

    color: #fff;

}

/*=========================================
TEAM CARD EFFECTS
=========================================*/

.team-card {
    position: relative;
}

.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .04);
    pointer-events: none;
}

.team-card:hover .team-content h3 {
    color: #0d3ca8;
}

.team-card:hover .linkedin-btn {
    transform: translateY(-4px) scale(1.08);
}

.team-card:hover .team-content p,
.team-card:hover .team-content span {
    color: #555;
}

.team-content h3,
.team-content p,
.team-content span,
.linkedin-btn {
    transition: .35s ease;
}

/*=========================================
IMAGE OVERLAY
=========================================*/

.team-image {
    position: relative;
}

.team-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .08),
            transparent 45%);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1200px) {

    .team-wrapper {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .team-right {

        max-width: 760px;

        width: 100%;

        margin: auto;

    }

    .team-group-image img {

        height: 500px;

    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

    .team-left {

        text-align: center;

    }

    .team-left .section-tag {

        margin-bottom: 28px;

    }

    .team-left h2 {

        font-size: 42px;

        margin-bottom: 34px;

    }

    .team-group-image img {

        height: 420px;

    }

    .team-right {

        grid-template-columns: repeat(2, 1fr);

        gap: 22px;

    }

    .team-image img {

        height: 270px;

    }

    .team-content h3 {

        font-size: 20px;

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px) {

    .team-section {

        padding: 75px 0;

    }

    .team-wrapper {

        gap: 40px;

    }

    .team-right {

        grid-template-columns: 1fr;

        max-width: 420px;

    }

    .team-group-image img {

        height: 320px;

    }

    .team-image img {

        height: 320px;

    }

    .team-info {

        padding: 20px;

    }

    .team-content h3 {

        font-size: 22px;

    }

    .team-content p,
    .team-content span {

        font-size: 15px;

    }

    .linkedin-btn {

        width: 46px;

        height: 46px;

        font-size: 20px;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:576px) {

    .team-section {

        padding: 60px 0;

    }

    .team-left .section-tag {

        padding: 10px 18px;

        font-size: 13px;

    }

    .team-left h2 {

        font-size: 30px;

        line-height: 1.2;

    }

    .team-group-image {

        border-radius: 18px;

    }

    .team-group-image img {

        height: 250px;

    }

    .team-card {

        border-radius: 18px;

    }

    .team-image img {

        height: 260px;

    }

    .team-info {

        padding: 18px;

    }

    .team-content h3 {

        font-size: 20px;

        margin-bottom: 8px;

    }

    .team-content p {

        font-size: 14px;

        margin-bottom: 4px;

    }

    .team-content span {

        font-size: 14px;

    }

    .linkedin-btn {

        width: 42px;

        height: 42px;

        font-size: 18px;

        margin-left: 12px;

    }

}

/*=========================================
CERTIFICATE SECTION
=========================================*/

.certificate-section {
    background: #3b3b3f;
    padding: 95px 0;
    overflow: hidden;
}

.certificate-section .container {
    width: 94%;
    max-width: 1320px;
    margin: auto;
}

/*=========================================
HEADING
=========================================*/

.certificate-heading {
    margin-bottom: 45px;
}

.certificate-heading h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
}

.certificate-heading h2 strong {
    font-weight: 500;
}

/*=========================================
GRID
=========================================*/

.certificate-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

}

/*=========================================
CARD
=========================================*/

.certificate-card {

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.certificate-card:hover {

    transform: translateY(-10px);

}

.certificate-card img {

    width: 100%;

    display: block;

    transition: 1s;

}

.certificate-card:hover img {

    transform: scale(1.04);

}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1200px) {

    .certificate-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

    .certificate-heading h2 {

        font-size: 46px;

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px) {

    .certificate-section {

        padding: 70px 0;

    }

    .certificate-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .certificate-heading {

        margin-bottom: 35px;

    }

    .certificate-heading h2 {

        font-size: 34px;

        line-height: 1.2;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:576px) {

    .certificate-heading h2 {

        font-size: 28px;

    }

}

/*=========================================
CLIENT SECTION
=========================================*/

.clients-section {
    padding: 90px 0;
    background: #fff;
}

.clients-section .container {
    width: 94%;
    max-width: 1320px;
    margin: auto;
}

/*=========================================
TITLE
=========================================*/

.clients-title {
    text-align: center;
    margin-bottom: 20px;
}

.clients-title h2 {
    font-size: 48px;
    font-weight: 300;
    color: #1d1d1d;
    line-height: 1.1;
}

.clients-title h2 strong {
    font-weight: 700;
}

/*=========================================
GRID
=========================================*/

.clients-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    align-items: center;

    gap: 30px;

}

/*=========================================
ITEM
=========================================*/

.client-item {

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 10px;

    transition: .35s;

}

.client-item img {

    width: 180px;

    max-width: 100%;

    height: auto;

    display: block;

    filter: grayscale(100%);

    opacity: .65;

    transition: .35s;

}

.client-item:hover img {

    filter: none;

    opacity: 1;

    transform: scale(1.08);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .clients-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}

@media(max-width:991px) {

    .clients-title h2 {

        font-size: 42px;

    }

    .clients-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 25px;

    }

    .client-item img {

        width: 150px;

    }

}

@media(max-width:767px) {

    .clients-section {

        padding: 70px 0;

    }

    .clients-title {

        margin-bottom: 40px;

    }

    .clients-title h2 {

        font-size: 34px;

    }

    .clients-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    .client-item img {

        width: 130px;

    }

}

@media(max-width:576px) {

    .clients-title h2 {

        font-size: 28px;

    }

    .clients-grid {

        grid-template-columns: 1fr;

    }

    .client-item img {

        width: 170px;

    }

}

/*==============================
FLOATING CONTACT
==============================*/

.floating-contact {

    position: fixed;

    right: 20px;
    /* right:20px; if you want on right */

    bottom: 90px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.float-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    text-decoration: none;

    color: #222;

    padding: 8px 18px 8px 8px;

    border-radius: 40px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);

    transition: .35s;

    min-width: 120px;

}

.float-btn:hover {

    transform: translateX(5px);

    color: #222;

}

.float-icon {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 18px;

}

.call-btn .float-icon {

    background: #ff6600;

}

.whatsapp-btn .float-icon {

    background: #25D366;

}

.float-text {

    font-size: 14px;

    font-weight: 600;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px) {

    .floating-contact {

        left: 15px;

        bottom: 80px;

    }

    .float-btn {

        min-width: 110px;

        padding: 7px 15px 7px 7px;

    }

    .float-icon {

        width: 34px;

        height: 34px;

        font-size: 16px;

    }

    .float-text {

        font-size: 13px;

    }

}

/*==================================================
INDUSTRY SECTION
==================================================*/

.industry-section{
    position:relative;
    padding:100px 0;
    background:#2649b8;
    overflow:hidden;
}

.industry-container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 15px;
}

/*==================================================
HEADING
==================================================*/

.industry-head{
    text-align:center;
    margin-bottom:60px;
}

.industry-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 24px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.industry-tag span{
    width:8px;
    height:8px;
    background:#ff6b00;
    border-radius:50%;
}

.industry-head h2{
    margin:0 0 18px;
    color:#fff;
    font-size:54px;
    font-weight:300;
    line-height:1.15;
}

.industry-head h2 strong{
    font-weight:700;
}

.industry-head p{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.8;
}

/*==================================================
SWIPER
==================================================*/

.industrySwiper{
    width:100%;
    overflow:hidden;
    padding:10px 0 15px;
}

.industrySwiper .swiper-wrapper{
    display:flex;
    align-items:stretch;
}

.industrySwiper .swiper-slide{
    display:flex;
    height:auto;
    box-sizing:border-box;
}

/*==================================================
RESET
==================================================*/

.swiper-slide{
    flex-shrink:0;
}

.swiper-slide *{
    box-sizing:border-box;
}

.swiper-horizontal{
    overflow:hidden;
}
/*==================================================
INDUSTRY CARD
==================================================*/

.industry-card{
    position:relative;
    width:100%;
    min-height:320px;
    background:linear-gradient(180deg,#3962e3 0%,#2d55d3 100%);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:28px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.35s ease;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

/*==================================================
TITLE
==================================================*/

.industry-card h3{
    margin:0 0 16px;
    color:#fff;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
}

/*==================================================
DESCRIPTION
==================================================*/

.industry-card p{
    margin:0;
    max-width:250px;
    color:rgba(255,255,255,.90);
    font-size:15px;
    line-height:1.8;
}

/*==================================================
IMAGE
==================================================*/

.industry-image{
    flex:1;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-top:20px;
}

.industry-image img{

    width:auto;

    height:auto;

    max-width:85%;

    max-height:145px;

    object-fit:contain;

    transition:none !important;

    transform:none !important;

}

.industry-card:hover .industry-image img{

    transform:none !important;

}

/*==================================================
NAVIGATION
==================================================*/

.industry-navigation{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

    margin-top:40px;

}

.industry-prev,
.industry-next{

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:16px;

    transition:.35s;

}

.industry-prev{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.industry-next{

    background:#ff6b00;

    color:#fff;

}

.industry-prev:hover{

    background:#fff;

    color:#2649b8;

}

.industry-next:hover{

    background:#ff7b1d;

    transform:translateY(-2px);

}
/*==================================================
SWIPER FIX
==================================================*/

.industrySwiper{
    overflow:hidden;
}

.industrySwiper .swiper-wrapper{
    align-items:stretch;
}

.industrySwiper .swiper-slide{
    display:flex;
    height:auto;
}

.industrySwiper .swiper-slide .industry-card{
    width:100%;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1199px){

    .industry-head h2{
        font-size:44px;
    }

    .industry-card{
        min-height:300px;
        padding:24px;
    }

    .industry-card h3{
        font-size:26px;
    }

    .industry-image img{
        max-height:130px;
    }

}

@media (max-width:991px){

    .industry-section{
        padding:80px 0;
    }

    .industry-head{
        margin-bottom:45px;
    }

    .industry-head h2{
        font-size:38px;
    }

    .industry-head p{
        font-size:15px;
    }

    .industry-card{
        min-height:290px;
    }

    .industry-navigation{
        justify-content:center;
        margin-top:30px;
    }

}

@media (max-width:767px){

    .industry-section{
        padding:70px 0;
    }

    .industry-head h2{
        font-size:30px;
    }

    .industry-tag{
        font-size:11px;
        padding:8px 18px;
    }

    .industry-card{
        min-height:270px;
        padding:22px;
    }

    .industry-card h3{
        font-size:22px;
    }

    .industry-card p{
        font-size:14px;
    }

    .industry-image img{
        max-width:75%;
        max-height:110px;
    }

}

@media (max-width:575px){

    .industry-head h2{
        font-size:26px;
    }

    .industry-head p{
        font-size:14px;
    }

    .industry-card{
        min-height:250px;
        padding:20px;
    }

    .industry-card h3{
        font-size:20px;
    }

    .industry-image img{
        max-height:95px;
    }

}

/*==================================================
FINAL POLISH
==================================================*/

.industry-card,
.industry-prev,
.industry-next{
    will-change:transform;
}

.industry-card h3{
    transition:.3s;
}

.industry-card p{
    transition:.3s;
}

.industry-card:hover h3{
    color:#fff;
}

.industry-card:hover p{
    color:rgba(255,255,255,.95);
}

.industry-image img{
    pointer-events:none;
    user-select:none;
}

.swiper-button-disabled{
    opacity:.45;
    cursor:not-allowed;
}
/*==================================================
FINAL PREMIUM POLISH
==================================================*/

/* Card Top Glow */

.industry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.25);
}

/* Soft Overlay */

.industry-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        transparent 45%
    );
    pointer-events:none;
}

/* Better Hover */

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.08);

}

/* Better Text */

.industry-card h3{

    letter-spacing:-.3px;

}

.industry-card p{

    opacity:.92;

}

/* Image Alignment */

.industry-image{

    position:relative;

    overflow:hidden;

}

.industry-image img{

    display:block;

    margin:auto;

    object-position:center bottom;

}

/* Navigation Buttons */

.industry-prev,
.industry-next{

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.industry-prev:hover{

    transform:translateY(-2px);

}

.industry-next:hover{

    transform:translateY(-2px);

}

/* Active Cursor */

.industry-prev,
.industry-next{

    user-select:none;

    -webkit-tap-highlight-color:transparent;

}

/* Swiper */

.industrySwiper{

    position:relative;

}

.industrySwiper .swiper-slide{

    transition:opacity .35s ease;

}

/* Improve Rendering */

.industry-card,
.industry-image img{

    backface-visibility:hidden;

    transform-style:preserve-3d;

}

/* Performance */

.industry-card{

    will-change:transform;

}

.industry-image img{

    will-change:transform;

}

/* Prevent Selection */

.industry-card,
.industry-card *{

    user-select:none;

}

/* Better Button Focus */

.industry-prev:focus,
.industry-next:focus{

    outline:none;

}

/* Small Shadow Under Image */

.industry-image::after{

    content:"";

    position:absolute;

    bottom:8px;

    left:50%;

    transform:translateX(-50%);

    width:55%;

    height:12px;

    background:rgba(0,0,0,.12);

    filter:blur(14px);

    border-radius:50%;

    z-index:-1;

}