* {
    margin: 0;
    padding: 0;
}

:root {
    --primary: rgb(255, 102, 0);
    --accent: #22c1a6;
    --dark: #0a2540;
    --muted: #6b7a8a;
    --bg: #f7fbff;
    --card: #ffffff;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --max-width: 1100px;
}

/* nav */

header {
  background: white;
  box-shadow: var(--shadow);
  top: 0;
  z-index: 10;
}

.machine {
  border-radius: 60px;
}

/* ===== TOP BAR ===== */
/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: skyblue;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 12px;
}

.top-left a img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.top-left a:hover img {
  transform: scale(1.2);
}

.top-right span {
  font-weight: 600;
  color: black;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  color: #fff;
  padding: 5px;
  font-weight: 800;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
}

.quote-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.7s ease-in;
}

.quote-btn:hover {
  border: 1px solid var(--primary);
  background-color: #fff;
  color: var(--primary);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 15px;
        font-size: 12px;
    }

    .top-left a img {
        width: 16px;
        height: 16px;
    }

    .nav {
        padding: 0 15px;
    }

    .logo img.machine {
        height: 70px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .quote-btn {
        display: none;
    }

    .mobile-quote-btn {
        display: block;
        background-color: #3498db;
        color: white;
        padding: 15px 20px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        margin: 20px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        padding: 8px 10px;
    }

    .nav {
        padding: 0 10px;
    }

    .logo img.machine {
        height: 60px;
    }
}


/* utility classes */
.orange {
    color: orange;
}

.bold {
    font-weight: 900;
}

/* ===== BASE ===== */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--dark);
}


