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

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

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 */
.contact-section {
    background-color: #000;
    color: #fff;
    padding: 0;
  }

 
  
  .contact-banner {
    position: relative;
    text-align: center;
  }
  
  .contact-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.5;
  }
  
  .contact-banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    margin: 0;
  }
  .cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #000;
    padding: 40px;
    gap: 20px;
  }

 
  
  .cta-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .cta-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .cta-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .phone-number {
    color: #FFD700;
    font-size: 3rem;
  }
  
  .social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    
  }
  
  .social-media img {
    height: 30px;
  }
  
  .cta-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .form-group input {
    padding: 25px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #e9ecf1;
  }
  
  .cta-button {
    grid-column: span 2;
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6c200;
  }
  
  @media (max-width: 768px) {
    .cta-section {
      grid-template-columns: 1fr;
    }
  
    form {
      grid-template-columns: 1fr;
    }
  
    .cta-button {
      grid-column: 1;
    }
  }
  
  