/* =========================
   ROOT VARIABLES
========================= */

:root {
    --primary: #003D5B;
    --secondary: #0A9396;
    --accent: #EE9B00;
    --dark: #001219;
    --light: #F8FAFC;
    --white: #ffffff;
    --text: #1E293B;
    --muted: #64748B;
    --border: #E2E8F0;

    --radius: 16px;
    --transition: .35s ease;
}

/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--light) !important;
}

.small-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-mini-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--muted);
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
}

/* =========================
   BUTTONS
========================= */

.btn-primary-custom {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: .4s;
}

.btn-primary-custom:hover {
    background: #d38400;
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-custom {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    margin-left: 15px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
}

.btn-light-custom {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    margin-left: 15px;
}

/* =========================
   LOGO
========================= */

.site-logo {
    max-height: 70px;
    width: auto;
}

.navbar-brand {
    padding: 0;
}

/*==================================
HEADER CTA BUTTON
==================================*/

.header-quote-btn {

    background: var(--accent);

    color: #fff;

    border: none;

    border-radius: 50px;

    padding: 12px 24px;

    font-size: 15px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: .35s;

    white-space: nowrap;

}

.header-quote-btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-2px);

}

.header-quote-btn i {

    font-size: 18px;

}

@media(max-width:991px) {

    .header-quote-btn {

        width: 100%;

        justify-content: center;

    }

}


/* ==================================
   HERO CAROUSEL
================================== */

.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    position: relative;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 730px;
    object-fit: cover;
}

.carousel-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            rgba(0, 18, 25, .90) 0%,
            rgba(0, 18, 25, .75) 35%,
            rgba(0, 18, 25, .30) 65%,
            rgba(0, 18, 25, .05) 100%);

    z-index: 1;
}

.carousel-caption-custom {

    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);

    width: 600px;

    z-index: 2;

    text-align: left;
}

.hero-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 20px;

    font-size: 14px;

    font-weight: 600;
}

.carousel-caption-custom h1,
.carousel-caption-custom h2 {

    color: #fff;

    font-size: 58px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 20px;
}

.carousel-caption-custom p {

    color: #dbe7ec;

    font-size: 18px;

    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px) {

    .carousel-caption-custom {

        width: 85%;

        left: 7%;
    }

    .carousel-caption-custom h1,
    .carousel-caption-custom h2 {

        font-size: 42px;
    }

}

@media(max-width:767px) {

    .hero-slider .carousel-item img {
        height: 550px;
    }

    .carousel-caption-custom {

        width: 90%;

        left: 5%;
    }

    .carousel-caption-custom h1,
    .carousel-caption-custom h2 {

        font-size: 28px;

        line-height: 1.3;
    }

    .carousel-caption-custom p {

        font-size: 15px;
    }

    .hero-btns {

        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

}

/* =========================
   HERO
========================= */

/* .hero-section{
    position:relative;
    background:
    linear-gradient(
    rgba(0,18,25,.80),
    rgba(0,18,25,.80)),
    url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
}

.hero-section h1{
    font-size:62px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-section p{
    font-size:18px;
    color:#d7e4ea;
    margin-bottom:30px;
}

.hero-buttons{
    margin-bottom:50px;
}

.hero-image{
    animation:float 5s infinite ease-in-out;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

.hero-stats{
    display:flex;
    gap:40px;
}

.hero-stats h3{
    color:#fff;
    font-size:32px;
    margin-bottom:0;
}

.hero-stats span{
    color:#d7e4ea;
    font-size:14px;
} */

/* =========================
   TRUSTED CLIENTS
========================= */

.trusted-section {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid #edf2f7;
}

.trusted-section img {
    opacity: .7;
    transition: .4s;
}

.trusted-section img:hover {
    opacity: 1;
}

/* =========================
   ABOUT
========================= */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    font-weight: 600;
}

.about-section img,
.rounded-4 {
    border-radius: 20px !important;
}

/* =========================
   SERVICES
========================= */

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    height: 100%;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;

    border-radius: 15px;

    background:
        rgba(10, 147, 150, .12);

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
}

