/* SECTION BASE */
.contact-section {
  /* background: #f8f7f770; */
  background-color: #ffffff;
}

/* Fade Animations */
.fade-in-left {
  animation: fadeInLeft 1s ease forwards;
}
.fade-in-right {
  animation: fadeInRight 1s ease forwards;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FORM INPUTS (Modern) */
.modern-input {
  border: 1.8px solid #d1d5db;
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.modern-input:focus {
  border-color: #6610f2;
  box-shadow: 0 0 8px rgba(102, 16, 242, 0.2);
}

/* TEXTAREA ADJUSTMENTS */
textarea.modern-input {
  resize: vertical;
  min-height: 120px;
}

/* SUBMIT BUTTON */
.btn-gradient {
  background-image: linear-gradient(45deg, #6610f2, #6426ea);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0.5rem;
}

.btn-gradient:hover,
.btn-gradient:focus {
  background-image: linear-gradient(45deg, #d6336c, #6610f2);
  box-shadow: 0 0 14px rgba(214, 51, 108, 0.4);
  transform: translateY(-2px);
}

/* ERROR MESSAGE */
#errmsg {
  animation: shake 0.3s ease 0s 2;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25%,
  75% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
}

/* LOADER TEXT */
#form-loader span {
  display: inline-block;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* RESPONSIVE OPTIMIZATION */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
  }

  .info-section {
    padding: 2rem 1.5rem;
  }
}

.text-color {
  font-size: 20px; /* Slightly larger for readability */
  line-height: 1.6; /* More comfortable line spacing */
  color: #ffffff; /* Keep your secondary text color */
  margin-bottom: 0; /* Already set */
  font-weight: 500; /* Normal weight for paragraph */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Clean modern font */
}

/* ---------card-------- */

.info-msg-box {
  position: relative;
  background-image: linear-gradient(135deg, #2b84e3);
  border-left: 6px solid #6610f2;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  animation: floatLeftRight 5s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes floatLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.info-msg-box:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Icon bubble */
.info-msg-box .icon-box {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e0e7ff, #d1d9f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6610f2;
  box-shadow: 0 3px 6px rgba(102, 16, 242, 0.2);
  flex-shrink: 0;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .info-msg-box {
    padding: 1.5rem;
  }

  .info-msg-box .icon-box {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Info Cards Section */
/* Section wrapper */
.info-cards {
  padding: 60px 0;
  background: #fcfbfb;
}

/* Base card style */
.info-cards .card {
  border: none;
  border-radius: 16px;
  color: #fff;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

/* Hover effect */
.info-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Card content layout */
.info-cards .card-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

/* Icon wrapper */
.info-cards .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Headings & text */
.info-cards h6 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.info-cards p,
.info-cards a {
  font-size: 0.95rem;
  color: #201717;
  margin: 0;
  text-decoration: none;
}

.icon-box {
  font-size: 1.8rem;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-right: 1.25rem; /* ← ADDED custom spacing (20px) */
}

/* Font enhancements */
.card-body h6 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.card-body p,
.card-body a {
  font-weight: 500;
  font-size: 20px;
  color: black;
}

.card {
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* Specific Card Backgrounds */
.card-email {
  background: linear-gradient(135deg, #2b84e3 100%) !important;
}

.card-hours {
  background: linear-gradient(135deg, #2b84e3 100%);
}

.card-today {
  background: linear-gradient(135deg, #2b84e3 100%);
}

/* Responsive layout */
@media (max-width: 768px) {
  .info-cards .card-body {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .info-cards .icon {
    margin-bottom: 10px;
  }
}

/* Background Gradient */
.login-cta-section {
  background: linear-gradient(135deg, #0e3866, #2b92b0);
  color: white;
  border-radius: 10px;
  padding: 15px;
}

/* Button Styling */
.btn-login-cta {
  background-image: linear-gradient(45deg, #6610f2, #6426ea);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0.5rem;
}

.btn-login-cta:hover {
  background: #6610f2;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.5);
  transform: translateY(-2px);
}
/* ------------Contact Top---------- */

.contact-hero-section {
  position: relative;
  padding: 80px 0;
  min-height: 300px;
  margin-top: 80px;
  color: white;
  z-index: 1;
  overflow: hidden;
  border-bottom: 2px solid #ffffff10;
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(60, 69, 93, 0.5),
      rgba(70, 79, 104, 0.6)
    ),
    url("../img/contact11.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.7);
}

.breadcrumb-nav {
  font-size: 1.1rem;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-current {
  font-weight: 600;
  color: #00cfff; /* Bootstrap info color */
}
/* ------------Contact Top End---------- */
