/* ---------------------------
   GLOBAL STYLES
----------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
}

.full-width-img {
    width: 100%;
    display: block;
}
/* ---------------------------
   HEADER (UPDATED TO WIX STYLE)
----------------------------*/
.top-nav {
    background: #ffffff;
    padding: 15px 60px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;        /* Large screens */
  width: auto;         /* keep aspect ratio */
  max-height: 100px;
  max-width: 100%;
  transition: height 0.3s ease;
}

/* Tablet */
@media (max-width: 768px) {
  .logo-img {
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }
}





/* Navbar links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav nav a {
    margin: 0 18px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    color:#2b1eda ;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 6px;
}

/* Hover color */
.top-nav nav a:hover {
    color: #0f56b3;
}

/* Underline effect */
.top-nav nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #8f3030;
    transition: width 0.3s ease;
}

.top-nav nav a:hover::after,
.top-nav nav a.active::after {
    width: 100%;
}

/* Account dropdown */
.account-dropdown {
    position: relative;
}

.account-name {
    color: #2b1eda;
    font-size: 16px;
    cursor: pointer;
}

.account-menu {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    background: #0e1a52;
    min-width: 160px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: none;
}

.account-menu a {
    display: block;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.account-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.account-dropdown:hover .account-menu {
    display: block;
}

/* Contact button */
.nav-btn {
    padding: 8px 22px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    color: #2513ce;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-btn:hover {
    background: #ffffff;
    color: #0e1a52;
}

/* ---------------------------
   RESPONSIVE STYLES
----------------------------*/

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0e1a52;
}

/* Show/hide buttons */
.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .top-nav {
        padding: 15px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Header spacing */
    .top-nav {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;   /* 🔥 FIX */
        gap: 12px;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        order: 0;              /* 🔥 reset order */
        font-size: 26px;
        margin: 0;
    }

    /* Hide desktop contact */
    .desktop-only {
        display: none;
    }

    /* Mobile contact button */
    .mobile-only {
        display: block;
        margin: 15px 30px 0;
        text-align: left;     /* 🔥 LEFT */
    }

    /* Mobile menu */
    .main-nav {
        position: absolute;
        top: 56%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        display: none;
        padding: 20px 0;
        align-items: flex-start;   /* 🔥 LEFT */
        text-align: left;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 30px;
        margin: 0;
        text-align: left;          /* 🔥 LEFT */
    }

    /* Remove underline on mobile */
    .top-nav nav a::after {
        display: none;
    }

    /* Account dropdown mobile */
    .account-dropdown {
        width: 100%;
        padding-left: 30px;
    }

    .account-menu {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .account-menu a {
        padding-left: 30px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }
}


/* ------------------------------
   HERO SECTION - PERFECT WIX COPY
-------------------------------*/

.hero {
    padding: 0px 0 0px;
    display: flex;
    justify-content: center;
    background: #f5f7fb;
}

/* 🔥 Bigger banner */
.hero-box {
    width: 100%;
    max-width: 2400px;
    height: 700px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* Slider images */
.hero-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

/* Overlay */
.hero-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* =========================
   HERO CONTENT + ANIMATION
========================= */

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 20px 0 80px;
    color: #ffffff;
    max-width: 650px;

    /* animation base */
    opacity: 0;
    transform: translateX(-40px);
    animation: heroContentIn 1s ease-out forwards;
}

/* Subtitle */
.hero-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffb347;

    opacity: 0;
    transform: translateY(15px);
    animation: heroTextUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

/* Main Title */
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(20px);
    animation: heroTextUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

/* Tagline */
.hero-content p {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0;

    transform: translateY(20px);
    animation: heroTextUp 0.6s ease forwards;
    animation-delay: 0.7s;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a00, #ff9f45);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);

    opacity: 0;
    transform: translateY(20px);
    animation: heroBtnIn 0.6s ease forwards;
    animation-delay: 0.9s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes heroContentIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroTextUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBtnIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-box {
        height: 420px;
    }

    .hero-content {
        padding-left: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h2 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-box {
        height: 360px;
    }

    .hero-content {
        padding-left: 30px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-box {
        height: 300px;
    }

    .hero-content {
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content h2 {
        font-size: 16px;
    }
}


/* =========================
   SERVICES SECTION (FINAL)
========================= */

.services {
    position: relative;
    padding: 120px 20px 90px;
    background: url("../images/s-bg.png") center / cover no-repeat;
    overflow: hidden;
}

/* Overlay for readability */
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(252, 252, 252, 0.45);
    z-index: 1;
}

/* Keep content above overlay */
.services > * {
    position: relative;
    z-index: 2;
}

/* =========================
   SERVICES HEADER
========================= */

.services-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    color: #b34646;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.services-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    margin: 14px auto 0;
    border-radius: 2px;
}

.services-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #000103;
    margin-top: 22px;
}

/* =========================
   SLIDER WRAPPER
========================= */

.services-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slider */
.services-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 6px 30px;
}