/* =========================
   WHY US
========================= */

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-weight: 600;
}

.benefits-list li:before {

    content: "✓";

    position: absolute;
    left: 0;

    color: var(--accent);
    font-weight: bold;
}

/* =========================
   STATS
========================= */

.stats-section {

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    padding: 80px 0;
}

.counter-box {
    color: #fff;
}

.counter-box h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-box p {
    margin: 0;
    opacity: .9;
}

/* =========================
   PROJECTS
========================= */

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    transition: .6s;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-content {
    padding: 25px;
}

.project-category {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-content h3 {
    font-size: 24px;
    margin: 15px 0;
}

.project-content p {
    color: var(--muted);
}

.project-content a {
    color: var(--primary);
    font-weight: 600;
}

/* ==================================
   INDUSTRIES
================================== */

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: var(--secondary);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(10, 147, 150, .1);

    border-radius: 20px;

    font-size: 36px;
}

.industry-card h3 {
    font-size: 22px;
    margin: 0;
}

/* ==================================
   PROCESS
================================== */

.process-section {
    position: relative;
}

.step-box {
    text-align: center;
    padding: 30px 15px;
}

.step-box span {

    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 32px;
    font-weight: 700;

    box-shadow: 0 15px 30px rgba(0, 61, 91, .2);
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-box p {
    color: var(--muted);
}

/* ==================================
   TESTIMONIALS
================================== */

.testimonial-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    height: 100%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.testimonial-card span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

/* ==================================
   FAQ
================================== */

.faq-accordion .accordion-item {

    border: none;

    margin-bottom: 15px;

    border-radius: 15px !important;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
}

.faq-accordion .accordion-button {

    font-weight: 600;

    padding: 20px 25px;

    background: #fff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {

    background: var(--primary);

    color: #fff;
}

.faq-accordion .accordion-body {

    padding: 25px;

    color: var(--muted);
}

/* ==================================
   CTA SECTION
================================== */

.cta-section {

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;
}

.cta-badge {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    margin-bottom: 25px;

    font-size: 14px;

    font-weight: 600;
}

.cta-section h2 {

    color: #fff;

    font-size: 48px;

    max-width: 800px;

    margin: auto;

    margin-bottom: 25px;
}

.cta-section p {

    max-width: 750px;

    margin: auto;

    margin-bottom: 35px;

    color: #dbe7ec;
}

.cta-buttons {
    margin-top: 20px;
}

/* ==================================
   FOOTER
================================== */

.footer {

    background: var(--dark);

    color: #cbd5e1;

    padding-top: 90px;
}

.footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
}

.footer h5 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 20px;
}

.footer p {
    color: #cbd5e1;
}

.footer ul li {

    margin-bottom: 12px;
}

.footer ul li a {

    color: #cbd5e1;

    transition: .3s;
}

.footer ul li a:hover {

    color: #fff;

    padding-left: 5px;
}

.footer-contact li {
    color: #cbd5e1;
}

.footer-social {

    margin-top: 25px;

    display: flex;
    gap: 12px;
}

.footer-social a {

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    color: #fff;
}

.footer-social a:hover {

    background: var(--accent);

    color: #fff;
}

.footer hr {

    border-color: rgba(255, 255, 255, .08);

    margin: 40px 0;
}

/* ==================================
   POPULAR SEARCHES
================================== */

.footer-seo-links h5 {

    color: #fff;

    margin-bottom: 25px;
}

.footer-seo-links {

    line-height: 2.2;
}

.footer-seo-links a {

    display: inline-block;

    padding: 10px 18px;

    margin-right: 12px;

    margin-bottom: 12px;

    background: rgba(10, 147, 150, .12);

    border: 1px solid rgba(10, 147, 150, .20);

    border-radius: 50px;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 600;

    transition: .3s ease;
}

.footer-seo-links a:hover {

    background: var(--secondary);

    border-color: var(--secondary);

    color: #fff;

    transform: translateY(-2px);
}

.footer-seo-links a:hover {
    color: #fff;
}

