body {
  margin: 0;
  background-color: hsl(0, 14%, 97%);
  font-family: Arial, sans-serif;
}

.header {
  background-color: #f4f2f2;
  color: rgb(248, 246, 246);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 60px;
  margin: 20px;
  position: relative;

}

.right-area {
  display: flex;
  align-items: center;
  gap: 20px;
}




.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  
}

.logo {
  width: 150px;
  height: auto; /* Keeps original aspect ratio */
  object-fit: contain;
  image-rendering: auto;
}


.logo-area .text h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.logo-area .text p {
  margin: 0;
  font-size: 20px;
  color: #bbb;
}

/* Default navbar style */
.navbar {
  display: flex;
  gap: 20px;
  align-items:center;
}
.navbar a {
  text-decoration: none !important;
  color: black; /* or your preferred color */
  font-weight: 600;
  border: none !important;
  box-shadow: none !important;
}


/* Hamburger menu icon hidden by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #000;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #f6efef;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }

 

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
}


.call-btn {
  background: linear-gradient(to right, #0f44a1, #249beb);
  color:  #f3f2f2;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
.header {
flex-wrap: wrap;
flex-direction: column;
align-items:flex-start;
padding: 15px 20px;
}
.right-area{
  width: 100%;
 
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
display: block;
color: #000;
font-size: 28px;
cursor: pointer;
align-self: flex-end;
}

.navbar {
display: none;
flex-direction: column;
width: 100%;
margin-top: 15px;
background: #f6efef;
padding: 10px 0;
border-radius: 10px;
z-index: 10;
}

.navbar.active {
display: flex;
}

.navbar a {
padding: 10px 20px;
width: 100%;
text-align: left;
border-bottom: 1px solid #ddd;
color: #000;
font-weight: 600;
text-decoration: none;
}

.call-btn {
width: 100%;
margin-top: 10px;
align-self: center;
}
}
/*contact and form*/
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  background: #fff;
}

.contact-left {
  flex: 1 1 40%;
}

.contact-right {
  flex: 1 1 50%;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #447a9c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}


/* Service Section */
.services-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 280px;
  padding: 20px;
  position: relative;
  transition: transform 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3 {
  font-size: 20px;
  margin: 16px 0 8px;
  color: #000;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

.arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 20px;
  text-decoration: none;
  color: #007bff;
  transition: 0.3s;
}

.arrow-link:hover {
  color: #0056b3;
}

  /*footer*/
.footer {
  background: #e6f0f8;
  color: rgb(12, 12, 12);
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(8, 8, 8);
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%);
}

.social-icons a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
