@font-face {
  font-family: "Evermore";
  src: url("../font/Evermore.otf") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.arial {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1.2rem !important;
}

.evermore{
  font-family: "Evermore", sans-serif;
  font-size: 0.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Evermore", sans-serif;
  background-color: #101010;
  color: white;
  overflow-x: hidden;
  transition: background-color 0.3s ease;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader {
  text-align: center;
  color: white;
}

.loader img {
  width: 120px;
  height: 120px;
  animation: spin 1.2s linear infinite;
  margin-bottom: 10px;
}

.loader p {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.ht a{
  text-decoration: none;
  color: white;
}

.logobg1 img {
  width: 30%;
  opacity: 0.1;
  position: absolute;

  top: 50%;
  left: -10%;
}

.logobg2 img {
  width: 30%;
  opacity: 0.1;
  position: absolute;
  z-index: -20;
  top: -10%;
  right: -10%;
}

@media (max-width: 768px) {
  .logobg1 img {
    width: 50%;
    opacity: 0.1;
    position: absolute;
    top: 60%;
    left: -25%;
    z-index: -20;
  }

  .logobg2 img {
    width: 50%;
    opacity: 0.1;
    position: absolute;
    z-index: -20;
    top: -10%;
    right: -15%;
  }
}

.contain {
  margin: auto;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .contain {
    padding: 0 10rem;
  }
}

.gap-10{
  display: flex;
  justify-content: center;
  gap: 7vw;
  margin-left: -8rem;
}
@media (max-width: 992px) {
  .gap-10{
   display: none;
  }
}


/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  position: relative;
  z-index: 100;
}

nav a {
  color: #888888 !important;
  transition: 0.3s;
  font-size: 0.8rem;
}


.border-bottom{
  border-bottom: 0px solid #666666 !important;
}
@media (max-width: 768px) {
  .border-bottom{
    border-bottom: 1px solid #666666 !important;
  }
}


nav a:hover {
  color: #ffffff !important;
}

.grey{
  color: #888888 !important;
}

.btn-outline-light {
  border: none;
  padding: 0;
}

.bbttnn{
  background-color: transparent;
  color: white;
  font-size: 2rem !important;
  padding: 0;
  margin-top: -20px;
}

/* Central Logo */

.central-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.clogo {
  width: calc(5rem);
  margin: 1.3rem 0;
}

.main-title {
  font-size: calc(1.3rem);
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

/* Swiper Styles */
.mySwiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
  margin: 2.7rem 0;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 215px !important;
  height: 215px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mySwiper .swiper-slide {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Navigation Circle Styles */
.nav-circle {
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  opacity: 0.6;
  font-size: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(0.8);
}

/* Center slide (initially active) */
.nav-circle.center-slide {
  opacity: 1;
  transform: scale(1.2);
  border-width: 3px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
}

/* Active slide (center) styling */
.swiper-slide-active .nav-circle {
  opacity: 1;
  transform: scale(1.2);
  border-width: 3px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
}

/* Previous and next slides */
.swiper-slide-prev .nav-circle,
.swiper-slide-next .nav-circle {
  opacity: 0.8;
  transform: scale(1);
  font-size: 15px;
  border-width: 2px;
}

/* Far slides (left and right) */
.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(
    .swiper-slide-next
  )
  .nav-circle {
  opacity: 0.5;
  transform: scale(0.7);
  font-size: 13px;
}

/* Glow effect for active slide */
.swiper-slide-active .nav-circle::before,
.nav-circle.center-slide::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nav-circle:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.nav-circle span {
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

/* Follow Section */
.follow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .follow-section {
    margin-top: 5rem;
  }
}

.follow-title {
  font-size: 1rem !important;
  letter-spacing: 2px;
}

.social-icon {
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background: rgba(114, 114, 114, 0.7);
  transition: 0.3s !important;
}

.social-icon:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .mySwiper .swiper-slide {
    width: 100px;
    height: 100px;
  }

  .swiper-slide-active .nav-circle,
  .nav-circle.center-slide {
    font-size: 14px;
  }
}

footer {
  font-family: Arial, Helvetica, sans-serif;
  margin-top: calc(3rem + 3.3vw);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px !important;

  border-top: 1px solid #666666;
  padding-top: 1.5rem;
  color: #666666;
}

footer a {
  color: #ff00ff;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
}





.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeInBackground 0.4s;
}

@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #414141; /* Dark modal background */
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  padding: 15px;
  position: relative;
  animation: popIn 0.4s ease;
  color: #ddd;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width:450px) {
  .modal-content img {
    height: 250px;
  }
}

.modal-content h2 {
  margin-top: 0;
  color: #fff;
}

.modal-content p {
  color: #aaa;
  margin: 15px 0 25px;
}

.modal-content .btn {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 116px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.modal-content .btn:hover {
  background: #ffffff;
  color: #000;
}

.close {
  position: absolute;
  top: 7px;
  right: 11px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  background-color: #000;
  border-radius: 100px;
  padding: 3px 9px;
}

.close:hover {
  background-color: #333;
}