/* ==================================
   FOOTER BOTTOM
================================== */

.footer-bottom {

    padding-bottom: 25px;

    font-size: 15px;
}

.footer-bottom a {

    color: #cbd5e1;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ==================================
   FORM STYLING
================================== */

.form-control {

    min-height: 55px;

    border-radius: 12px;

    border: 1px solid var(--border);
}

.form-control:focus {

    border-color: var(--secondary);

    box-shadow: none;
}

textarea.form-control {
    min-height: 150px;
}

/* ==================================
   IMAGE EFFECTS
================================== */

img {

    transition: .4s;
}

.project-card:hover img,
.about-image:hover img {
    transform: scale(1.05);
}

/* ==================================
   SECTION SPACING
================================== */

.section-padding {

    padding-top: 100px;
    padding-bottom: 100px;
}

/* ==================================
   TABLET
================================== */

@media(max-width:991px) {

    .section-padding {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 46px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}

/* ==================================
   MOBILE
================================== */

@media(max-width:767px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline-custom,
    .btn-outline-light-custom {
        margin-left: 0;
    }

    .hero-stats {

        flex-direction: column;

        gap: 20px;

        margin-top: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .counter-box {
        margin-bottom: 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-bottom {

        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }

}

/* ==================================
   LARGE DESKTOP
================================== */

@media(min-width:1400px) {

    .container {
        max-width: 1320px;
    }

    .hero-section h1 {
        font-size: 72px;
    }

}


/* ===================================
   ABOUT HERO
=================================== */

.about-hero {

    position: relative;

    background: url('../images/about-banner.jpg') center center/cover no-repeat;

    min-height: 500px;

    display: flex;

    align-items: center;

}

.about-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 32, 50, .90) 0%,
            rgba(0, 32, 50, .70) 45%,
            rgba(0, 32, 50, .25) 100%);

}

.about-hero .container {

    position: relative;

    z-index: 2;

}

.about-hero-content {

    color: #fff;

    max-width: 700px;

}

.page-tag {

    display: inline-block;

    padding: 10px 18px;

    background: rgba(255, 255, 255, .12);

    border-radius: 50px;

    margin-bottom: 25px;

    font-size: 14px;

    font-weight: 600;

}

.about-hero h1 {

    color: #fff;

    font-size: 56px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

.about-hero p {

    font-size: 18px;

    color: #d8e5ea;

    margin-bottom: 30px;

    line-height: 1.8;

}

.breadcrumb-box {

    display: inline-block;

    background: rgba(255, 255, 255, .12);

    border-radius: 50px;

    padding: 10px 20px;

}

.breadcrumb {

    margin: 0;

}

.breadcrumb-item {

    color: #fff;

    font-size: 15px;

}

.breadcrumb-item a {

    color: #fff;

    text-decoration: none;

}

.breadcrumb-item+.breadcrumb-item::before {

    color: #fff;

}

/* =========================
TABLET
========================= */

@media(max-width:991px) {

    .about-hero {

        min-height: 420px;

    }

    .about-hero h1 {

        font-size: 42px;

    }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px) {

    .about-hero {

        min-height: 380px;

        text-align: center;

    }

    .about-hero h1 {

        font-size: 30px;

    }

    .about-hero p {

        font-size: 16px;

    }

}

/* ===================================
ABOUT COMPANY
=================================== */

.about-company {

    background: #fff;

}

.about-company-image {

    position: relative;

}

.about-company-image img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);

}

.experience-box {

    position: absolute;

    right: 30px;

    bottom: 30px;

    width: 170px;

    background: var(--primary);

    color: #fff;

    padding: 22px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .20);

}

.experience-number {

    display: block;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

}

.experience-text {

    display: block;

    margin-top: 10px;

    font-size: 15px;

    line-height: 1.5;

}

.about-company-content {

    padding-left: 20px;

}

.about-company-content h2 {

    margin: 15px 0 25px;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--heading);

}

.about-company-content p {

    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 18px;

}

.about-highlights {

    margin-top: 30px;

}

.highlight-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

}

.highlight-item i {

    color: var(--accent);

    font-size: 22px;

}

