:root {
    --primary: #ff8801;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* 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;
}




/* Banner */
.banner {
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 700px;
  display: block;
}

/* Merchant Info */
.merchant-info {
  text-align: center;
  padding: 60px 20px;
}

.subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.line {
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 15px auto 40px;
}

/* Info Boxes */
.info-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.info-box {
  flex: 1 1 300px;
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box i {
  font-size: 36px;
  color: #007bff;
  margin-bottom: 15px;
}

.info-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.info-box p {
  font-size: 15px;
  color: #555;
}
/* ===== FOOTER ===== */
body {
        margin: 0;
    }

    .footer {
        color: white;
        margin-top: 20px;
    }
    .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 p {
        width: 80%;
        line-height: 20px;
        font-weight: bold;
    }
    .footer-content-about h2,.footer-content-requestQuote-text h2,.footer-content-ourServices h2{
  color: orange;
}
    .footer-content-ourServices ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 10px;
        cursor: pointer;
    }
    .footer-content-ourServices ul li a{
    text-decoration: none;
    color: white;
}
    .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;
}



/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .info-container {
    flex-direction: column;
    gap: 20px;
  }

  
}
/* Common Line Style */
.line {
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 15px auto 40px;
}

/* Features Section */
.features-section {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.features-container h3 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.features-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.features-text {
  flex: 1 1 450px;
  text-align: left;
}

.features-text ul {
  list-style: decimal;
  padding-left: 20px;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.features-image {
  flex: 1 1 400px;
  text-align: center;
}

.features-image img {
  width: 100%;
  max-width: 350px;
  height: 300px;
  border-radius: 10px;
}

/* Cash Advance Section */
.cash-advance {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.advance-container {
  max-width: 1100px;
  margin: 0 auto;
}

.advance-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.advance-container h3 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.advance-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.advance-text {
  flex: 1 1 450px;
  text-align: left;
}

.advance-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.advance-image {
  flex: 1 1 400px;
  text-align: center;
}

.advance-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .features-content,
  .advance-content {
    flex-direction: column;
    text-align: center;
  }

  .features-text,
  .advance-text {
    text-align: center;
  }

  .features-text ul {
    list-style-position: inside;
    padding: 0;
  }

  .features-image img,
  .advance-image img {
    max-width: 280px;
    margin-top: 20px;
  }
}
/* Business Bank Account Section */
.bank-account {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.bank-container {
  max-width: 1100px;
  margin: 0 auto;
}

.bank-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.bank-container h3 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.bank-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.bank-text {
  flex: 1 1 450px;
  text-align: left;
}

.bank-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.bank-text ul {
  list-style: none;
  padding: 0;
}

.bank-text li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.bank-text i {
  color: #007BFF;
  margin-right: 8px;
}

.bank-image {
  flex: 1 1 400px;
  text-align: center;
}

.bank-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

/* Zempler Bank Section */
.zempler-bank {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.zempler-container {
  max-width: 1100px;
  margin: 0 auto;
}

.zempler-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.zempler-container h3 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.zempler-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.zempler-text {
  flex: 1 1 450px;
  text-align: left;
}

.zempler-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.zempler-text ul {
  list-style: none;
  padding: 0;
}

.zempler-text li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.zempler-text i {
  color: #007BFF;
  margin-right: 8px;
}

.btn-apply {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.btn-apply:hover {
  background: #0056b3;
}

.zempler-image {
  flex: 1 1 400px;
  text-align: center;
}

.zempler-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .bank-content,
  .zempler-content {
    flex-direction: column;
    text-align: center;
  }

  .bank-text,
  .zempler-text {
    text-align: center;
  }

  .bank-image img,
  .zempler-image img {
    max-width: 280px;
    margin-top: 20px;
  }
}
/* bank-section */
.bank-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;  /* <-- Yeh section ko center karega */
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    font-size: 28px;
    color: #000;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.links {
    list-style: none;
    margin-bottom: 20px;
}

.links li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #000;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #007bff;
    text-decoration: none;
    border-radius: 4px;
    color: #007bff;
    font-size: 14px;
}

.image-content img {
    max-width: 380px;
}

/* ===== 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;
    }
}