﻿*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a,
img,
span,
label,
input,
button,
ion-icon {
    display: block;
}

button,
input {
    background: none;
    border: none;
    font: inherit;
}

button {
    cursor: pointer;
}

input {
    width: 100%;
}

ion-icon {
    pointer-events: none;
}

html {
    font-family: var(--ff-open-sans) !important;
    color: var(--eerie-black);
    font-size: 1rem;
    line-height: 1.5;
    scroll-behavior: smooth;
}

body {
    background: var(--alice-blue-1);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: hsla(219, 14%, 60%, 0.3);
    border: 2px solid var(--white);
}

    ::-webkit-scrollbar-thumb:hover {
        background: hsla(219, 14%, 60%, 0.5);
    }

.container {
    padding-inline: 15px;
}

button,
a {
    transition: var(--transition);
}

.btn {
    position: relative;
    background: var(--background, var(--carolina-blue));
    color: var(--color, var(--white));
    min-width: var(--width, 40px);
    min-height: var(--height, 40px);
    padding: 5px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-14);
    font-family: var(--ff-nunito);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    overflow: hidden;
}

    .btn ion-icon {
        font-size: 22px;
        --ionicon-stroke-width: 40px;
    }

    .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .btn:is(:hover, :focus) {
        box-shadow: var(--shadow-2);
    }

        .btn:is(:hover, :focus)::before {
            opacity: 1;
        }

.section {
    padding-block: var(--section-padding);
}

.h1,
.h2,
.h3 {
    color: var(--dark-blue-text);
    font-family: var(--ff-nunito);
    line-height: 1.4;
}

.h1 {
    font-size: var(--fs-1);
    text-transform: uppercase;
}

.h2,
.h3 {
    font-weight: var(--fw-400);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-4);
}

.w-100 {
    width: 100%;
}

.header-contact {
    display: none;
}

.set-top-banner {
    background: url("../image/home-banner.jpg") no-repeat center center / cover;
}

.logo img {
    width: 180px;
    margin-top: 10px;
}

.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 4;
}

#site-header.scrolled {
    background: var(--dark-blue);
}

.header.active {
    box-shadow: var(--shadow-1);
}

.header .container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-btn {
    --color: var(--slate-blue-light);
    --background: var(--white);
    --shadow-2: var(--shadow-1);
    box-shadow: var(--shadow-1);
}

.nav-toggle-btn span {
    background: var(--slate-blue-light);
    width: 22px;
    height: 2px;
    border-radius: 2px;
    margin-block: 8px;
    transform-origin: right;
    transition: var(--transition);
}

    .nav-toggle-btn span.two {
        transform: scaleX(0.7);
    }

    .nav-toggle-btn span.three {
        transform: scaleX(0.4);
    }

.nav-toggle-btn:is(:hover, :focus) span {
    background: var(--carolina-blue);
}

.nav-toggle-btn.active span {
    transform: scaleX(1);
    background: var(--carolina-blue);
}

.navbar {
    background: #040416;
    position: fixed;
    top: 70px;
    bottom: 0;
    right: -260px;
    max-width: 260px;
    width: 100%;
    padding: 20px 25px;
    visibility: hidden;
    transition: 0.25s cubic-bezier(0.51, 0.03, 0.64, 0.28);
}

    .navbar.active {
        visibility: visible;
        transform: translateX(-100%);
        transition: 0.5s cubic-bezier(0.33, 0.85, 0.56, 1.02);
    }

.navbar-link {
    color: var(--alice-blue-1);
    font-family: var(--ff-nunito);
    font-size: var(--fs-6);
    padding-block: 5px;
    margin-bottom: 15px;
}

    .navbar-link:after {
        border-bottom: 2px solid transparent;
        content: "";
        display: block;
        height: 5px;
    }

    .navbar-link:is(:hover, :focus) {
        color: var(--white);
    }

        .navbar-link:is(:hover, :focus)::after,
        .navbar-link.active::after {
            content: "";
            display: block;
            border-bottom: 2px solid var(--orange);
            border-radius: 1px;
            height: 5px;
            width: auto;
            color: var(--white);
        }

