/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* Adjust based on actual header height */
}

/* Header */
.header {
  background-color: #004080;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;       /* 👈 Fixed to top */
  top: 0;                /* Stick to top */
  left: 0;
  width: 100%;
  z-index: 1000;         /* Stay above all content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold; 
  color: #ffffff; /* ya jo bhi header ka text color ho */
}

.logo-img {
  height: 80px; /* adjust as needed */
  margin-right: 10px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  user-select: none;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.login-button {
  background-color: #a02c08;
  color: #004080;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #8d1e1e;
}

/* Mobile Responsive Header */
@media screen and (max-width: 600px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #004080;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    margin: 10px 0;
    padding: 10px 20px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #004080, #0074d9);
  color: white;
  padding: 10px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 86px;
}

/* Intro Section */
.intro {
  padding: 40px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 80px;
  color: #004080;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  font-size: 50px;
  color: #555;         /* halka gray */
  text-align: center;
  margin-top: -35px;   /* heading se thoda close karne ke liye */
  letter-spacing: 0.5px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

/* Machines Section */
.machines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.machine {
  text-align: center;
  max-width: 500px;
}

.machine img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.machine p {
  margin-top: 10px;
  font-weight: bold;
}

/* service */
.service-heading {
  color: white;
  font-size: 34px;
  text-align: center;
  font-weight: bold;
  background-color: #004080;
  padding: .5px;
  margin-bottom: 30px;
}


/* Footer */
.footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}

.section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 40px auto;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}

.section.reverse-layout {
  flex-direction: row-reverse;
  background-color: #f5f5f5; /* Light gray */
  transition: background-color 0.3s ease;
}

.section.reverse-layout:hover {
  background-color: #e0e0e0; /* Darker gray on hover */
}


.section-image {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-content {
  flex: 1;
  min-width: 250px;
}

.gray-bg {
  background-color: #f2f2f2;
}

.order-button {
  display: inline-block;
  background-color: #006680;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 5px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* 2 Login */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

 /* Professional login dropdown styles */
/* Dropdown Wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Button Look */
.login-button {
  background-color: #ffffff;
  color: #004080;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-button i {
  font-size: 18px;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: dropdownFade 0.3s ease;
  z-index: 999;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  color: #004080;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


@media screen and (max-width: 600px) {
  .section {
    flex-direction: column !important;
    text-align: center;
  }

  .section-image {
    width: 100%;
    height: auto;
  }

  .intro h2 {
    font-size: 42px;
  }

  .tagline {
    font-size: 28px;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .machine img {
    height: auto;
  }
}
