body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  background-color: #0D1E62;
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  padding: 40px; /* Adds space around the content */
  margin-top: 80px;
}

.col1 {
  flex: 1;
}

.col1 p {
  font-weight: bold;
  font-size: 120px;
  line-height: 110px;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.col2 {
  width: 440px;
  height: 500px;
  background: no-repeat url(./res/ron-mcclenny-aNq1ixEKt3M-unsplash.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

.q1 h6{
    font-weight: bolder;
    font-size:30px;
    margin-top: 0;
}
a button{
    width: 150px;
    height: 55px;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
    color: white;
    background-color: black;
    border: 1px solid black;
    font-style: italic;
    border-radius: 5px;
    font-size: 20px;
}

button:hover{
    background-color: white;
    color: #0D1E62;
    transition-duration: 0.3s;
}

.service_t{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 60px 0;
    color: white;
    font-weight: bolder;
    font-size: 30px;
}

.service_t::before, .service_t::after{
    content: "";
    width: 100px;
    height:4px;
    background: white;
    margin: 0 5px;
    opacity: 0.5;
}

.service_t span{
    font-size: 24px;
    font-weight:6000;
    letter-spacing: 1px;
    position: relative;
}


.our_services{
  text-align: center;
  color: white;
  margin-top: 60px;
  list-style: none;
}

.services_list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.services_list li{
  font-size: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(225, 225, 225, 0.2);
  border-radius: 8px;
  background-color: rgba(225, 225, 225, 0.05);
}

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0D1E62;
  padding: 0.01px 5px;
  z-index: 999;
  border-bottom: 1px solid black;
  opacity: 0.9;
}

.navbar-cont{
  display: flex;
  list-style: none;
  gap: 50px;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 20px;
}

.navbar-cont li{
 
  width: fit-content;
 
  padding: 5px;
 
}

a{
  text-decoration: none;
  color:white;
}

.map-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width:760px) {
  .services_list{
    grid-template-columns: repeat(2, 1fr)
    ;
  }
  
.contact-section::before,
.contact-section::after{
  content: '';
  height: 4px;
  background-color: white;
  width: 100px;
  opacity: 0.5;
}


.map-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .col1 {
    font-size: 7vw; /* scales down text */
    margin-bottom: 20px;
  }

  .col1 p{
    font-size: 7vw;
    flex: 1;
    line-height: 1.1;
    text-align: left;
  }

  .col1 h6{
    font-size: 3vw;
    flex: 1;
    line-height: 1.1;
    text-align: left;
  }
  .col2 {
    width: 50%;
    height: auto;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
  }
    .navbar ul {
      font-size: 10px;
      padding-right: 50px;
      width: auto;
    }

    a{
      display: flex;
      align-self: left;
      align-items: left;
      justify-content: left;
    }
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-top: 50px;
}

.section-heading::before,
.section-heading::after {
  content: '';
  height: 4px;
  background-color: white;
  width: 100px;
  opacity: 0.5;
}

.section-heading span {
  font-size: 24px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.contact-section {
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.contact-section::before,
.contact-section::after{
  content: '';
  height: 4px;
  background-color: white;
  width: 100px;
  opacity: 0.5;
}


.contact-section span{
  margin-bottom: 10px;
  font-size: 32px;
}

.contact-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-buttons .btn {
  padding: 12px 24px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call {
  background-color: #1e40af; /* Blue */
}

.whatsapp {
  background-color: #25D366; /* WhatsApp green */
}

.btn:hover {
  opacity: 0.85;
}