.overlay {
    position: fixed;
    top: 70px;
    background: hsl(216, 38%, 95%);
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

    .overlay.active {
        opacity: 0.7;
        pointer-events: all;
    }

.header-actions a {
    color: var(--slate-blue);
    font-family: var(--ff-nunito);
    font-size: var(--fs-6);
    line-height: 1.3;
}

.envelope {
    background: url("../image/Send_fill.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: inline-flex;
    vertical-align: middle;
}

.telephone {
    background: url("../image/call.svg");
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: inline-flex;
    vertical-align: middle;
}

.hero {
    padding-top: 120px;
}

.hero-title {
    max-width: 25ch;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-text {
    color: var(--alice-blue-2);
    line-height: 1.8;
    margin-bottom: 30px;
    /*width: 60ch;*/
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f98700;
    color: white;
    font-weight: normal;
    font-size: 18px;
    padding: 8px 30px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: var(--ff-open-sans);
}

    .custom-btn .icon-circle {
        background: url("../image/btn-services-arrow.svg");
        background-repeat: no-repeat;
        width: 37px;
        height: 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -30px;
        top: 0%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .custom-btn:hover .icon-circle {
        transform: translateX(-10px);
    }

.hero-form {
    background: var(--gradient);
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    border-radius: var(--radius-18);
    font-family: var(--ff-nunito);
}

.contact-a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-wrapper {
    padding: 15px 20px;
}

    .input-wrapper:not(:last-of-type) {
        border-bottom: 1px solid hsla(0, 0%, 0%, 0.08);
    }

.input-label {
    color: var(--manatee);
    font-size: var(--fs-6);
    margin-bottom: 10px;
}

.input-field {
    color: var(--space-cadet);
    outline: 2px solid transparent;
    outline-offset: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

    .input-field:focus {
        outline-color: var(--carolina-blue);
    }

    .input-field::placeholder {
        color: var(--independence);
    }

.hero-form .btn {
    --width: calc(100% - 40px);
    --height: 50px;
    margin: 20px;
    text-transform: uppercase;
}
/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
    display: grid;
    gap: 50px;
}

.about .section-title {
    margin-block-end: 35px;
}

.accordion-card .card-title {
    padding-block-end: 20px;
}

.accordion-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .accordion-btn ion-icon {
        font-size: 1.5rem;
        color: var(--blue-crayola);
        transition: var(--transition-1);
    }

.accordion-card.expanded .accordion-btn ion-icon {
    transform: rotate(0.5turn);
}

.accordion-btn .span {
    transition: var(--transition-1);
}

.accordion-btn:is(:hover, :focus-visible) .span,
.accordion-card.expanded .accordion-btn .span {
    color: var(--dark-blue-text);
}

.accordion-content {
    padding-inline-start: 24px;
    max-height: 0;
    overflow: hidden;
}

.accordion-card.expanded .accordion-content {
    max-height: max-content;
    padding-block-end: 20px;
    color: var(--eerie-black);
}
/**
   * step
   */
.steps {
    background-color: #0a0a36;
}

.steps__grid {
    margin-top: 4rem;
    display: grid;
    gap: 1rem;
}
.padding-services-container {
    padding-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
h2.section__header {
    color: #fb8501;
    text-align: center;
   /* font-size: 22px;
    text-transform: lowercase;
    font-weight: normal;*/
}

    h2.section__header div {
        font-size: 32px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
    }

p.section__description {
    color: var(--dark-bg-par);
    text-align: center;
    width: 80%;
    margin: 0.5rem auto 0;
}

.steps__card {
    padding: 1rem;
    background: #090930;
}

    .steps__card span {
        display: flex;
        margin-bottom: 1rem;
        padding: 5px 11px;
        font-size: 1.5rem;
        border-radius: 100%;
    }

    .steps__card h4 {
        margin-bottom: 1rem;
        font-size: 16px;
        font-weight: 600;
        color: var(--alice-blue-2);
        text-align: center;
    }

li strong {
    color: antiquewhite;
}

.steps__card h3 {
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
    color: #e39b45bf;
    text-align: center;
}

.steps__card p {
    color: var(--dark-bg-par);
    font-size: 14px;
    text-align: center;
}

.services_ul {
    color: var(--dark-bg-par);
    text-align: center;
}

li:first-child {
    border-top: none;
}

ul li {
    border-top: none;
    text-align: left;
    padding-top: 10px;
}

.horizontal-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.service-item {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f0efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-wrapper img {
        width: 32px;
        height: 32px;
    }

.service-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 14px;
    color: var(--eerie-black);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .horizontal-services {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 30px 20px;
    }

    .about-banner img {
        width: 100%;
        height: 100%;
    }
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-info {
    flex: 1;
    padding: 20px;
    min-width: 280px;
}

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--dark-blue-text);
    }

    .contact-info p {
        margin-bottom: 20px;
        color: var(--eerie-black);
        font-size: 14px;
    }

.info-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .info-icons div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--icon-color);
    }

    .info-icons i {
        background-color: var(--icon-color);
        padding: 10px;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        background-position: center;
    }

.contact-form {
    flex: 1;
    padding: 20px;
    min-width: 280px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid var(--slate-blue-light);
        font-size: 12px;
        background: transparent;
    }

        .contact-form input:focus-visible,
        .contact-form textarea:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: -1px;
        }

    .contact-form button {
        cursor: pointer;
    }

        .contact-form button:hover {
            background-color: var(--orange-hover);
        }

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}