/* Hide scrollbar */
.services-slider::-webkit-scrollbar {
    display: none;
}
.services-slider {
    scrollbar-width: none;
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
    min-width: 260px;
    flex-shrink: 0;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

/* Text */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0e1a52;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Learn More */
.service-card a {
    font-size: 14px;
    font-weight: 600;
    color: #ff7a00;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

/* =========================
   SLIDER BUTTONS
========================= */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0e1a52;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    opacity: 0.9;
}

.slider-btn.left {
    left: -20px;
}

.slider-btn.right {
    right: -20px;
}

.slider-btn:hover {
    background: #ff7a00;
}

/* =========================
   CTA BUTTON
========================= */

.services-cta {
    margin-top: 60px;
    text-align: center;
}

.service-btn {
    display: inline-block;
    background: #ff7a00;
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
    background: #e86d00;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .services {
        padding: 90px 16px 70px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 15px;
    }

    /* Swipe only on mobile */
    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 26px;
    }

    .service-icon {
        font-size: 34px;
    }
}

/* =========================
   CLICK FIX
========================= */

.hero-box::after {
    pointer-events: none;
}






/* ---------------------------------------------------
   OUR SERVICES SECTION (MATCHED TO YOUR HTML) MAIN PAGE
--------------------------------------------------- */

/* =====================================
   SERVICES HERO SECTION
===================================== */

.services-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.services-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 26, 82, 0.65);
    z-index: 1;
}

/* Text Content */
.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.services-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
}

.services-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

/* =====================================
   SAFE SCROLL ANIMATION
===================================== */

/* Default = visible (fail-safe) */
.js .services-hero-content h1,
.js .services-hero-content p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When section is visible */
.js .services-hero.show .services-hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.js .services-hero.show .services-hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {
    .services-hero {
        height: 260px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 220px;
    }

    .services-hero-content h1 {
        font-size: 26px;
    }
}


/* ===============================
   SERVICES GRID – CLEAN FINTECH
================================ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 30px 80px;
}

/* ===============================
   SERVICE CARD – BANK STYLE
================================ */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid #eef1f6;
    overflow: hidden;
    text-align: center;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.14);
}

/* ===============================
   IMAGE
================================ */

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eef1f6;
}

/* ===============================
   TITLE
================================ */

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0e1a52;
    margin: 18px 0 14px;
    padding: 0 16px;
}

/* ===============================
   ACTION BUTTONS
================================ */

.service-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 22px;
}

.service-action {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.8px solid transparent;
}

.service-action.whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.service-action.whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

.service-action.call {
    color: #1e90ff;
    border-color: #1e90ff;
}

.service-action.call:hover {
    background: #1e90ff;
    color: #ffffff;
}

/* ===============================
   SAFE SCROLL ANIMATION
================================ */

/* Default: visible (fail-safe) */
.js .service-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* When revealed */
.js .service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Natural stagger using nth-child */
.js .service-card:nth-child(1) { transition-delay: .1s; }
.js .service-card:nth-child(2) { transition-delay: .2s; }
.js .service-card:nth-child(3) { transition-delay: .3s; }
.js .service-card:nth-child(4) { transition-delay: .15s; }
.js .service-card:nth-child(5) { transition-delay: .25s; }
.js .service-card:nth-child(6) { transition-delay: .35s; }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .service-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .service-grid {
        padding: 10px 18px 60px;
    }

    .service-card img {
        height: 165px;
    }
}


/* =============================
   HOW IT WORKS (RESPONSIVE)
============================= */

