* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  color: white;
} 

/*  contact us style*/
/* Header */
.main-header {
  background-color: #1C1C25;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.main-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  margin-top: 50px;
}

.main-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
}

.contacts-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.contacts-header {
  text-align: left;
}

.contacts-container .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #00539c;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
.section-tag-icon-box-icon {
  margin-left: 5px;
}

.contact-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  max-width: 700px;
  text-align: left;
}
.contacts-container p {
  color: black;
}
/* contact us card  */
.contact-section-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 3%;
}

.contact-section-card {
  flex: 1;
  background: white;
  border-radius: 0px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-section-card-icon {
  width: 60px;
  height: 60px;
  /* background: black; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.contact-section-card-icon svg {
  width: 24px;
  height: 24px;
}
.contact-section-card-icon img {
  width: 90px;
}

.contact-section-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.contact-section-card-content {
  font-size: 16px;
  line-height: 1.6;
  color: #718096;
}
/* Existing styles ... */

@media (max-width: 768px) {
  .contact-section-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-section-card {
    width: 90%;
    max-width: 400px;
  }
  .contact-section-card-icon img {
    width: 65px;
  }
}

.contact-section-form-div {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0px 180px;
  margin-bottom: 5%;
}

.contact-section-form h1 {
  color: #00539c;
  text-align: left;
  margin-bottom: 20px;
}

.contact-section-form p {
  text-align: left;
  color: #2c3e50;
  margin-bottom: 30px;
  width: 600px;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  height: 120px;
  resize: vertical;
}

hr {
  border: 0;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

h2 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #1C1C25;
  color: white;
  border: 2px solid black;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: white;
  color: #1C1C25;
  border: 2px solid #000;
}

/* Existing styles above this remain unchanged */

@media (max-width: 768px) {
  .contact-section-form-div {
    padding: 20px;
  }

  .contact-section-form h1 {
    font-size: 22px;
    text-align: center;
  }

  .contact-section-form p {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    font-size: 18px;
  }
}

.m-whatsapp {
  color: white;
  font-weight: 300;
}
