: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;
  --form-bg: #111218; /* dark form background */
  --cta: #0b74ff;
}

.orange {
  color: orange;
}

@keyframes y-animation {
  to {
    transform: translateY(6cqh);
  }
}





/* ===== BASE ===== */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--dark);
}

/* ===== HEADER ===== */
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;
}
.logo img{
  background-color: white;
}

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;
    }
}




/* ===== HERO ===== */
.hero {
  height: 480px;
  width: 100%;
  background-image: url("https://img.freepik.com/premium-photo/card-machine-with-credit-card-placed-pos-terminal-bank-card-inserted_695181-6.jpg");
  background-size: cover;
  background-position: upset;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.hero-left h1 {
  font-size: 37px;
  margin-bottom: 10px;
  margin-left: 20px;
  color: white;
  animation: y-animation 1s linear(0, -0.0001, 0.0002, 0.0005, 0.0008, 0.001, 0.001, 0.0009, 0.0005, -0.0002, -0.001, -0.0018, -0.0025, -0.0029, -0.0028, -0.002, -0.0005, 0.0016, 0.004, 0.0062, 0.0078, 0.0082, 0.0069, 0.0037, -0.0014, -0.0078, -0.0145, -0.0202, -0.0232, -0.022, -0.0156, -0.0038, 0.0127, 0.0317, 0.0497, 0.0625, 0.0656, 0.0552, 0.0293, -0.0114, -0.0625, -0.1162, -0.1613, -0.1853, -0.1761, -0.125, -0.03, 0.1019, 0.2536, 0.3976, 0.5, 0.6024, 0.7464, 0.8981, 1.03, 1.125, 1.1761, 1.1853, 1.1613, 1.1162, 1.0625, 1.0114, 0.9707, 0.9448, 0.9344, 0.9375, 0.9503, 0.9683, 0.9873, 1.0038, 1.0156, 1.022, 1.0232, 1.0202, 1.0145, 1.0078, 1.0014, 0.9963, 0.9931, 0.9918, 0.9922, 0.9938, 0.996, 0.9984, 1.0005, 1.002, 1.0028, 1.0029, 1.0025, 1.0018, 1.001, 1.0002, 0.9995, 0.9991, 0.999, 0.999, 0.9992, 0.9995, 0.9998, 1.0001, 1) reverse;
}

.bullets {
  padding: 0;
  margin: 20px 0;
  margin-left: 30px;
  color: white;
}

.bullets li {
  margin-bottom: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 40px;
}

.device-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===== CONTACT ===== */
.call-strip {
  max-width: var(--max-width);
  background: #fff;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
}

.call-strip form {
  display: flex;
  gap: 10px;
}

.call-strip input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 80%;
}

.call-strip button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
}

.title {
  font-weight: 700;
}

/* ===== FEATURES ===== */
.section-head {
  text-align: center;
  margin: 10px 0;

}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: auto;
  padding: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 15px var(--primary);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 400px;
  border: 2px solid var(--primary);
}


.illustration img {
  animation: y-animation 1s linear(0, 0.0126, 0.0252, 0.0378, 0.0505, 0.0631, 0.0757, 0.0883, 0.1009, 0.1135, 0.1262, 0.1388, 0.1473, 0.1554, 0.1634, 0.1714, 0.1795, 0.1875, 0.1956, 0.2036, 0.2117, 0.2197, 0.2277, 0.239, 0.2512, 0.2634, 0.2756, 0.2878, 0.3, 0.3122, 0.3244, 0.3366, 0.3488, 0.361, 0.3716, 0.3814, 0.3913, 0.4011, 0.4109, 0.4207, 0.4305, 0.4403, 0.4501, 0.4599, 0.4697, 0.4794, 0.4889, 0.4984, 0.5079, 0.5174, 0.5269, 0.5364, 0.5459, 0.5554, 0.5649, 0.5744, 0.5836, 0.5925, 0.6013, 0.6102, 0.6191, 0.6279, 0.6368, 0.6456, 0.6545, 0.6634, 0.6722, 0.6828, 0.6966, 0.7105, 0.7243, 0.7382, 0.752, 0.7659, 0.7797, 0.7936, 0.8074, 0.8213, 0.834, 0.8428, 0.8516, 0.8603, 0.8691, 0.8779, 0.8867, 0.8955, 0.9042, 0.913, 0.9218, 0.9303, 0.9366, 0.943, 0.9493, 0.9556, 0.962, 0.9683, 0.9746, 0.981, 0.9873, 0.9937, 1) reverse;
}