.footer {
    background: var(--footer-bg);
    color: var(--independence);
}

    .footer a {
        color: inherit;
    }

.footer-top {
    padding-block: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
}

.footer-text {
    font-size: var(--fs-6);
    line-height: 1.8;
}

.footer-list {
    font-family: var(--ff-nunito);
}

    .footer-list:not(:last-of-type) {
        width: 50%;
    }

    .footer-list:last-of-type {
        width: 100%;
        column-count: 2;
    }

.footer-bottom {
    border-radius: var(--radius-18) var(--radius-18) 0 0;
    padding: 20px;
}

.footer-col p {
    margin-bottom: 10px;
}

.copyright {
    font-size: var(--fs-6);
}

    .copyright > a {
        display: inline-block;
    }

        .copyright > a:is(:hover, :focus) {
            color: #e3ddc2;
        }

.footer-end {
    background: var(--dark-blue);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #f9f9f9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: #b7633c;
            }

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #bbb;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: #b7633c;
    }

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

@media (min-width: 580px) {
    .container {
        max-width: 540px;
        margin-inline: auto;
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /**
   * HEADER
   */
}

@media (max-width: 580px) {
    .header-actions a,
    .header-actions .header-contact {
        display: none;
    }
}
/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
    /**
   * CUSTOM PROPERTY
   */

    :root {
        --fs-1: 2.625rem;
    }

    .grid-list {
        grid-template-columns: 1fr 1fr;
    }
    /**
   * REUSED STYLE
   */

    .container {
        max-width: 720px;
    }

    /**
   * HEADER
   */

    .header-actions {
        gap: 30px;
    }

    .header-contact {
        display: block;
        text-align: center;
    }

        .header-contact .contact-link {
            color: var(--slate-blue);
            font-family: var(--ff-nunito);
            font-size: var(--fs-6);
            line-height: 1.3;
        }

            .header-contact .contact-link:is(:hover, :focus) {
                color: var(--orange);
            }

        .header-contact .contact-time {
            color: var(--independence);
            font-size: var(--fs-7);
        }

    /**
   * HERO
   */

    .hero {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .hero-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 0.8fr;
    }

    .input-wrapper:not(:last-of-type) {
        border-bottom: none;
        border-right: 1px solid hsla(0, 0%, 0%, 0.08);
    }

    .input-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /**
   * ABOUT
   */

    .about .container {
        grid-template-columns: 0.3fr 0.7fr;
        align-items: center;
        justify-content: center;
    }

    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps__grid {
        margin-top: 4rem;
        grid-template-columns: repeat(4, 1fr);
    }

    /**
   * FOOTER
   */

    .footer-brand {
        width: 100%;
    }

    .footer-text {
        max-width: 400px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 30px;
        box-shadow: var(--shadow-1);
    }

    .social-list {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .hero .container {
        width: 100%;
    }

    .footer-list:not(:last-of-type) {
        width: 25%;
    }

    .footer-list:last-of-type {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    :root {
        --fs-1: 2.875rem;
        --fs-2: 2rem;
    }

    .container {
        max-width: 1170px;
    }

    .overlay,
    .nav-toggle-btn {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-link {
        margin-bottom: 0;
        font-weight: var(--fw-600);
    }

    .navbar-list {
        display: flex;
        gap: 50px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-text {
        width: 60ch;
    }

    .hero-banner {
        left: auto;
        right: 50px;
        width: 630px;
    }

    .hero-form {
        max-width: 900px;
    }

        .hero-form .btn {
            --width: calc(100% - 40px);
            --height: 50px;
            margin: 20px;
            text-transform: uppercase;
        }

    /**
   * FOOTER
   */

    .footer-brand {
        width: 33.33%;
    }

    .footer-text {
        max-width: 35ch;
    }

    .footer-list:not(:last-of-type) {
        width: 16.66%;
    }

    .footer-list:last-of-type {
        width: 33.33%;
    }
}
/* Section background */
.svc-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

/* Section heading */
.svc-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
}

.svc-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Grid layout */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* Service card */
.svc-card {
    background-color: #0b1235;
    border-radius: 10px;
    padding: 32px 22px 30px;
    text-align: left;
    text-decoration: none;
    color: #f9fafb;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

/* Icon circle */
.svc-icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

    .svc-icon span {
        font-size: 1.5rem;
        color: #0b1235;
    }

/* Titles */
.svc-title {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #f97316; /* orange heading */
    font-weight: 600;
}

.svc-tagline {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Bullet list */
.svc-list {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e5e7eb;
}

    .svc-list li + li {
        margin-top: 6px;
    }

    .svc-list strong {
        color: #ffffff;
        font-weight: 600;
    }

/* Hover effects */
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.6);
    border-color: #f97316;
    background-color: #10163b;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .svc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-heading {
        font-size: 1.7rem;
    }

    .svc-card {
        padding: 26px 18px 24px;
    }
}

/* ---------------- HERO AREA ---------------- */
.hero {
    background: #0a0a36;
    color: #ffffff;
    padding: 90px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #dedff3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtitle {
    max-width: 520px;
    font-size: 1rem;
    color: #e3e4f3;
    margin-bottom: 24px;
}

.btn-primary {
    width: 250px;
    padding: 12px 24px;
    background: #ff7a1a;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-primary:hover {
        background: #ff8f44;
        transform: translateY(-2px);
    }

.hero-card {
    background: #14144f;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 22px;
    color: #dedff3;
}

    .hero-card h4 {
        color: #ffffff;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .hero-card ul {
        list-style: none;
        font-size: 0.9rem;
    }

    .hero-card li + li {
        margin-top: 6px;
    }

/* ---------------- SECTION BASE ---------------- */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a0a36;
}

.section-subtitle {
    color: #4b5563;
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* ---------------- WHAT WE DELIVER ---------------- */
.what-we-deliver-section {
    background: #fff;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.deliver-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f2f2fa;
}

    .deliver-card h3 {
        color: #0a0a36;
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .deliver-card p {
        color: #4b5563;
        margin-bottom: 14px;
        font-size: 0.95rem;
    }

    .deliver-card ul {
        font-size: 0.9rem;
        list-style: none;
    }

    .deliver-card li + li {
        margin-top: 6px;
    }

    .deliver-card li strong {
        color: #ff7a1a;
    }
/* ---------------- CAPABILITIES GRID ---------------- */
.capabilities {
    background: #dedff3;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cap-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .cap-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
    }

    .cap-card h4 {
        color: #0a0a36;
        margin-bottom: 6px;
        font-size: 1.05rem;
    }

    .cap-card p {
        color: #4b5563;
        font-size: 0.88rem;
    }

/* ---------------- PROCESS TIMELINE ---------------- */
.process-timeline {
    background: #fff;
}

.process-line-wrapper {
    position: relative;
    margin-top: 40px;
}

.process-line {
    height: 2px;
    background: #c7c9ed;
    width: 85%;
    position: absolute;
    top: 24px;
    left: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.copyright > a {
    color: gainsboro;
}

.process-step {
    text-align: left;
    padding-top: 40px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0a0a36;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2px;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a0a36;
    margin-top: 40px;
}

.process-step p {
    font-size: 0.85rem;
    color: #4b5563;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-card {
        margin-top: 20px;
    }

    .deliver-grid {
        grid-template-columns: 1fr;
    }

    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        left: 0;
    }
    /* ---------------- PROCESS - VERTICAL ---------------- */
    .process-timeline {
        background: #fff;
        margin-top: 40px;
        position: relative;
        padding-left: 40px; /* space for vertical line */
    }

    .process-line {
        display: none;
    }
    /* Vertical line */
    .process-timeline::before {
        /*content: "";
    position: absolute;
    left: 13%;
    top: 20%;
    width: 3px;
    height: 65%;
    background: #c7c9ed;
    border-radius: 6px;*/
        display: none;
    }

    /* Each step wrapper */
    .process-step {
        position: relative;
        padding: 20px 0 20px 30px;
    }

    /* Number circle */
    .step-number {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0a0a36;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: -20px;
        top: 60px;
    }

    /* Titles + Description */
    .process-step h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #0a0a36;
        margin-bottom: 6px;
    }

    .process-step p {
        font-size: 0.85rem;
        color: #4b5563;
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .cap-grid {
        grid-template-columns: 1fr;
    }
}

.breadcrumbs {
    padding: 12px 0;
    font-size: 0.9rem;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}

    .breadcrumbs .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
    }

    .breadcrumbs a {
        color: #4b5563;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

    .breadcrumbs .sep {
        color: #7a7a9e;
        font-family: cursive;
    }

    /* Current page */
    .breadcrumbs .current {
        color: #0a0a36;
        font-weight: 600;
    }

/* Mobile tweaks */
@media (max-width: 600px) {
    .breadcrumbs {
        font-size: 0.8rem;
    }

        .breadcrumbs .container {
            justify-content: flex-start; /* or center if you prefer */
        }
}
/* ================= CLIENT SPOTLIGHT SLIDER ================= */



.client-spotlight {
    padding: 70px 0;
    background: #ffffff;
}



/* Slider wrapper */

.spotlight-slider {
    position: relative;
    margin-top: 24px;
}



/* Each slide */

.spotlight-slide {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}



    .spotlight-slide.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }



/* Two-column layout inside slide */

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}



