@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset & defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html, body {
  background: #fff;
  overflow-x: hidden; /* stop horizontal scroll */
}

/* Layout for main section */
section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0; /* let Bootstrap handle spacing */
}

.btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
}

/* Image box styling */
section .imgBx a {
  position: relative;
  margin-top: 10px;
  display: inherit;
  text-align: center;
  color: #000;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 30px;
}

section .imgBx img,
img.responsive-fit {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Social icons */
.social-media-icons-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.social-media-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-media-icons a {
  color: #333;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-media-icons a:hover {
  color: #007bff;
  transform: scale(1.1);
}

.social-media-icons i {
  font-size: 1.5rem;
}

.social-icon {
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Tablet styles */
@media (max-width: 991px) {
  section {
    flex-direction: column-reverse;
    padding: 24px 16px;
    min-height: auto;
  }

  .btn {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
  }

  section .imgBx img {
    margin-top: 0;
  }

  section .contentBx {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  section .contentBx h2 {
    font-size: 40px;
  }

  section .contentBx p {
    font-size: 16px;
  }

  section .contentBx .countdown {
    justify-content: center;
  }

  section .contentBx .countdown .time {
    font-size: 30px;
    min-width: 70px;
    margin-right: 5px;
  }

  section .contentBx .countdown .time span {
    font-size: 14px;
  }

  section .contentBx a {
    position: relative;
    margin-top: 10px;
    display: inline-block;
    background: #fff;
    color: #7ae1d5;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 40px;
    margin-bottom: 10px;
  }

  section .sci {
    left: 40px;
  }

  .newsletter {
    width: 90%;
    padding: 30px;
  }

  .newsletter .inputBox input {
    margin-top: 10px;
    width: 100%;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  section {
    flex-direction: column-reverse;
    padding: 20px 12px;
    display: flex;
    align-items: center;
  }

  section .imgBx {
    margin-top: 5px;
  }

  .btn {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
  }

  section .imgBx img {
    margin-top: 0;
  }

  section .contentBx {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  section .contentBx h2 {
    font-size: 40px;
  }

  section .contentBx p {
    font-size: 16px;
  }

  section .contentBx .countdown {
    justify-content: center;
  }

  section .contentBx .countdown .time {
    font-size: 30px;
    min-width: 70px;
    margin-right: 5px;
  }

  section .contentBx .countdown .time span {
    font-size: 14px;
  }

  section .contentBx a {
    position: relative;
    margin-top: 10px;
    display: inline-block;
    background: #7ae1d5;
    color: #000;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 40px;
    margin-bottom: 10px;
  }

  section .sci {
    left: 40px;
  }

  .newsletter {
    width: 90%;
    padding: 30px;
  }

  .newsletter .inputBox input {
    margin-top: 10px;
    width: 100%;
  }

  /* 🔑 FIX: show entire images */
  section .w-100 {
    width: auto !important;  /* override Bootstrap forcing full width */
  }

  section img.img-fluid {
    display: block;
    max-width: 100%;
    max-height: 100dvh;  /* never taller than screen */
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  .mb-3 { margin-bottom: 16px !important; }
}