.highlight-item span {

    font-weight: 600;

    color: var(--heading);

}

/* =========================
TABLET
========================= */

@media(max-width:991px) {

    .about-company-content {

        padding-left: 0;

    }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px) {

    .experience-box {

        width: 140px;

        padding: 18px;

        right: 15px;

        bottom: 15px;

    }

    .experience-number {

        font-size: 32px;

    }

    .about-company-content h2 {

        font-size: 30px;

    }

}

/* ===================================
MISSION • VISION • VALUES
=================================== */

.mission-section {

    background: #f8fafc;

}

.mv-card {

    background: #fff;

    padding: 40px 35px;

    border-radius: 20px;

    height: 100%;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

    transition: .35s ease;

    border-top: 4px solid transparent;

}

.mv-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.mv-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.mv-icon i {

    font-size: 36px;

    color: var(--accent);

}

.mv-card h3 {

    font-size: 28px;

    margin-bottom: 20px;

    color: var(--heading);

}

.mv-card p {

    color: var(--muted);

    line-height: 1.9;

}

.values-list {

    margin: 0;

    padding: 0;

    list-style: none;

}

.values-list li {

    padding: 10px 0;

    border-bottom: 1px solid #ececec;

    color: var(--heading);

    font-weight: 500;

}

.values-list li:last-child {

    border-bottom: none;

}

.values-list li::before {

    content: "✓";

    color: var(--accent);

    font-weight: 700;

    margin-right: 12px;

}

/* =========================
MOBILE
========================= */

@media(max-width:767px) {

    .mv-card {

        padding: 30px 25px;

    }

    .mv-card h3 {

        font-size: 24px;

    }

}

/* ===================================
WHY CHOOSE US
=================================== */

.why-choose {

    background: #fff;

}

.section-description {

    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 20px;

}

.feature-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    border-radius: 16px;

    background: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

    transition: .35s;

    height: 100%;

}

