/* ===== Reset and Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  background: #f8f9fa;
  color: #333;
}
/* ===== Navigation Bar ===== */
nav {
  background: white;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav .logo {
  font-size: 30px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-weight: bold;
}
nav ul li a:hover {
  color: rgb(31, 130, 187);
}
/* Industry Icon Styling */
.industry-icon {
  font-size: 48px;
  color: #0d6efd;
  transition: transform 0.3s ease;
}
.industry-icon:hover {
  transform: scale(1.2);
  color: #063d99;
}
h6 {
  font-weight: 600;
  color: #333;
}
footer .social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}
/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Heading */
.contact-heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
/* Contact Section Background */
.contact-section {
  background: linear-gradient(135deg, #f0f4f8, #e3ebf3); /* light, subtle gradient */
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contact Heading Style */
.contact-heading {
  font-size: 36px;
  font-weight: 700;
  color: #003366; /* Deep professional blue */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Contact Form */
.login-container {
  flex: 1 1 50%;
  padding-right: 20px;
}

.login-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.login-container input,
.login-container textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.login-container textarea {
  resize: vertical;
  height: 120px;
}

.login-container button {
  background-color: #007bff;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Contact Info (Text + Icons) */
.contact-info {
  flex: 1 1 40%;
  padding-left: 20px;
  color: #333;
  font-size: 15px;
}

.contact-info .info-block {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  font-size: 18px;
  margin-right: 12px;
  color: #007bff;
  width: 24px;
  text-align: center;
}

.contact-info h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.contact-info p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .container {
    flex-direction: column;
    gap: 30px;
  }

  .login-container,
  .contact-info {
    padding: 0;
    flex: 1 1 100%;
  }

  .login-container {
    padding-bottom: 20px;
  }
}

/* ========== Mobile (≤576px) ========== */
@media (max-width: 576px) {
  nav ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  nav .logo img {
    height: 40px;
  }

  .contact-heading {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-section .form-label,
  .contact-section p,
  .contact-section h5 {
    font-size: 0.95rem;
  }

  .contact-section .form-control,
  .contact-section textarea {
    font-size: 0.9rem;
  }

  .contact-section .btn {
    width: 100%;
    font-size: 1rem;
  }

  .contact-section .col-md-6 {
    margin-bottom: 30px;
  }

  footer .row {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center !important;
    margin-top: 10px;
  }
}

/* ========== Tablet (≥577px and ≤768px) ========== */
@media (min-width: 577px) and (max-width: 768px) {
  .contact-heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-section .btn {
    font-size: 1rem;
  }

  .contact-section p,
  .contact-section h5 {
    font-size: 1rem;
  }

  .social-icons {
    justify-content: center !important;
  }
}

/* ========== Laptop (≥769px and ≤1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-heading {
    font-size: 2rem;
  }

  .contact-section p,
  .contact-section h5 {
    font-size: 1.05rem;
  }
}

/* ========== Desktop (≥1025px) ========== */
@media (min-width: 1025px) {
  .contact-heading {
    font-size: 2.2rem;
  }

  .contact-section .form-label {
    font-size: 1.1rem;
  }

  .contact-section p,
  .contact-section h5 {
    font-size: 1.1rem;
  }

  .contact-section .form-control {
    font-size: 1rem;
  }

  .contact-section .btn {
    padding: 10px 30px;
    font-size: 1.05rem;
  }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  text-decoration: none; /* This removes the underline */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebd59;
  transform: scale(1.1);
}

.facebook i {
  color: #1877F2; /* Facebook Blue */
}

.instagram i {
  color: #E1306C; /* Instagram Pink/Red */
}

.twitter i {
  color: #1DA1F2; /* Twitter Blue */
}

.whatsapp i {
  color: #25D366; /* WhatsApp Green */
}
.social-icons a:hover i {
  opacity: 0.8;
  transform: scale(1.1);
  transition: 0.3s ease;
}


