:root {
    --primary: #ff8801;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #111;
}

/* 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;
}




/* Header Section */
.about-header {
    background: url('../about.JPG') no-repeat center center/cover;
    text-align: center;
    padding: 80px 20px;
}

.about-header h1 {
    font-size: 50px;
    color: rgb(10, 241, 22);
    font-weight: bold;
    text-shadow: 2px 2px 15px 1px #000;
}

/* Main Container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 1200px;
    margin: 60px auto;
    gap: 40px;
}

/* Left Section */
.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 28px;
    color: #001f4d;
    margin-bottom: 20px;
}

.about-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.visit-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .about-left, .about-right {
        max-width: 90%;
    }

    .about-left h2 {
        margin-top: 30px;
    }

    .visit-btn {
        margin-top: 10px;
    }

/* WHY CHOOSE US SECTION */
.choose-section {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.choose-header h4 {
    color: #007bff;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.choose-header h2 {
    font-size: 32px;
    color: #001f4d;
    margin-bottom: 50px;
    font-weight: bold;
}

.choose-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

.choose-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 30%;
    min-width: 260px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.choose-box i {
    font-size: 40px;
    margin-bottom: 15px;
}

.choose-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.choose-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .choose-container {
        flex-direction: column;
        align-items: center;
    }

    .choose-box {
        width: 80%;
    }
}
/* ===== 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 h2{
        margin-bottom: 5px;
    }
    .footer-content-about h2,.footer-content-requestQuote-text h2,.footer-content-ourServices h2{
  color: orange;
}
    .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 h2{
         margin-bottom: 8px;
    }
    .footer-content-ourServices ul li a{
    text-decoration: none;
    color: white;
}
.footer-content-requestQuote-text h2{
     margin-bottom: 5px;
}
.footer-content-requestQuote-text p{
    margin-top: 10px;
}
    
    .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 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;
    }
}