/* Left: project details card */

.spotlight-project {
    background: #dedff3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}



    .spotlight-project h3 {
        color: #0a0a36;
        font-size: 1.25rem;
        margin-bottom: 6px;
        font-weight: 700;
    }



.project-link {
    margin-bottom: 12px;
}



    .project-link a {
        color: #0a0a36;
        text-decoration: underline;
        font-weight: 600;
    }



.spotlight-project p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 14px;
}



.project-meta {
    list-style: none;
    margin-top: 10px;
    color: #111827;
    font-size: 0.92rem;
}



    .project-meta li + li {
        margin-top: 8px;
    }



    .project-meta strong {
        color: #0a0a36;
        font-weight: 700;
    }



/* Optional preview image inside project block */

.spotlight-project img {
    width: 100%;
    border-radius: 12px;
    margin-top: 14px;
    border: 1px solid rgba(10, 10, 54, 0.12);
}



/* Right: testimonial card */

.spotlight-testimonial {
    /* background: #0a0a36;

  border-radius: 16px;*/

    padding: 24px;
    color: #0a0a36;
    /*box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);

  border: 1px solid rgba(222, 223, 243, 0.18);*/
}



/* Client name + photo row */

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}



.client-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dedff3;
    background: #ffffff;
}



.client-info strong {
    color: #0a0a36;
    font-size: 1rem;
}