/* online-payment-get-a-qoute */
.online-payment-get-a-qoute {
    height: 568px;
    background: url(https://secupay.com/wp-content/uploads/sites/4/2023/09/blogbeitrag-zahlung-ecommerce.jpg);
    background-repeat: no-repeat;
    background-size: cover;
 
}

/* card-transact-ecommerce-section */
.card-transact-ecommerce {
    width: 100%;
    background-color: var(--bg);
    display: flex;
}

/* card-transact-ecommerce-main */
.card-transact-ecommerce-main {
    width: 80vw;
    margin: auto;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

/* ecommerce-left */
.ecommerce-left {
    width: 50%;
    margin-top: 20px;
}
.ecommerce-right {
    width: 40%;
    margin-top: 20px;
}

.ecommerce-right img {
    height: 500px;
    border-radius: 50px;
    animation-name: myanimation;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.card-transact-ecommerce-intro {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.card-transact-ecommerce-intro span {
    font-size: 20px;
}

.card-transact-ecommerce-intro p {
    line-height: 30px;
}

/* card-transact-ecommerce-benefits */
.card-transact-ecommerce-benefits {}



.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px;
}

.card {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 6px 20px rgba(12, 40, 80, 0.06);
}

.feature {
    display: flex;
    gap: 24px;
    ;
    align-items: flex-start;
    padding: 18px 12px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.icon {
    min-width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(11, 102, 255, 0.12), rgba(11, 102, 255, 0.06));
    flex-shrink: 0;
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
}

.content p,
.content ul {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.content ul {
    margin-top: 6px;
    list-style: none;
    padding: 0;
    display: block;
}

.content li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.content li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    transform: translateY(-1px);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* apply-online */
.apply-online {
    width: 50px;
    height: 50px;
    padding: 8px;
    border: 2px solid var(--primary);
    border-radius: 7px;
    margin-left: 90px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
}

/* flex-card */
.flex-card {
    margin-top: 20px;
    padding: 20px;
    width: 80%;
    margin-left: 180px;
}

.flex-card-main {
    display: flex;
    justify-content: space-between;
    flex-direction: row;

}

.flex-card-main span {
    font-size: 20px;
    font-weight: 700;
}

.Next-day-settlement {
    height: 98.8px;
    width: 220px;
    border: 2px solid wheat;
    justify-content: center;
    align-items: center;
    display: flex;
    background: var(--panel);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 6px 20px var(--primary);
}

.No-Monthly-Rental {
    height: 98.8px;
    width: 220px;
    border: 2px solid wheat;
    justify-content: center;
    align-items: center;
    display: flex;
    background: var(--panel);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 6px 20px var(--primary);
}

.£-0-setup-fees {
    height: 98.8px;
    width: 220px;
    border: 2px solid wheat;
    justify-content: center;
    align-items: center;
    display: flex;
    background: var(--panel);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 6px 20px var(--primary);
}

.Mobile-Desktop {
    height: 98.8px;
    width: 220px;
    border: 2px solid wheat;
    justify-content: center;
    align-items: center;
    display: flex;
    background: var(--panel);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 6px 20px var(--primary);

}

/* Pay-method */
.Pay-method {
    width: 100%;
    background-color: var(--bg);
}

.Pay-method-main {
    width: 80vw;
    margin: auto;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.Pay-method-left {
    width: 50%;
    margin-top: 20px;
}

.Pay-method-intro {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.Pay-method-right img {
    width: 500px;
    height: 500px;
    border-radius: 50px;
    animation-name: myanimation2;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.Pay-method-intro span {
    font-size: 20px;
}

.Pay-method-intro p {
    line-height: 30px;
    font-size: 20px;
    font-weight: 900;
}

.Pay-method-left ul {
    margin-top: 15px;
    margin-left: 25px;
    list-style: none;

}

.Pay-method-left ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.25;
}

.Pay-method-left li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    transform: translateY(-1px);
}

/* elementor-widget-container */
.elementor-widget-container {
    margin-top: 100px;
    margin-left: 200px;
    border: 3px solid var(--primary);
    width: 770px;
}

/* SIMPLE-PAYMENT */
.SIMPLE-PAYMENT {
    width: 100%;
    background-color: var(--bg);
    margin-top: 30px;
}

.SIMPLE-PAYMENT-main {
    width: 80vw;
    margin: auto;
    display: flex;
    align-items: center;
}

.SIMPLE-PAYMENT-right img {
    height: 500px;
    width: 500px;
    margin-left: 30px;
    animation-name: myanimation;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.SIMPLE-PAYMENT-left {
    width: 50%;
    margin-top: 20px;
}

.SIMPLE-PAYMENT-intro {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.SIMPLE-PAYMENT-intro span {
    font-size: 20px;
}

.SIMPLE-PAYMENT-intro p {
    line-height: 30px;
    font-size: 18px;
    font-weight: 700;
}

.SIMPLE-PAYMENT-intro-paragraph {
    line-height: 1.5;
    font-size: 15px;
}

/* ===== FOOTER ===== */
body {
    margin: 0;
}

.footer {
    margin-top: 20px;
    color: white;
}

.footer-upper-section {
    height: 382px;
    padding: 45px 30px;
    background-color: #0F172A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.footer-content-about {
    width: 70%;
}
.footer-content-about h2{
    margin-bottom: 8px;
}

.footer-content-about p {
    width: 80%;
    line-height: 20px;
    font-weight: bold;
}
.footer-content-ourServices h2{
    margin-bottom: 8px;
}
.footer-content-ourServices ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 15px;
    cursor: pointer;
}
.footer-content-ourServices ul li a{
    text-decoration: none;
    color: white;
}
.footer-content-requestQuote-text h2{
    margin-bottom: 8px;
}
.footer-content-requestQuote-text p{
    margin-top: 8px;
}
.footer-lower-section {
    height: 80px;
    background-color: #0F172A;
    padding: 20px;
    display: flex;
}

.footer-lower-section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-divider {
    height: 1px;
    width: 90%;
    background-color: white;
    display: block;
}



@media (max-width: 640px) {
    body {
        margin: 14px;
    }

    .feature {
        gap: 12px;
        padding: 14px;
    }

    .icon {
        min-width: 40px;
        height: 40px;
    }

    .content h3 {
        font-size: 15px;
    }

    .content p,
    .content li {
        font-size: 13px;
    }
}

@keyframes myanimation {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes myanimation2 {
    from {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(0);
    }
}