
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(95deg, var(--black-bg), var(--mixture-bg));
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.position-absolute{
    position: absolute;
}

/* Hero Section */
.hero {
   
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bg-picture{
    position: relative;
    z-index: -1;
}
.bg-picture img{
    width:100% ;
    height: 100%;
    opacity: 40%;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--hover-bg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.section-header {
    margin-top:-2rem ;
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--hover-bg);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--sky-blue);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Contact Information */
.contact-info {
    background-color: var(--mixture-bg);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--hover-bg);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--hover-bg);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-icon {
    background-color: var(--hover-bg);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text {
    color: var(--text-light);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--hover-bg);
}

.social-links {
    display: flex;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--black-bg);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--hover-bg);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--hover-bg);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--sky-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--hover-bg);
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 18, 30, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--hover-bg);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #8a0f18;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 18, 30, 0.3);
}

.submit-btn i {
    margin-left: 8px;
}

/* Map Section */
.map-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background-color: var(--mixture-bg);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 450px;
    background-color: var(--navbar-bg);
}
.map-container h1{
    text-align: center;
    color: var(--text-light);
}
.map-container iframe {
    padding: 2rem .3rem;
    width: 100%;
    height: 100%;
    border: none;
}
/* Footer */
/* 
/* Responsive Design */
@media (max-width: 768px) {
  .bg-picture img{
    object-fit: cover;
    opacity: 40%;
}
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1.5rem;
    }

    nav ul li {
        margin: 0 0.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* 🌐 Responsive Tweaks for Contact Page & Footer */

@media (max-width: 992px) {
  .bg-picture img{
    object-fit: cover;
    opacity: 40%;
}
    .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-info, .contact-form {
      padding: 2rem;
    }
  
    .contact-form h3, .contact-info h3 {
      font-size: 1.5rem;
    }
  
    .form-group input,
    .form-group textarea {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .section-header p {
      font-size: 1rem;
    }
  
    
  
    .map-container {
      height: 300px;
    }
  
    .form-group input,
    .form-group textarea {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 0.9rem;
      padding: 0 1rem;
    }
  
    .contact-info,
    .contact-form {
      padding: 1.5rem;
    }
  
    .contact-form h3,
    .contact-info h3 {
      font-size: 1.3rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .footer-column {
      margin-bottom: 2rem;
    }
  
    .copyright {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .form-group input,
    .form-group textarea {
      font-size: 0.85rem;
      padding: 10px 12px;
    }
  
    .submit-btn {
      font-size: 1rem;
      padding: 12px 20px;
    }
  
    .map-container iframe {
      padding: 1rem;
    }
  }
  
  @media (max-width: 380px) {
    .hero{
      margin-top: -2rem;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p{
      font-size: 1.2rem;
    }
  
    .submit-btn {
      font-size: 0.9rem;
      padding: 10px 18px;
    }
  
    .contact-form h3,
    .contact-info h3 {
      font-size: 1.1rem;
    }
  
    .form-group label {
      font-size: 0.85rem;
    }
  
    .footer-column h4 {
      font-size: 1.1rem;
    }
  
    .map-container {
      height: 250px;
    }
  }
  