/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s linear;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Banner Slider Styles */
.home {
  padding: 0;
}

.home .box {
  min-height: calc(100 * var(--vh, 1vh));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 9%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.home .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.home .box.second {
  justify-content: flex-start;
}

.home .box .content {
  display: none;
}

.home .box .content span {
  font-size: 4rem;
  color: #10221b;
}

.home .box .content h3 {
  font-size: 6rem;
  color: #219150;
  padding-top: .5rem;
  text-transform: uppercase;
}

.home .box .content p {
  line-height: 2;
  color: #10221b;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  border: 0.2rem solid #10221b;
  color: #10221b;
  cursor: pointer;
  background: none;
  font-size: 1.7rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
}

.btn:hover {
  background: #10221b;
  color: #fff;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.5);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

/* Mobile Optimization for Slider */
@media (max-width: 768px) {
  .home .box {
    min-height: calc(60 * var(--vh, 1vh));
    padding: 1rem;
    justify-content: center;
    background-position: center !important;
  }
  
  .home .box.second {
    justify-content: center;
    background-position: center !important;
  }
  
  .home .box .content {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  
  .home .box .content span {
    font-size: 2.5rem;
  }
  
  .home .box .content h3 {
    font-size: 3rem;
  }
  
  .home .box .content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .btn {
    font-size: 1.2rem;
    padding: 0.6rem 1.5rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 3rem;
    height: 3rem;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .home .box {
    min-height: calc(50 * var(--vh, 1vh));
    padding: 0.5rem;
  }
  
  .home .box .content span {
    font-size: 2rem;
  }
  
  .home .box .content h3 {
    font-size: 2.5rem;
  }
  
  .home .box .content p {
    font-size: 0.9rem;
  }
  
  .btn {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
}

/* Spacing and Transition Section */
.transition-section {
  position: relative;
  height: 100px;
  background: linear-gradient(180deg, 
    rgba(0, 10, 31, 0) 0%, 
    rgba(0, 10, 31, 0.3) 30%, 
    rgba(0, 10, 31, 0.5) 50%, 
    rgba(0, 10, 31, 0.3) 70%, 
    rgba(0, 10, 31, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .transition-section {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .transition-section {
    height: 40px;
  }
}

.transition-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: slideIn 3s ease-in-out infinite;
}

@keyframes slideIn {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.transition-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(255, 255, 255, 0.05) 0%, 
    transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

body {
  background-color: #000a1f;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.container img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.684);
  transition: transform ease-in-out 0.3s;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container img:hover {
  transform: scale(1.02);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    gap: 12px;
  }
  
  .container img {
    border-radius: 6px;
    border-width: 1px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 5px;
    gap: 8px;
  }
  
  .container img {
    border-radius: 4px;
    border-width: 1px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 3px;
    gap: 6px;
  }
  
  .container img {
    border-radius: 3px;
    border-width: 1px;
  }
}