@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

section {
  margin: 0;
  padding: 0;
  gap: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ==================== NAVIGATION BAR ==================== */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: rgb(34, 34, 34); */
  background-color: #FFF;
  height: 80px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0 20px;
}

.logo-heading {
  padding-left: 30px;
  color: white;
  font-weight: 900;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.logo-heading:hover {
  transform: scale(1.02);
}

.logo-heading h1 {
  font-weight: bold;
}

.logo-heading img {
  height: 85px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.logo-heading img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5rem;
}

.nav-bar a {
  text-decoration: none;
  margin: 20px;
  /* color: rgb(179, 171, 227); */
  color: black;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.nav-bar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  /* background-color: white; */
  background-color: black;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-bar a:hover::after,
.nav-bar a.active::after {
  width: 100%;
}

.nav-bar a:hover {
  /* color: white; */
  color: black;
  transform: translateY(-2px);
}

.nav-bar a.active {
  /* color: white; */
  color: green;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 25px;
  width: 30px;
  margin-right: 20px;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-bar {
    padding-right: 2rem;
  }
  
  .nav-bar a {
    margin: 15px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav_container {
    padding: 0 10px;
  }

  .nav-bar {
    display: none;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: rgb(34, 34, 34);
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .nav-bar a {
    margin: 10px;
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-bar.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .logo-heading {
    padding-left: 10px;
  }
  
  .logo-heading img {
    height: 60px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .nav_container {
    height: 70px;
    padding: 0 5px;
  }

  .logo-heading {
    padding-left: 5px;
  }
  
  .logo-heading img {
    height: 50px;
  }

  .menu-toggle {
    margin-right: 10px;
  }
}

@media (max-width: 375px) {
  .nav_container {
    height: 60px;
  }
  
  .logo-heading img {
    height: 45px;
  }
}

/* ==================== HEADER IMAGE ==================== */

.back-image {
  width: 100%;
  height: 300px;
  background-image: url('assets/imagebg.jpg');
  background-size: cover;
  background-position: center;
  filter: opacity(0.9);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.back-image:hover {
  filter: opacity(1);
}

.back-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.back-image:hover::before {
  background: rgba(0, 0, 0, 0.05);
}

.back-image p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  font-size: 55px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .back-image {
    height: 250px;
  }

  .back-image p {
    font-size: 48px;
    padding-top: 75px;
  }
}

@media (max-width: 768px) {
  .back-image {
    height: 200px;
  }

  .back-image p {
    font-size: 40px;
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .back-image {
    height: 150px;
  }

  .back-image p {
    font-size: 28px;
    padding-top: 45px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 375px) {
  .back-image {
    height: 130px;
  }

  .back-image p {
    font-size: 24px;
    padding-top: 40px;
  }
}

/* ==================== CONTACT CARDS ==================== */

.contact-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px;
  animation: fadeIn 1s ease;
  flex-wrap: wrap;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-card1 {
  text-align: center;
  width: 300px;
  height: 220px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background: white;
}

.contact-card1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card1:hover {
  transform: translateY(-15px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card1:hover::before {
  opacity: 1;
}

.contact-card1 .contact-img {
  padding: 30px;
  font-size: 55px;
  transition: all 0.4s ease;
  color: rgb(116, 118, 128);
}

.contact-card1:hover .contact-img {
  transform: scale(1.15) rotate(5deg);
  color: rgb(34, 34, 34);
}

.contact-card1 .contact-img i {
  transition: all 0.3s ease;
}

.contact-card1 .contact-card-info {
  transition: all 0.3s ease;
}

.contact-card1:hover .contact-card-info {
  transform: translateY(-5px);
}

.contact-card1 .contact-card-info a {
  text-decoration: none;
  color: rgb(116, 118, 128);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.contact-card1 .contact-card-info a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: rgb(34, 34, 34);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.contact-card1:hover .contact-card-info a::after {
  width: 80%;
}

.contact-card1 .contact-card-info a:hover {
  color: rgb(34, 34, 34);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .contact-card {
    gap: 30px;
    margin: 40px 30px;
  }

  .contact-card1 {
    width: 280px;
    height: 200px;
  }

  .contact-card1 .contact-img {
    font-size: 50px;
    padding: 25px;
  }

  .contact-card1 .contact-card-info a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 30px 20px;
  }

  .contact-card1 {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 180px;
    padding: 20px;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  }

  .contact-card1 .contact-img {
    font-size: 45px;
    padding: 20px;
  }

  .contact-card1 .contact-card-info a {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-card {
    margin: 20px 10px;
    gap: 20px;
  }

  .contact-card1 {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    min-height: 160px;
  }

  .contact-card1 .contact-img {
    font-size: 35px;
    padding: 15px;
  }

  .contact-card1 .contact-card-info a {
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .contact-card {
    margin: 15px 5px;
  }

  .contact-card1 .contact-img {
    font-size: 30px;
    padding: 12px;
  }

  .contact-card1 .contact-card-info a {
    font-size: 11px;
  }
}

/* ==================== CONTACT FORM SECTION ==================== */

.contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 40px;
  animation: fadeIn 1.2s ease;
  gap: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.heading-contact {
  color: white;
  margin: auto;
  margin-bottom: 20px;
  width: 230px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heading-contact h2 {
  background-color: rgb(34, 34, 34);
  font-weight: 200;
  font-size: 30px;
  letter-spacing: 1px;
  padding: 5px 0px 5px 0px;
  transition: all 0.3s ease;
  position: relative;
}

.heading-contact h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.heading-contact:hover h2::before {
  left: 100%;
}

.heading-contact:hover h2 {
  letter-spacing: 2px;
  transform: scale(1.05);
}

.contact-section {
  width: 50%;
  margin: 0;
  padding: 70px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.contact-section:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.form-group:hover label {
  color: rgb(34, 34, 34);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: rgb(34, 34, 34);
  box-shadow: 0 0 8px rgba(34, 34, 34, 0.1);
  transform: translateY(-2px);
}

input[type="submit"] {
  background-color: rgb(116, 118, 128);
  color: white;
  padding: 10px 50px;
  font-size: 16px;
  margin: auto;
  align-items: center;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgb(34, 34, 34);
  transition: left 0.3s ease;
  z-index: -1;
}

input[type="submit"]:hover::before {
  left: 0;
}

input[type="submit"]:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

input[type="submit"]:active {
  transform: translateY(-1px);
}

#nameError,
#emailError,
#phoneError,
#messageError {
  font-size: 14px;
  margin-top: 4px;
  color: red;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ==================== MAP SECTION ==================== */

.map {
  margin-top: 10px;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* ==================== RESPONSIVE FOR CONTACT FORM AND MAP ==================== */

@media (max-width: 1024px) {
  .contact {
    margin: 30px 20px;
    gap: 20px;
  }

  .contact-section {
    padding: 60px 25px;
  }

  .heading-contact h2 {
    font-size: 26px;
  }

  label {
    font-size: 15px;
    margin-bottom: 15px;
  }

  input[type="text"],
  input[type="email"] {
    font-size: 13px;
    padding: 9px;
  }

  iframe {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 20px 15px;
  }

  .contact-section {
    width: 100%;
    margin: 0;
    padding: 50px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .map {
    width: 100%;
    margin-top: 0;
  }

  iframe {
    height: 400px;
  }

  .heading-contact h2 {
    font-size: 24px;
    padding: 5px 0;
  }

  label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  input[type="text"],
  input[type="email"] {
    font-size: 13px;
    padding: 8px;
    margin-bottom: 15px;
  }

  input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact {
    margin: 15px 10px;
    gap: 20px;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .heading-contact h2 {
    font-size: 20px;
  }

  .form-row {
    gap: 10px;
  }

  label {
    font-size: 12px;
    margin-bottom: 10px;
  }

  input[type="text"],
  input[type="email"] {
    padding: 8px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  input[type="submit"] {
    padding: 8px 20px;
    font-size: 12px;
  }

  iframe {
    height: 300px;
  }
}

@media (max-width: 375px) {
  .contact {
    margin: 10px 5px;
  }

  .contact-section {
    padding: 25px 10px;
  }

  .heading-contact h2 {
    font-size: 18px;
  }

  label {
    font-size: 11px;
  }

  input[type="text"],
  input[type="email"] {
    font-size: 11px;
    padding: 7px;
  }

  input[type="submit"] {
    padding: 7px 18px;
    font-size: 11px;
  }

  iframe {
    height: 250px;
  }
}

/* ==================== LOADING SPINNER ==================== */

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: rgb(116, 118, 128);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loading-spinner p {
  font-weight: 600;
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }

  #loading-spinner p {
    font-size: 12px;
  }
}

/* ==================== FOOTER ==================== */

footer {
  background-color: rgb(42, 42, 42);
  color: white;
  padding: 40px 20px 20px 20px;
  animation: fadeIn 1s ease;
}

.footer-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-card2 {
  margin-left: 0;
}

.footer-card1,
.footer-card2 {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  margin-top: 30px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.footer-card1:hover,
.footer-card2:hover,
.footer-card3:hover {
  transform: translateY(-5px);
}

.n1 {
  background-color: white;
  height: 4px;
  margin-left: 0px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 80px;
  transition: width 0.3s ease;
}

.footer-card1:hover .n1 {
  width: 100px;
}

.n2 {
  background-color: white;
  height: 4px;
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 80px;
  transition: width 0.3s ease;
}

.footer-card2:hover .n2 {
  width: 100px;
}

.footer-card3 {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin-top: 25px;
  margin-left: 0;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.footer-card1 .heading h2,
.footer-card2 .heading h2,
.footer-card3 .heading h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: letter-spacing 0.3s ease;
}

.footer-card1:hover .heading h2,
.footer-card2:hover .heading h2,
.footer-card3:hover .heading h2 {
  letter-spacing: 3px;
}

.footer-card2 .heading h2 {
  text-align: left;
}

.social-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-card1 a {
  text-decoration: none;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-card1 a i {
  color: white;
  padding: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-card2 .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-card2 .links a {
  text-decoration: none;
  text-align: left;
  margin-left: 0;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-card2 .links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-card2 .links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-card1 .social-icon a:hover {
  background-color: white;
  transform: scale(1.1) rotate(5deg);
}

.footer-card1 .social-icon a i:hover {
  color: black;
}

.footer-card2 .links a:hover {
  color: rgb(116, 118, 128);
  transform: translateX(5px);
}

.footer-card3 .footer-contact-info {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-card3 .footer-contact-info:hover {
  transform: translateX(5px);
}

.footer-card3 .footer-contact-info .address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-card3 .footer-contact-info h2 {
  margin: 0;
  font-size: 16px;
  color: rgb(248, 245, 245);
}

.footer-card3 .footer-contact-info i {
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-card3 .footer-contact-info:hover i {
  transform: scale(1.2);
  color: rgb(179, 171, 227);
}

.footer-card3 .address-main,
.footer-card3 .contact-main,
.footer-card3 .email-main {
  padding-top: 0;
  font-size: 16px;
  color: #adadad;
  margin-left: 0;
  flex: 1;
}

.footer-card3 .address-main a,
.footer-card3 .contact-main a,
.footer-card3 .email-main a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  padding-top: 0;
  transition: all 0.3s ease;
  position: relative;
  word-wrap: break-word;
}

.footer-card3 .address-main a::after,
.footer-card3 .contact-main a::after,
.footer-card3 .email-main a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: rgb(179, 171, 227);
  transition: width 0.3s ease;
}

.footer-card3 .address-main a:hover::after,
.footer-card3 .contact-main a:hover::after,
.footer-card3 .email-main a:hover::after {
  width: 100%;
}

.footer-card3 .address-main a:hover,
.footer-card3 .contact-main a:hover,
.footer-card3 .email-main a:hover {
  color: rgb(179, 171, 227);
}

@media (max-width: 1024px) {
  footer {
    padding: 30px 15px 20px 15px;
  }

  .footer-cards {
    gap: 30px;
  }

  .footer-card1,
  .footer-card2,
  .footer-card3 {
    max-width: 45%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 20px 10px;
  }

  .footer-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .footer-card1,
  .footer-card2,
  .footer-card3 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 15px;
    text-align: left;
  }

  .footer-card1 .heading h2,
  .footer-card2 .heading h2,
  .footer-card3 .heading h2 {
    text-align: left;
  }

  .footer-card2 .links a {
    margin-left: 0;
    font-size: 14px;
    text-align: left;
  }

  .footer-card3 .address-main,
  .footer-card3 .contact-main,
  .footer-card3 .email-main {
    margin-left: 0;
    padding-top: 0;
    text-align: left;
    font-size: 14px;
  }

  .footer-card1 a i {
    font-size: 16px;
    padding: 8px;
  }

  .footer-card3 .footer-contact-info h2 {
    font-size: 14px;
  }

  .n1,
  .n2 {
    width: 80px;
    margin-top: 10px;
    margin-left: 0;
  }

  .social-icon {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px 5px;
  }

  .footer-cards {
    gap: 15px;
  }

  .footer-card1,
  .footer-card2,
  .footer-card3 {
    padding: 15px 10px;
  }

  .footer-card1 a i {
    font-size: 14px;
    padding: 6px;
  }

  .footer-card1 .heading h2,
  .footer-card2 .heading h2,
  .footer-card3 .heading h2 {
    font-size: 16px;
    text-align: left;
    padding: 10px 0;
  }

  .footer-card2 .links a {
    margin-left: 0;
    text-align: left;
    font-size: 13px;
  }

  .social-icon {
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-card3 .footer-contact-info h2 {
    font-size: 13px;
  }

  .footer-card3 .address-main,
  .footer-card3 .contact-main,
  .footer-card3 .email-main {
    font-size: 12px;
    margin-left: 0;
  }

  .footer-card3 .address-main a,
  .footer-card3 .contact-main a,
  .footer-card3 .email-main a {
    font-size: 12px;
  }

  .footer-contact {
    margin-left: 0;
  }

  .footer-card3 i {
    padding-right: 0;
    font-size: 14px;
  }

  .n1,
  .n2 {
    width: 60px;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 375px) {
  .footer-card1 .heading h2,
  .footer-card2 .heading h2,
  .footer-card3 .heading h2 {
    font-size: 15px;
  }

  .footer-card1 a i {
    font-size: 13px;
    padding: 5px;
  }

  .footer-card2 .links a {
    font-size: 12px;
  }

  .footer-card3 .address-main,
  .footer-card3 .contact-main,
  .footer-card3 .email-main {
    font-size: 11px;
  }

  .footer-card3 .address-main a,
  .footer-card3 .contact-main a,
  .footer-card3 .email-main a {
    font-size: 11px;
  }

  .n1,
  .n2 {
    width: 50px;
  }
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  animation: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float i {
  margin-top: 0;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: rotate(15deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 22px;
  }
}

@media (max-width: 375px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
    font-size: 20px;
  }
}

/* ============================================
   BURGER MENU FIX - Add this to your CSS file
   ============================================ */

/* Burger menu toggle button styling */
.menu-toggle {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333; /* Dark color - change to white (#fff) if your header is dark */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile view - show burger menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Show burger menu on mobile */
  }
  
  /* Hide navigation by default on mobile */
  .nav-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff; /* Change to match your header background */
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Show navigation when active */
  .nav-bar.active {
    display: flex;
  }
  
  .nav-bar a {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .nav-bar a:last-child {
    border-bottom: none;
  }
}

/* Animation for burger menu when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   ALTERNATIVE: If header has dark background
   ============================================ */
/* 
.menu-toggle span {
  background-color: #fff; 
}
*/