.feature-box:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.feature-icon {

    width: 65px;

    height: 65px;

    flex-shrink: 0;

    border-radius: 16px;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.feature-icon i {

    font-size: 28px;

    color: var(--accent);

}

.feature-box h4 {

    font-size: 20px;

    margin-bottom: 8px;

    color: var(--heading);

}

.feature-box p {

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

}

.why-image {

    position: relative;

}

.why-image img {

    width: 100%;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.floating-card {

    position: absolute;

    bottom: 30px;

    left: -30px;

    width: 290px;

    background: var(--primary);

    color: #fff;

    padding: 28px;

    border-radius: 18px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .20);

}

.floating-card h3 {

    color: #fff;

    font-size: 26px;

    margin-bottom: 12px;

}

.floating-card p {

    margin: 0;

    color: rgba(255, 255, 255, .90);

    line-height: 1.7;

}

@media(max-width:991px) {

    .floating-card {

        position: relative;

        left: 0;

        bottom: 0;

        width: 100%;

        margin-top: 20px;

    }

}

@media(max-width:767px) {

    .feature-box {

        padding: 18px;

    }

    .feature-icon {

        width: 55px;

        height: 55px;

    }

    .feature-icon i {

        font-size: 24px;

    }

    .feature-box h4 {

        font-size: 18px;

    }

}

/* ===================================
OUR JOURNEY
=================================== */

.journey-section {

    background: #f8fafc;

}

.journey-timeline {

    position: relative;

    max-width: 900px;

    margin: 60px auto 0;

}

.journey-timeline::before {

    content: "";

    position: absolute;

    left: 110px;

    top: 0;

    width: 4px;

    height: 100%;

    background: var(--accent);

}

.timeline-item {

    position: relative;

    display: flex;

    gap: 40px;

    margin-bottom: 50px;

}

.timeline-item:last-child {

    margin-bottom: 0;

}

.timeline-year {

    width: 110px;

    min-width: 110px;

    height: 110px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 700;

    position: relative;

    z-index: 2;

}

.timeline-content {

    flex: 1;

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.timeline-content h3 {

    margin-bottom: 15px;

    color: var(--heading);

    font-size: 26px;

}

.timeline-content p {

    margin: 0;

    color: var(--muted);

    line-height: 1.9;

}

/* =========================
TABLET
========================= */

@media(max-width:991px) {

    .journey-timeline::before {

        left: 50px;

    }

    .timeline-year {

        width: 90px;

        min-width: 90px;

        height: 90px;

        font-size: 18px;

    }

}

/* =========================
MOBILE
========================= */

@media(max-width:767px) {

    .journey-timeline::before {

        display: none;

    }

    .timeline-item {

        flex-direction: column;

        gap: 20px;

    }

    .timeline-year {

        width: 80px;

        min-width: 80px;

        height: 80px;

        font-size: 16px;

    }

    .timeline-content {

        padding: 25px;

    }

    .timeline-content h3 {

        font-size: 22px;

    }

}

/* ===================================
COMPANY STATISTICS
=================================== */

.company-stats {

    background: linear-gradient(135deg, #00283f, #014f6b);

    color: #fff;

}

.company-stats .section-title h2,
.company-stats .section-title p,
.company-stats .section-subtitle {

    color: #fff;

}

.stat-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, .10);

    border-radius: 20px;

    text-align: center;

    padding: 40px 25px;

    transition: .35s;

    height: 100%;

}

.stat-card:hover {

    transform: translateY(-8px);

    background: rgba(255, 255, 255, .14);

}

.stat-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.stat-icon i {

    font-size: 34px;

    color: var(--accent);

}

.stat-card h3 {

    font-size: 52px;

    font-weight: 800;

    margin-bottom: 12px;

    color: #fff;

}

.stat-card p {

    margin: 0;

    font-size: 17px;

    color: rgba(255, 255, 255, .85);

}

@media(max-width:767px) {

    .stat-card {

        padding: 30px 20px;

    }

    .stat-card h3 {

        font-size: 40px;

    }

}

/* ===================================
QUALITY • SAFETY • SUSTAINABILITY
=================================== */

.quality-section {

    background: #fff;

}

.quality-image {

    position: relative;

}

.quality-image img {

    width: 100%;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);

}

.commitment-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 28px;

}

.commitment-item:last-child {

    margin-bottom: 0;

}

.commitment-icon {

    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 18px;

    background: rgba(238, 155, 0, .12);

    display: flex;

    justify-content: center;

    align-items: center;

}

.commitment-icon i {

    font-size: 30px;

    color: var(--accent);

}

.commitment-item h4 {

    font-size: 22px;

    margin-bottom: 10px;

    color: var(--heading);

}

.commitment-item p {

    margin: 0;

    color: var(--muted);

    line-height: 1.8;

}

@media(max-width:991px) {

    .quality-image {

        margin-bottom: 40px;

    }

}

@media(max-width:767px) {

    .commitment-item {

        gap: 15px;

    }

    .commitment-icon {

        width: 60px;

        height: 60px;

        min-width: 60px;

    }

    .commitment-icon i {

        font-size: 24px;

    }

    .commitment-item h4 {

        font-size: 20px;

    }

}

/* ===================================
INDUSTRIES WE SERVE
=================================== */

.industries-section {

    background: #f8fafc;

}

.industry-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    border-top: 4px solid transparent;

}

.industry-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.industry-card i {

    font-size: 52px;

    color: var(--accent);

    margin-bottom: 20px;

    display: block;

}

.industry-card h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: var(--heading);

}

.industry-card p {

    color: var(--muted);

    line-height: 1.8;

    margin: 0;

}

@media(max-width:767px) {

    .industry-card {

        padding: 30px 20px;

    }

    .industry-card h3 {

        font-size: 20px;

    }

    .industry-card i {

        font-size: 42px;

    }

}

/* ===================================
SERVICES HERO
=================================== */

.services-hero {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    background: url('../images/services-banner.jpg') center center/cover no-repeat;

}

.services-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 32, 50, .92) 0%,
            rgba(0, 32, 50, .75) 45%,
            rgba(0, 32, 50, .30) 100%);

}