.card p {
  color: var(--muted);
}

.features-payment-types a {
  text-decoration: none;
  color: orange;
}

.features-payment-types div {
  margin-top: 50px;
  margin-left: 20px;
  border: 3px solid orange;
  width: 100px;
  padding: 5px;
  border-radius: 15px;
}

/* ===== POS SECTION ===== */
.pos-system {
  background: white;
  margin: 40px 0;
  padding: 40px 20px;
}

.pos-content {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.pos-text h2 {
  margin-top: 0;
}

.pos-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.pos-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  background: var(--bg);
  padding: 50px 20px;
  background: url(card2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(10px);

}

.why-container {
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}

.why-container h4 {
  color: black;
  font-weight: 900;
}
.why-container h2 {
  color: black;
  font-weight: 900;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin-top: 0;
}

.why-card p {
  color: var(--muted);
}

/* ===== FEEDBACK ===== */
.feedback {
  background: white;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feedback-headings {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.feedback-headings h1 {
  margin: 0;
}

.feedback-container {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feedback-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.feedback-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: invert(20%) sepia(90%) saturate(250%) hue-rotate(190deg);
}

.feedback-card p {
  font-style: italic;
  color: var(--dark);
}

.feedback-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Get-In-Touch section */

.get-card {
  height: 331.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #6b7a8a;
  background: url(card.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(10px);
}
.get-card h4,h1{
  color: black;
  font-weight: 900;
}

/* get-office-location */

/* ===== FOOTER ===== */
body {
  margin: 0;
}

.footer {
  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 p {
  width: 80%;
  line-height: 20px;
  font-weight: bold;
}

.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-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:900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
  
  .pos-content {
    flex-direction: column;
  }

  .call-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-strip form {
    flex-direction: column;
    width: 100%;
  }

  .call-strip input {
    width: 100%;
  }
}
.form-get{
  margin-top: 15px;
  margin-bottom: 20px;
}
.right-col{display:flex;align-items:flex-start;justify-content:center;}
.form-wrap{
  width:100%;
  max-width:420px;
  background:var(--form-bg);
  color:#fff;
  padding:18px;
  border-radius:6px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.45);
}
.form-title{
  margin:0 0 14px 0;
  color:#7bd3ff;
  font-size:15px;
  font-weight:700;
}

/* Form fields */
form{display:flex;flex-direction:column;gap:10px}
input[type="text"], input[type="email"], input[type="tel"], select, textarea{
  width:100%;
  padding:9px 5px;
  border-radius:4px;
  border: none;
  outline: none;
  font-size:14px;
  background:#f3f4f6;
  color:#111;
}
select{appearance:none; background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right:34px;}
textarea{resize:vertical; min-height:100px;}

/* Because the form background is dark, we override field styles with dark mode look on small devices if desired */
.form-wrap input[type="text"], .form-wrap input[type="email"], .form-wrap input[type="tel"], .form-wrap select, .form-wrap textarea {
  /* keep light input fields for contrast to dark background */
}

/* Captcha placeholder */
.captcha{display:flex;align-items:center;gap:8px;background:#fff;padding:8px;border-radius:4px;color:#111;font-size:13px}
.captcha input{width:auto}

/* Submit */
.btn-submit{
  background:var(--cta);
  color:#fff;
  border:none;
  padding:11px 14px;
  border-radius:4px;
  cursor:pointer;
  font-weight:700;
  letter-spacing:0.6px;
  margin-top:6px;
}
.btn-submit:hover{filter:brightness(0.95)}

/* Small screens responsiveness */
@media (max-width:1024px){
  .quote-section { grid-template-columns: 1fr 360px; gap:20px; }
  .map-wrap iframe{height:300px}
}

@media (max-width:820px){
  .quote-section{
    grid-template-columns: 1fr;
    padding:0;
  }
  .left-col{order:1;align-items:center;text-align:center;padding:0}
  .contact-info{max-width:700px}
  .map-wrap{width:100%}
  .right-col{order:2;justify-content:center}
  .form-wrap{max-width:520px;width:92%}
}

@media (max-width:420px){
  .heading-blue{font-size:20px}
  .form-title{font-size:14px}
  .map-decor{height:55px}
}

