body {
  margin: 0;
  padding: 0;
  background-image: url('../../assets/images/BG/bg7.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.header-section {
  position: relative;
  height: 300px;
  background-image: url('');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgb(30, 30, 121);
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.header-content img {
  width: 35rem;
}



/* Logo styling */

.main-container {
  max-width: 1200px;
  margin: -60px auto 50px;
  position: relative;
  z-index: 5;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Removed the .card:hover effect */

.card-title {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-control {
  padding: 8.5px 15px;
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info-item i {
  margin-right: 15px;
  font-size: 18px;
  color: #007bff;
  width: 25px;
  text-align: center;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  height: 400px;
  width: 100%;
}

/* whats app popup style */

.whatsapp-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-popup {
  position: fixed;
  bottom: 30px;
  right: -350px;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.whatsapp-popup.active {
  right: 30px;
}

.whatsapp-header {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.whatsapp-header i {
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-header i:hover {
  transform: rotate(90deg);
}

.whatsapp-body {
  padding: 20px;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 20px;
}

.section-divider {
  height: 5px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 768px) {

  .card-left,
  .card-right {
    transform: translateX(0);
    margin-bottom: 20px;
  }

  .diagonal-section {
    transform: skewY(-3deg);
  }

  .diagonal-content {
    transform: skewY(3deg);
  }

  .company-logo {
    max-width: 120px;
  }
}