.services-hero .container {

    position: relative;

    z-index: 2;

}

.services-hero-content {

    max-width: 760px;

    color: #fff;

}

.services-hero-content h1 {

    color: #fff;

    font-size: 58px;

    line-height: 1.15;

    margin: 20px 0 25px;

    font-weight: 800;

}

.services-hero-content p {

    font-size: 18px;

    color: #d9e4ea;

    line-height: 1.9;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.btn-outline-light-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 32px;

    border: 2px solid rgba(255, 255, 255, .7);

    border-radius: 50px;

    color: #fff;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.btn-outline-light-custom:hover {

    background: #fff;

    color: var(--primary);

}

@media(max-width:991px) {

    .services-hero {

        min-height: 480px;

    }

    .services-hero-content h1 {

        font-size: 44px;

    }

}

@media(max-width:767px) {

    .services-hero {

        min-height: 420px;

        text-align: center;

    }

    .services-hero-content h1 {

        font-size: 32px;

    }

    .services-hero-content p {

        font-size: 16px;

    }

    .hero-buttons {

        justify-content: center;

    }

}

/* ===================================
OUR SERVICES
=================================== */

.services-grid {

    background: #fff;

}

.service-card {

    height: 100%;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

    border-top: 4px solid transparent;

}

.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.service-icon {

    width: 80px;

    height: 80px;

    border-radius: 18px;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}

.service-icon i {

    font-size: 38px;

    color: var(--accent);

}

.service-card h3 {

    font-size: 28px;

    margin-bottom: 18px;

    color: var(--heading);

}

.service-card p {

    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 25px;

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: var(--primary);

    text-decoration: none;

    transition: .3s;

}

.service-link:hover {

    color: var(--accent);

}

.service-link i {

    transition: .3s;

}

.service-link:hover i {

    transform: translateX(6px);

}

@media(max-width:767px) {

    .service-card {

        padding: 28px;

    }

    .service-card h3 {

        font-size: 24px;

    }

}

/* ===================================
WORK PROCESS
=================================== */

.work-process {

    background: #f8fafc;

}

.process-card {

    position: relative;

    background: #fff;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

    overflow: hidden;

}

.process-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

.process-number {

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 42px;

    font-weight: 800;

    color: rgba(0, 0, 0, .05);

    line-height: 1;

}

.process-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.process-icon i {

    font-size: 38px;

    color: var(--accent);

}

.process-card h3 {

    font-size: 24px;

    color: var(--heading);

    margin-bottom: 18px;

}

.process-card p {

    color: var(--muted);

    line-height: 1.8;

    margin: 0;

}

@media(max-width:991px) {

    .process-card {

        margin-bottom: 10px;

    }

}

@media(max-width:767px) {

    .process-card {

        padding: 30px 22px;

    }

    .process-icon {

        width: 75px;

        height: 75px;

    }

    .process-icon i {

        font-size: 32px;

    }

    .process-card h3 {

        font-size: 22px;

    }

    .process-number {

        font-size: 34px;

    }

}

/* ===================================
WHY CHOOSE OUR SERVICES
=================================== */

.service-benefits {

    background: #fff;

}

.benefits-image img {

    width: 100%;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);

}

.benefits-list {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.benefit-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    padding: 22px;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

}