.client-info span {
    color: #0a0a36;
    font-size: 0.9rem;
}



/* Quotes */

.spotlight-testimonial blockquote {
    margin: 0;
    padding: 12px 14px;
    border-left: 4px solid #ff7a1a;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a36;
}



    .spotlight-testimonial blockquote + blockquote {
        margin-top: 12px;
    }



/* Controls */

.spotlight-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}



.spotlight-prev,
.spotlight-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(10, 10, 54, 0.12);
    background: #ffffff;
    color: #0a0a36;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}



    .spotlight-prev:hover,
    .spotlight-next:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        background: #f7f7ff;
    }



    .spotlight-prev:focus,
    .spotlight-next:focus {
        outline: 3px solid rgba(255, 122, 26, 0.45);
        outline-offset: 2px;
    }



/* ================= RESPONSIVE ================= */



/* Tablet */

@media (max-width: 900px) {

    .spotlight-grid {
        grid-template-columns: 1fr;
    }



    .spotlight-project,
    .spotlight-testimonial {
        padding: 20px;
    }
}



/* Mobile */

@media (max-width: 600px) {

    .client-photo {
        width: 48px;
        height: 48px;
    }



    .spotlight-testimonial blockquote {
        font-size: 0.92rem;
    }
}

/* Dropdown base */

.nav-item.dropdown {
    position: relative;
}



.dropdown-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}



    .dropdown-toggle:focus-visible {
        outline: 2px solid #0a0a36;
        outline-offset: 3px;
        border-radius: 6px;
    }



