/* Import Google Fonts and Bootstrap */
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/bootstrap/3.3.7/css/bootstrap.min.css);

/* Global Styles */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(0, 0, 50, 0.8), rgba(0, 0, 50, 0.6)), url("../images/A.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 20px;
  text-align: left;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top:120px;


}


.important{
    display: flex;
    margin:auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-content {
 
  text-align: left;
  margin-left: 150px;
}

.main-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
  color: white;
    line-height: 65px;
}

.main-title-content {
  text-align: justify;
}

.main-title .highlight {
  color: #ffcc00;
  font-size: 3.2rem;
}

.highlight2 {
  color: #ffcc00;
  font-size: 20px;
  font-weight: 300;
}

/* Info Container */
.info-container {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 30px auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.description {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  flex: 2;
  padding-right: 30px;
  margin-left: 150px;
  max-width: 800px;
  text-align: justify;
}

/* Contact Box */
.contact-box {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  margin-right: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-text {
  font-size: 1rem;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Phone Box */
.phone-box {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(1, 1, 1, 0.15);
  transition: transform 0.3s ease-in-out;
  border-radius: 50px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.phone-box:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    text-align: start;
    height: 100%;
        line-height: normal;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
            margin-top: 120px;
  }
  .contact-box{
    margin: 0;
  }
  .hero-content {
    
    text-align: left;
    margin-left: 0px;
  }
  .main-title {
    text-align: left;
    font-size:14px;
  }

  .info-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 15px;
  }
  .highlight {
    color: #ffcc00;
   font-size: 31px;
    text-align: left;
  }
  
  .highlight2 {
    color: #ffcc00;

    font-weight: 300;
  }
  .description {
    font-size: 0.9rem;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .phone-box {
    font-size: 1rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 5px;
            margin-top: 120px;
  }

  .main-title {
    font-size: 1.2rem;
            line-height: normal;
  }
  .info-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 15px;
  }
  .description {
    font-size: 0.8rem;
  }
  .highlight {
    color: #ffcc00;

    text-align: left;
  }
  .phone-box {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}
