/* =====================
   GLOBAL STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff;
}

.page-wrapper {
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #111;
  margin: 0 0 15px;
}

p {
  margin: 0 0 15px;
  color: #444;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004a99;
}

/* =====================
   HEADER
===================== */
.header-two {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.header-two .logo-footer img {
  max-height: 45px;
}

.nav-btn {
  display: none;
}
/* =====================
   CONTACT FORM & VIDEO
===================== */
.s-about-home-two {
  padding: 60px 0;
  background: #f8f9fa;
}

.s-about-home-two .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-info,
.about-img {
  flex: 1 1 48%;
  min-width: 300px;
}

.form-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: fadeIn 0.6s ease;
}

.form-box h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #111;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #222;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0066cc;
  box-shadow: 0 0 6px rgba(0,102,204,0.3);
  outline: none;
}

/* Keep form fields above all page layers */
.form-group input,
.form-group select,
.form-group textarea {
  position: relative;
  z-index: 1001;
  pointer-events: auto !important;
  background: #fff;
}

/* Prevent backgrounds and wrappers from blocking dropdown clicks */
/* .main-slider-bg,
.main-slide-date,
.main-arrow-cover,
.main-slide-arrow,
.video-wrapper {
  pointer-events: none !important;
} */

.main-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   /* REQUIRED */
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group.half {
  flex: 1;
}

/* Radio button group */
.radio-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-btn {
  background: #0066cc;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #004a99;
  transform: translateY(-2px);
}

.privacy {
  font-size: 13px;
  color: #666;
}

.support-note {
  font-size: 14px;
  color: #444;
}

/* =====================
   VIDEO SECTION
===================== */
.video-wrapper {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: fadeIn 0.8s ease;
}

.video-wrapper video {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.video-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.video-link {
  color: #0066cc;
  font-weight: 600;
  transition: color 0.3s ease;
}

.video-link:hover {
  color: #004a99;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1 1 300px;
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 15px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer p {
  color: #bbb;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  color: #bbb;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* =====================
   TO TOP BUTTON
===================== */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0066cc;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  display: none;
  transition: all 0.3s ease;
}

.to-top:hover {
  background: #004a99;
  transform: translateY(-3px);
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Flexbox for text + image */
.slide-content {
  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: space-between;
  gap: 30px;             /* spacing between text and image */
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

/* Text */
.main-slide-item {
  flex: 1;
  color: #fff;
}

/* Image */
.slide-image {
  flex: 1;
  text-align: right;
}

.img-slide {
  max-width: 100%;
  height: auto;
}


/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .about-info,
  .about-img {
    flex: 1 1 100%;
  }
  .form-row {
    flex-direction: column;
  }
  .main-slide-two h2 {
    font-size: 26px;
  }
  .slide-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   LOADING SPINNER
===================== */
.spinner {
  display: none;
  margin: 15px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0066cc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-message {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
}
.form-message.success {
  color: green;
}
.form-message.error {
  color: red;
}
.main-slider-two .img-slide {
  position: relative !important; /* allow it to move */
  top: 40px; /* moves the image 30px down */
}
.main-slide-item h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 48px;            /* large headline */
  font-weight: 700;           /* bold */
  line-height: 1.2;
  color: #fff;                /* white text */
  margin-bottom: 15px;
}

.main-slide-item h2 span {
  display: block;             /* put first part on its own line */
  font-weight: 400;           /* lighter weight for contrast */
}

.main-slide-item .slide-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;           /* semi-bold like screenshot */
  color: #f5f5f5;             /* softer white/gray */
}
.extra-pictures {
  margin-top: 40px;
  text-align: center;
}

.extra-pictures h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.picture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.picture-grid img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.picture-grid img:hover {
  transform: scale(1.05);
}
.main-slider-bg {
    background-color: transparent !important;
}



