/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-family: "Lato", serif;
  padding-block-start: 0%;
}

body {
  line-height: 1.6;
  background-color: #F5F5F5;
  color: #333;
}

/* Header */
header {
  background-color: #ac1a1e;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 21rem;
  height: auto;
}

header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

/* Navigation Menu */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: unset;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    /* background-color: #0066CC; */
    padding: 20px 0;
  }

  nav a {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-active {
    display: flex;
  }
}

.hero-section {
  background-image: url(/assets/banner.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;  
}

.hero-content {
  color: #fff;
  margin: auto 0;
  line-height: 2rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.enquire {
  background: #ff8a209c !important;
    color: #fff !important;
    padding: 0.7rem 1rem;
    border-radius: 7px;
}

.get_start {
  background: #df5e20;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 7px;
  color: #fff;
}

.get_start:hover {
  background: #dfeaf5 !important;
  color: #0066cc !important;
}

.products img {
  width: 15rem;
  height: auto;
  clip-path: circle(40%);
}

.services-section {
  padding: 7rem 0;
  background-color: #F5EFE7;
}

.services-section h3,
.about-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.products {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.about-section {
  padding: 5rem 0;
}

.about-section img {
  width: 30rem;
  height: auto;
}

/* footer */
footer {
  background-color: #1b1b1b;
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #f39c12;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: #f39c12;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  width: 70%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #f39c12;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #e67e22;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #f39c12;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 7rem 0;
}

.contact-form {
  border: 2px solid #D8C4B6;
  padding: 1rem;
  border-radius: 1rem;
  background: #F5EFE7;
}

.contact-form h2,
.contact-map h2 {
  margin-bottom: 20px;
  color: #333;
  font-weight: 800;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form .btn {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #0056b3;
}

.contact-map iframe {
  border: 0;
  border-radius: 5px;
}