/* Menu */

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(10, 10, 54, 0.12);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 999;
}

    .dropdown-menu li {
        margin-top: 0;
        padding-top: 0;
    }



.dropdown-link {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #0a0a36;
    font-size: 14px;
    line-height: 1.2;
}



    .dropdown-link:hover,
    .dropdown-link:focus {
        background: rgba(238, 151, 30, 0.12);
        outline: none;
    }



/* Open states (desktop hover/focus + JS class) */

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu,
.nav-item.dropdown.open .dropdown-menu {
    display: block;
}



/* Mobile: dropdown should be inline (not absolute) */

@media (max-width: 991px) {

    .dropdown-menu {
        position: static;
        margin-top: 6px;
        min-width: 100%;
        box-shadow: none;
        border-radius: 10px;
    }



    .dropdown-link {
        padding-left: 18px;
    }
}

.clutch-widget {
    margin-top: 10px;
}

.whatsapp-button {
    display: none; /* hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

#custom-btn:disabled {
    background-color: #fb850196;
    color: #fffffff2;
    cursor: not-allowed;
    opacity: 0.7;
}

.spotlight-slide {
    display: none;
}

    .spotlight-slide.active {
        display: block;
    }

.body-terms {
    font-family: Arial, sans-serif;
    margin: 40px auto;
    max-width: 1000px;
    line-height: 1.6;
    margin-top: 20px;
    color: #333;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.display-inline {
    display: inline-table;
}

.li-strong {
    color: #0a0a36;
}

.hero-color-home {
    background: #0a0a3600;
}

/*modal popup*/
/* Reset & base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
   // font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Trigger */
.open-modal-btn {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease;
}

    .open-modal-btn:hover {
        transform: translateY(-1px);
    }

/* Modal container */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease forwards;
    z-index:1000;
}
/* Modal box */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    animation: popIn 0.5s ease forwards;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        background: rgba(0,0,0,0);
    }

    to {
        background: rgba(0,0,0,0.6);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


    .modal.show {
        display: block;
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}

/* Dialog */
.modal-dialog {
    position: relative;
    z-index: 1001;
    width: min(1000px, 92vw);
    max-height: 90vh;
    margin: 10vh auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    overflow-y: auto; /* Enable scroll inside modal */
}

/* Close */
.close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 2;
}

/* Grid */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Left */
.modal-left {
    padding: 28px;
    background: #0a0a36;
    border-right: 1px solid #e9eef5;
}

    .modal-left h2 {
        margin: 0 0 12px;
        color: #ff7a1ab5;
        font-size: 22px;
    }

.bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

    .bullets li {
        margin: 8px 0;
        color: #ffffffa1;
        position: relative;
        padding-left: 20px;
    }

        .bullets li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #16a34a;
        }

.contact-info-modal h3 {
    margin: 16px 0 8px;
    font-size: 16px;
    color: #ffffffa1;
}

.contact-info-modal p {
    margin: 4px 0;
    color: #ffffffa1;
}

.cta-message {
    margin-top: 16px;
    font-weight: 600;
    color: #dfa06a;
}

/* Right */
.modal-right {
    padding: 28px;
}

    .modal-right h2 {
        margin: 0 0 8px;
        color: #ff7a1a;
        font-size: 22px;
    }

.trust {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
}

/* Form */
.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

    .form .row:nth-child(2),
    .form .row:nth-child(4),
    .form .row:nth-child(5) {
        grid-template-columns: 1fr;
    }

input, textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #d7dce3;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    background: #fff;
}

    input:focus, textarea:focus {
        border-color: #0b5ed7;
        box-shadow: 0 0 0 4px rgba(11,94,215,.12);
    }

textarea {
    min-height: 110px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    /*  background: linear-gradient(90deg, #0b5ed7, #00c6ff);*/
    background: linear-gradient(90deg, #d7850b, #a3d925);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

/* Scroll handling */
.modal-right, .modal-left {
    overflow-y: auto;
    /*    max-height: calc(90vh - 24px);*/
}

/* Mobile */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
       
    }

    .modal-dialog {
        width: 94vw;
        margin: 3vh auto;
    }

    .form .row {
        grid-template-columns: 1fr;
    }

    .close {
        top: 10px;
        right: 10px;
    }
}