.how-it-works {
    display: flex;
    align-items: stretch;
    background: #1f3c36;
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

/* LEFT CONTENT */
.how-left {
    width: 60%;
    padding: 0 80px;
}

.how-left h2 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* STEPS GRID */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step-box {
    max-width: 280px;
}

/* ICON */
.icon-line {
    position: relative;
    margin-bottom: 15px;
    padding-left: 35px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.step-icon {
    font-size: 26px;
    margin-left: 10px;
}

.step-box h3 {
    font-size: 18px;
    margin: 10px 0;
}

.step-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* RIGHT IMAGE */
.how-right {
    width: 40%;
}

.how-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================
   SAFE SCROLL ANIMATION
============================= */

.js .animate {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .animate.show {
    opacity: 1;
    transform: translateY(0);
}

.js .animate-left {
    transform: translateX(-45px);
}

.js .animate-right {
    transform: translateX(45px);
}

/* Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .how-it-works { flex-direction: column; }
    .how-left, .how-right { width: 100%; }
    .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .steps { grid-template-columns: 1fr; }
}

/* ---------------------------
   WHY CHOOSE US
----------------------------*/

.choose-us {
    padding: 80px 60px;
    text-align: center;
    background: #ffffff;
}

.choose-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* GRID */
.choose-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.choose-card {
    padding: 28px 20px;
    border: 2px solid #111;
    border-radius: 6px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.choose-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Hover polish */
.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* =============================
   SCROLL ANIMATION (SAFE)
============================= */

.js .animate {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.js .animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .choose-us {
        padding: 60px 20px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------
   PAGE HEADERS
----------------------------*/
.page-header {
    padding: 70px 60px;
    background: #163b32;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
}

/* ---------------------------
   PAGE CONTENT TEXT
----------------------------*/
.page-content {
    padding: 60px;
    font-size: 18px;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    margin: 25px 0;
}

.service-list {
    margin-top: 20px;
    line-height: 2;
}

/* ---------------------------
   CONTACT FORM
----------------------------*/
.contact-form {
    padding: 60px;
}

.contact-form form {
    max-width: 600px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #163b32;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #0f2c25;
}


/* ---------------------------
   ABOUT SECTION (Wix style)
----------------------------*/

.about-section {
    background: #1f3b36;   /* dark green */
    color: white;
    padding: 100px 40px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.about-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-subtitle {
    max-width: 700px;
    margin: 0 auto 80px auto;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0.9;
}

/* GRID 2x2 like Wix */
.about-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.about-box {
    text-align: left;
}

.about-box hr {
    width: 80px;
    border: 1px solid white;
    opacity: 0.6;
    margin-bottom: 15px;
}

.about-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* =========================
   ABOUT SECTION ANIMATION
   (Wix / Premium Style)
========================= */

/* Safe animation base */
.js .about-title,
.js .about-subtitle,
.js .about-box {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Show state */
.js .about-title.show,
.js .about-subtitle.show,
.js .about-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger timing */
.js .about-title {
    transition-delay: 0.15s;
}

.js .about-subtitle {
    transition-delay: 0.35s;
}

.js .about-box:nth-child(1) { transition-delay: 0.2s; }
.js .about-box:nth-child(2) { transition-delay: 0.35s; }
.js .about-box:nth-child(3) { transition-delay: 0.5s; }
.js .about-box:nth-child(4) { transition-delay: 0.65s; }


/* RESPONSIVE FIX */
@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}



/* ---------------------------
   FOOTER SECTION
----------------------------*/

.footer {
    background: #e5e5e5;
    padding: 60px 40px;
    color: #111;
    font-family: Arial, sans-serif;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-box p {
    line-height: 1.6;
    font-size: 14px;
    color: #333;
}

.footer-box a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.footer-box a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    font-size: 14px;
    color: #333;
}

/* Responsive Footer Layout */
@media (max-width: 900px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Bottom green bar for footer */
.green-bar {
    background: #163b32;        /* Dark green (Wix style) */
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
}



/* ---------------------------
   RESPONSIVE DESIGN
----------------------------*/
@media(max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 80%;
        margin-bottom: 25px;
        text-align: center;
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    nav a {
        margin: 10px;
    }
}

@media(max-width: 600px) {
    .choose-grid, .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 16px;
    }
}


/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    padding: 40px 20px;
    height: auto;
  }

  .hero-inner {
    flex-direction: column;   /* 🔑 stack vertically */
    text-align: center;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-image img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* BUSINESS HERO / BANNER */
  .business-hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .business-hero img {
    max-width: 100%;
    height: auto;
  }

}

