/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald';
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 20px;
}

header .logo {
  color: #fff;
  padding-left: 20px;
}
header nav img{
  margin: 10px;
}
/* Desktop Navigation */
header nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

header nav ul li {
  margin-left: 80px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

header nav ul li a:hover {
  color: #e6c200;
}

/* Burger icon (hidden on desktop) */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Mobile View */
@media (max-width: 1200px) {
  /* Hide desktop menu */
  nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: -100%;
      background-color: #333;
      transition: transform 0.5s ease-in-out;
      z-index: 99;
  }

  /* Burger icon display */
  .burger {
      display: block;
  }

  /* When the menu is active */
  nav.active ul {
      display: flex;
      left: 0;
      transform: translateX(0);
  }

  nav ul li {
      margin: 20px 60px;
      text-align: center;
  }

  nav ul li a {
      font-size: 1.5rem;
  }

  /* Burger menu animation */
  .toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
      opacity: 0;
  }

  .toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* About Section */
.blog-section {
    background-color: #000;
    color: #fff;
    padding: 0;
  }
  
  .blog-banner {
    position: relative;
    text-align: center;
  }
  
  .blog-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.8;
  }
  
  .blog-banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    margin: 0;
  }



  /* Wrapper to make iframe responsive */
.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Aspect ratio 1:1 for square */
  margin: 0 auto;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .responsive-iframe-container {
    padding-top: 100%; /* Make the iframe taller on mobile */
  }

  .iframe-wrapper {
    display: block;
    margin-top: 20px; /* Add space between elements on mobile */
  }
}
  



  
/* Contact Section */
.contact-section {
  padding: 50px;
  background-color: #333; /* Dark background */
  color: #fff;
}

/* Container for contact information and form */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsive layout */
  margin: 0 100px;
}

/* Contact Info Styles */
.contact-info {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}

.contact-info h2 {
  font-size: 4em;
  margin-bottom: 20px;
  
}

.contact-info h3 {
  font-size: 1.8em;
  margin-bottom: 15px;

}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;

}

.contact-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;

}

.phone-number {
  font-size: 2em;
  color: #ffd700; /* Yellow color */
  margin-bottom: 20px;

}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center; /* Center icons */
}

.social-icons a {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
}

/* Contact Form Styles */
.contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Layout */
.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Form Group Styles */
.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

/* Input Styles */
.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #333;
}

/* Placeholder Text */
.form-group input::placeholder {
  color: #999;
}

/* Button Styles */
.btn-yellow {
  background-color: #ffd700; /* Yellow background */
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e6c200;
}

/* Responsive Media Queries */

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  .contact-container {
      flex-direction: column; /* Stack items vertically on mobile */
      margin: 0 20px; /* Reduce margin for mobile view */
  }

  .contact-info {
      max-width: 100%; /* Full width on mobile */
      padding-right: 0; /* Remove right padding */
      padding-left: 0; /* Remove left padding */
  }

  .contact-form {
    padding: 50px;
    max-width: 100%;
  }
  .contact-info h2 {
      text-align: center; /* Center text */
      font-size: 2.5em; /* Adjust title size for mobile */
  }

  .contact-info h3 {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust heading size for mobile */
  }

  .contact-info h4 {
    text-align: center; /* Center text */
      font-size: 1.3em; /* Adjust heading size for mobile */
  }

  .phone-number {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust phone number size for mobile */
  }

  .contact-form {
      padding: 20px; /* Reduce padding for mobile */
  }

  .btn-yellow {
      font-size: 1em; /* Adjust button size */
      padding: 10px 20px; /* Adjust button padding */
  }
}

/* Tablets (600px to 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .contact-container {
      flex-direction: column; /* Stack items on tablets */
      margin: 0 40px; /* Slightly larger margin for tablets */
  }

  .contact-info,
  .contact-form {
      max-width: 100%; /* Full width on tablets */
  }

  .contact-info h2 {
      font-size: 3em; /* Adjust title size for tablets */
  }
}
