/*reset css*/
* {
      margin: 0; padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }

    body {
      line-height: 1.6;
      color: #333;
    }

        .section {
      padding: 60px 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section h2 {
      margin-bottom: 20px;
      color: #1a1a1a;
    }
/*navbar*/
    header {
      background: #6e0404;
      color: #fff;
      
        display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
    }
.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    nav{
        color: #fff;
      background: #960f0f;
      text-align: center;
      padding: 10px 0;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }
    .navbar img{
width: 150px;
padding:0 0 0 20px
    }
/*navbar*/

/*hero*/
.hero {
  background: url('https://images.unsplash.com/photo-1630288214032-2c4cc2c080ca?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mzh8fGNvbnRyYWN0b3J8ZW58MHx8MHx8fDA%3D') no-repeat center center/cover;
  background-attachment: fixed;
  height: 70vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* the actual overlay */
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
      font-size: 3rem;
      padding: 10px;
  
    }
.hero p {
      font-size: 1.5rem;
      margin: 10px 0;
    }

.hero button{
      padding: 10px 20px;
      background: #960f0f;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      border-radius: 5px;
      z-index: 2;
    }

    .hero button:hover {
      background: #6e0404;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
}
/*hero*/

/*about*/

    .about-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: center;
    }
    .about-column{
      flex: 1;
      padding: 20px;
      text-align: left;
    }

    .about-column img{
      width: 100%;
      height: 50%;
    }
     .about-column p{
      line-height: 1.8;
      padding:10px 0
     }
     .about-column h3{
      margin-bottom: 10px;
      color: #333;
      font-size: 1.8em;
      text-transform: uppercase;
     }

     .about-column ul li{
 list-style: none;
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
     }
 /*about*/   
  /*services*/  
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #666;
}
.services-section h2{
      margin-bottom: 10px;
      color: #333;
      font-size: 1.8em;
      text-transform: uppercase;
      text-align: center;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;

}

.service-card {
  background: #f3f3f3;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
}
.service-card h3{
  text-align: center;
  margin-bottom: 10px;
  color: #960f0f;
  font-size: 1.1em;
  text-transform: uppercase;
}
 /*services*/  
  /*hero2*/  
  .cta-hero {
  background: url('https://images.unsplash.com/photo-1580901368855-059c4792ff22?q=80&w=1372&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  height: 50vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
 margin: 50px 0;
}
.cta-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* the actual overlay */
  z-index: 0;
}

.cta-hero > * {
  position: relative;
  z-index: 1;
}
.cta-overlay {
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}

.cta-overlay h2 {
  font-size: 2.5rem;
}
.cta-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #960f0f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #751010;
}

   /*hero2*/  
/*contact*/

.contact-section {
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-column {
  min-height: 300px;
}

.form-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;

}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 4px;
  border:none;
  font-size: 1rem;
  width: 100%;
  border-bottom: 1px solid #960f0f;
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 1; /* Make it fully visible */
}

.cta-button {
  padding: 12px 20px;
  background: #960f0f;
  border:none
}
.contact-details{

  font-size: 1rem;
  color: #333;
}

.form-column h2{
        margin-bottom: 10px;
      color: #333;
      font-size: 1.8em;
      text-transform: uppercase;
}
/*contact*/
/*footer*/
    footer {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }

/*footer*/
/*animations*/
    button, .cta-button, a {
  transition: all 0.3s ease;
}

button:hover, .cta-button:hover, a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


#loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007BFF; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
/*animations*/
/*mobile responsive*/
/* Responsive Styles */
@media (max-width: 768px) {
  /* Stack about content columns vertically */
  .about-content {
    flex-direction: column;
  }

  .contact-grid {
    display: block;
  }
.navbar-links{
  font-size: 0.6rem;
}
.header-contact{
  font-size: 0.6rem;
}
  .form-column,
  .map-column {
    width: 100%;
    margin-bottom: 30px;
  }
.map-column{
  height: 350px;
}
.contact-section{
  margin: 0 20px;
}
  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 1rem;
  }


  /* Reduce padding and font sizes for mobile */
  .section {
    padding: 40px 15px;
  }

  .cta-overlay h2 {
    font-size: 1.8rem;
  }

  .cta-overlay p {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero button {
    font-size: 1rem;
  }

  footer {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-overlay h2 {
    font-size: 1.5rem;
  }

  .cta-overlay p {
    font-size: 1rem;
  }

  .section {
    padding: 40px 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}

/*mobile responsive*/