.benefit-item:hover {

    transform: translateX(8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

.benefit-icon {

    width: 70px;

    height: 70px;

    min-width: 70px;

    border-radius: 18px;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.benefit-icon i {

    font-size: 30px;

    color: var(--accent);

}

.benefit-item h3 {

    font-size: 24px;

    color: var(--heading);

    margin-bottom: 10px;

}

.benefit-item p {

    margin: 0;

    color: var(--muted);

    line-height: 1.8;

}

@media(max-width:991px) {

    .benefits-image {

        margin-bottom: 20px;

    }

}

@media(max-width:767px) {

    .benefit-item {

        gap: 15px;

        padding: 20px;

    }

    .benefit-icon {

        width: 60px;

        height: 60px;

        min-width: 60px;

    }

    .benefit-icon i {

        font-size: 24px;

    }

    .benefit-item h3 {

        font-size: 20px;

    }

}

/*==================================
INDUSTRIES
==================================*/

.industry-box {

    background: #fff;

    border-radius: 20px;

    text-align: center;

    padding: 35px 20px;

    height: 100%;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.industry-box:hover {

    transform: translateY(-8px);

}

.industry-box i {

    font-size: 48px;

    color: var(--accent);

    margin-bottom: 20px;

    display: block;

}

.industry-box h3 {

    font-size: 24px;

    margin: 0;

}

/*==================================
FAQ
==================================*/

.faq-section {

    background: #fff;

}

.accordion-item {

    border: none;

    margin-bottom: 20px;

    border-radius: 16px !important;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

}

.accordion-button {

    padding: 22px;

    font-size: 20px;

    font-weight: 600;

}

.accordion-button:not(.collapsed) {

    background: var(--primary);

    color: #fff;

}

.accordion-button:focus {

    box-shadow: none;

}

.accordion-body {

    padding: 25px;

    line-height: 1.9;

    color: var(--muted);

}

/*==================================
FINAL CTA
==================================*/

.service-cta {

    padding: 90px 0;

    background: linear-gradient(135deg, var(--primary), #013b61);

    color: #fff;

}

.service-cta h2 {

    color: #fff;

    font-size: 48px;

    margin-bottom: 20px;

}

.service-cta p {

    max-width: 760px;

    margin: auto;

    color: rgba(255, 255, 255, .85);

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 40px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.service-cta .btn-outline-light-custom {

    border: 2px solid rgba(255, 255, 255, .7);

    color: #fff;

}

.service-cta .btn-outline-light-custom:hover {

    background: #fff;

    color: var(--primary);

}

@media(max-width:767px) {

    .service-cta {

        padding: 70px 0;

    }

    .service-cta h2 {

        font-size: 34px;

    }

    .service-cta p {

        font-size: 16px;

    }

}


/* ===================================
CONTACT HERO
=================================== */

.contact-hero {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    background: url('../images/contact-banner.jpg') center center/cover no-repeat;

}

.contact-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 32, 50, .92) 0%,
            rgba(0, 32, 50, .75) 45%,
            rgba(0, 32, 50, .30) 100%);

}

.contact-hero .container {

    position: relative;

    z-index: 2;

}

.contact-hero-content {

    max-width: 760px;

    color: #fff;

}

.contact-hero-content h1 {

    color: #fff;

    font-size: 58px;

    line-height: 1.15;

    margin: 20px 0;

    font-weight: 800;

}

.contact-hero-content p {

    font-size: 18px;

    color: #d9e4ea;

    line-height: 1.9;

    margin-bottom: 35px;

}

.contact-hero .hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.contact-hero .btn-outline-light-custom {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 32px;

    border: 2px solid rgba(255, 255, 255, .7);

    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.contact-hero .btn-outline-light-custom:hover {

    background: #fff;

    color: var(--primary);

}

.contact-hero .btn-primary-custom i,

.contact-hero .btn-outline-light-custom i {

    margin-right: 8px;

}

@media(max-width:991px) {

    .contact-hero {

        min-height: 480px;

    }

    .contact-hero-content h1 {

        font-size: 44px;

    }

}

@media(max-width:767px) {

    .contact-hero {

        min-height: 420px;

        text-align: center;

    }

    .contact-hero-content h1 {

        font-size: 32px;

    }

    .contact-hero-content p {

        font-size: 16px;

    }

    .contact-hero .hero-buttons {

        justify-content: center;

    }

}

/*==================================
CONTACT FORM
==================================*/

.contact-section {

    background: #f8fafc;

}

.contact-info-wrapper h2 {

    margin: 15px 0 20px;

}

.contact-info-wrapper>p {

    margin-bottom: 35px;

    color: var(--muted);

    line-height: 1.9;

}

.contact-info-item {

    display: flex;

    gap: 18px;

    margin-bottom: 25px;

    align-items: flex-start;

}

.contact-icon {

    width: 65px;

    height: 65px;

    min-width: 65px;

    border-radius: 16px;

    background: rgba(238, 155, 0, .12);

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-icon i {

    font-size: 28px;

    color: var(--accent);

}

.contact-info-item h4 {

    margin-bottom: 8px;

    font-size: 20px;

}

.contact-info-item a {

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

}

.contact-info-item p {

    margin: 0;

    color: var(--muted);

}

.contact-form-wrapper {

    background: #fff;

    border-radius: 22px;

    padding: 45px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.contact-form-wrapper h3 {

    margin-bottom: 10px;

}

.contact-form-wrapper p {

    margin-bottom: 30px;

    color: var(--muted);

}

.contact-form-wrapper .form-control,

.contact-form-wrapper .form-select {

    min-height: 56px;

    border-radius: 12px;

    border: 1px solid #dbe4ec;

    padding: 14px 18px;

    box-shadow: none;

}

.contact-form-wrapper textarea {

    min-height: 160px;

    resize: vertical;

}

.contact-form-wrapper .form-control:focus,

.contact-form-wrapper .form-select:focus {

    border-color: var(--accent);

    box-shadow: 0 0 0 .2rem rgba(238, 155, 0, .15);

}

.contact-form-wrapper button {

    border: none;

}

@media(max-width:991px) {

    .contact-form-wrapper {

        padding: 35px;

    }

}

@media(max-width:767px) {

    .contact-form-wrapper {

        padding: 25px;

    }

    .contact-icon {

        width: 55px;

        height: 55px;

        min-width: 55px;

    }

    .contact-icon i {

        font-size: 22px;

    }

}

/*==================================
CONTACT CTA
==================================*/

.contact-cta {

    background: #fff;

}

.contact-cta-box {

    background: linear-gradient(135deg, #ffffff, #f8fafc);

    border-radius: 28px;

    padding: 70px 60px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

.contact-cta-box h2 {

    margin: 20px 0;

}

.contact-cta-box>p {

    max-width: 850px;

    margin: auto;

    color: var(--muted);

    line-height: 1.9;

}

.cta-feature {

    padding: 30px 20px;

}

.cta-feature i {

    font-size: 48px;

    color: var(--accent);

    margin-bottom: 20px;

    display: block;

}

.cta-feature h4 {

    font-size: 22px;

    margin-bottom: 10px;

}

.cta-feature p {

    margin: 0;

    color: var(--muted);

}

.contact-cta-box h3 {

    font-size: 34px;

    margin-bottom: 20px;

}

.contact-cta .cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.btn-success-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #25D366;

    color: #fff;

    padding: 14px 34px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.btn-success-custom:hover {

    background: #1ebe5d;

    color: #fff;

}

.btn-outline-primary-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 14px 34px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.btn-outline-primary-custom:hover {

    background: var(--primary);

    color: #fff;

}

@media(max-width:991px) {

    .contact-cta-box {

        padding: 50px 35px;

    }

}

@media(max-width:767px) {

    .contact-cta-box {

        padding: 40px 25px;

    }

    .contact-cta-box h2 {

        font-size: 34px;

    }

    .contact-cta-box h3 {

        font-size: 28px;

    }

    .cta-feature {

        padding: 20px 10px;

    }

    .cta-feature i {

        font-size: 40px;

    }

}

/*==================================
QUOTE MODAL
==================================*/

.quote-modal {

    border: none;

    border-radius: 22px;

    overflow: hidden;

}

.quote-modal .modal-header {

    background: var(--primary);

    color: #fff;

    padding: 22px 30px;

}

.quote-modal .btn-close {

    filter: brightness(0) invert(1);

}

.quote-modal .modal-body {

    padding: 35px;

}

.quote-modal .form-control,

.quote-modal .form-select {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #d9dee5;

}

.quote-modal textarea {

    height: auto;

    min-height: 140px;

    resize: vertical;

}

.quote-modal .form-control:focus,

.quote-modal .form-select:focus {

    border-color: var(--accent);

    box-shadow: 0 0 0 .2rem rgba(238, 155, 0, .15);

}