/*Success popup*/
.success-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .success-popup.show {
        display: block;
        opacity: 1;
    }

.success-content {
    background: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    animation: scaleUp 0.4s ease;
    position: relative;
}

    .success-content h2 {
        color: #28a745;
        margin: 15px 0 10px;
    }

    .success-content p {
        color: #444;
        font-size: 15px;
    }

.success-popup .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Popup animation */
@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Checkmark animation */
.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #28a745;
    position: absolute;
    top: 0;
    left: 0;
    animation: circleFade 0.5s ease forwards;
}

.checkmark-stem {
    width: 4px;
    height: 25px;
    background: #28a745;
    position: absolute;
    left: 38px;
    top: 27px;
    transform: rotate(45deg) scaleY(0);
    animation: stemGrow 0.4s ease 0.5s forwards;
}

.checkmark-kick {
    width: 4px;
    height: 12px;
    background: #28a745;
    position: absolute;
    left: 28px;
    top: 38px;
    transform: rotate(-45deg) scaleY(0);
    animation: kickGrow 0.4s ease 0.9s forwards;
}

@keyframes circleFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes stemGrow {
    from {
        transform: rotate(45deg) scaleY(0);
    }

    to {
        transform: rotate(45deg) scaleY(1);
    }
}

@keyframes kickGrow {
    from {
        transform: rotate(-45deg) scaleY(0);
    }

    to {
        transform: rotate(-45deg) scaleY(1);
    }
}

/* Prevent background scroll */
body.modal-open {
    overflow: hidden;
}

/* Target the modal content */
.modal-content {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
}

    /* For WebKit browsers */
    .modal-content::-webkit-scrollbar {
        width: 8px; /* Slim scrollbar */
    }

    .modal-content::-webkit-scrollbar-track {
        background: #f1f1f1; /* Light track */
        border-radius: 4px;
    }

    .modal-content::-webkit-scrollbar-thumb {
        background-color: #888; /* Gray thumb */
        border-radius: 4px;
        border: 2px solid #f1f1f1; /* Adds spacing effect */
    }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background-color: #555; /* Darker on hover */
        }

.display-none {
    display: none;
}

/*Validation*/
input, textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    /* Valid state (only after validation triggered) */
    .was-validated input:valid,
    .was-validated textarea:valid,
    input.touched:valid,
    textarea.touched:valid {
        border-color: #28a745;
        box-shadow: 0 0 6px rgba(40, 167, 69, 0.3);
    }

    /* Invalid state (only after validation triggered) */
    .was-validated input:invalid,
    .was-validated textarea:invalid,
    input.touched:invalid,
    textarea.touched:invalid {
        border-color: #dc3545;
        box-shadow: 0 0 6px rgba(220, 53, 69, 0.3);
    }

/* Error message hidden by default */
.error-msg {
    display: none;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Show error only when validation triggered */
.was-validated input:invalid + .error-msg,
.was-validated textarea:invalid + .error-msg,
input.touched:invalid + .error-msg,
textarea.touched:invalid + .error-msg {
    display: block;
}


/* Default state */
.bounce-text span {
    opacity: 0;
    transform: translateY(20px);
}

/* Animate only when in view */
.bounce-text.animate span {
    animation: bounceIn 0.6s ease forwards;
}
/* Parallax background */
.parallax-bg {
    background-image: url('/media/image/home-banner.jpg'); /* replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Optional overlay for readability */
.parallax-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3); /* subtle dark overlay */
}

/* Bounce text animation */
.bounce-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: bounceIn 0.6s ease forwards;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(20px); }
  50% { opacity: 1; transform: translateY(-10px); }
  70% { transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Sequential delays */
.bounce-text span:nth-child(1) { animation-delay: 0s; }
.bounce-text span:nth-child(2) { animation-delay: 0.3s; }
.bounce-text span:nth-child(3) { animation-delay: 0.6s; }
.bounce-text span:nth-child(4) { animation-delay: 0.9s; }
.bounce-text span:nth-child(5) { animation-delay: 1.2s; }
.bounce-text span:nth-child(6) { animation-delay: 1.5s; }
.bounce-text span:nth-child(7) { animation-delay: 1.8s; }
.gt-current-lang {
    display: flex;
    align-items: center; /* vertically centers them */
    gap: 6px; /* adds spacing between items */
}

    .gt-current-lang img {
        height: 20px; /* keep flag size consistent */
    }
