/* -------------------- FONT -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* -------------------- PAGE 1 -------------------- */
body {
  background-image: url('image/firstpage1.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* -------------------- HEADER -------------------- */
.header {
  width: 100%;
  background-color: #01013d89;
  box-shadow: #888;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-animated {
  width: 40px;
  height: 40px;
  margin-left: -10px;
  margin-right: 10px;
}

.nav-center {
  display: flex;
  gap: 125px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #9298cd;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 8px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #2d3883;
}

.btn-filled {
  border: none;
  color: #ffffff;
  background-color: #4c5bdc;
}

.btn-filled:hover {
  background-color: #40446acc;
}

/* -------------------- DISCOVER CONTENT -------------------- */
.disccontent {
  padding: 60px 40px;
  color: #202033;
}

.disccontent h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 0px;
}

.disc-shining-text {
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(90deg, #332cb6, rgb(91, 85, 140), #ffffff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite alternate;
  margin-top: 65px;
}

@keyframes shine {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

.disccontent p {
  font-size: 17px;
  color: #8b8fa6;
  line-height: 1.5;
  text-align: center;
  width: 70%;
  margin: 0 auto 40px auto;
}

.disccontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 60px 40px;
  border-radius: 50px;
  margin: -75px auto 15px auto;
}

/* -------------------- SLIDER -------------------- */
.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding-left: 100px;
  padding-right: 1000px;
  padding-bottom: 25px;
  padding-top: 25px;
}

.slider {
  display: flex;
  gap: 50px;
  transition: transform 0.4s ease;
}

.slide-card {
  min-width: 280px;
  max-width: 280px;
  height: 400px;
  background: rgba(25, 33, 77, 0.53);
  padding: 10px 15px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(236, 230, 230, 0.427);
}

.slide-card h3 {
  font-size: 16px;
  margin: 10px 0 5px 0;
}

.slide-card p {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  width: 100%;

}

.slide-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: scale-down;
  margin-bottom: px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(75, 72, 121, 0.626);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 10px;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}




/* -------------------- DISCOVER PAGE 2 -------------------- */
.disccontent2 {
  padding: 60px 40px;
  color: #202033;
}

.disccontent2 h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 0px;
}

.disc-shining-text2 {
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(90deg, #332cb6, rgb(91, 85, 140), #ffffff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite alternate;
  margin-top: -10px;
}

@keyframes shine {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

.disccontent2 p {
  font-size: 17px;
  color: #8b8fa6;
  line-height: 1.5;
  text-align: center;
  width: 70%;
  margin: 0 auto 40px auto;
}

.disccontainer2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 60px 40px;
  border-radius: 50px;
  margin: -75px auto 15px auto;
}







/*--------------- CONTAINER PAGE 2 ------------------*/
* {

    box-sizing: border-box; 

}
.main-info-container {
    display: flex;
    background-color: rgba(25, 33, 77, 0.53);
    padding: 40px;
    border-radius: 20px;
    box-shadow:  0 4px 12px rgba(236, 230, 230, 0.427);
    margin-bottom: 40px;
    width: 66%;
    margin-left: auto;   
    margin-right: auto; 
    height: 255px;
}

.info-text-block {
    flex: 1.2;
    padding-right: 40px;
    text-align: justify;

}

.info-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    margin-top: -10px;

}

.info-text-block p {
    font-size: 14px; 
    color: #8b8fa6;
    line-height: 1.4;
    text-align: left; 
    width: 100%;
    text-align: justify;
    line-height: 1.5;
    margin-right: 50px;

}

.info-image-block {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;

}

.feature-grid-exact {
  display: flex;
  justify-content: center;
  gap: 25px; 
  width: 75%;   
  margin-left: auto;
  margin-right: auto;

}



.feature-card-exact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(25, 33, 77, 0.53);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow:  0 4px 12px rgba(236, 230, 230, 0.427);
  flex: 1; 
  max-width: 300px;
  text-align: center;
  height: 220px; 
  justify-content: space-between; 
  margin-bottom: -35px;


}

.feature-icon-exact {
  width: 100px; 
  height: auto;
  margin-bottom: 10px;
  opacity: 0.8; 

}

.feature-card-exact h4 {
  font-size: 14px; 
  font-weight: bold; 
  color: #ffffff;
  margin-top: -18px;
  line-height: 1.3;


}


.feature-card-exact p {
  font-size: 13px; 
  font-weight: 400; 
  color: #8b8fa6;
  margin-left: -75px;
  margin-right: -75px;
  line-height: 1.3;
  text-align: justify;
  width: 100%;
  line-height: 1.5;

}

.zoom {
    transition: transform 0.3s ease;
}

.zoom:hover {
    transform: scale(1.05);
}












































/* ============================================
   MOBILE & TABLET RESPONSIVE FIXES
   ============================================ */

/* ----------- Large Tablets (max-width: 1200px) ----------- */
@media (max-width: 1200px) {

  .nav-center {
    gap: 60px;
  }

  .main-info-container {
    width: 85%;
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .info-text-block {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .feature-grid-exact {
    width: 85%;
  }
}

/* ----------- Tablets & Small Laptops (max-width: 992px) ----------- */
@media (max-width: 992px) {

  .nav-center {
    display: none; /* hide nav menu */
  }

  .nav-right {
    gap: 5px;
  }

  .slider-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-card {
    min-width: 240px;
    max-width: 240px;
  }

  .main-info-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .info-image-block {
    justify-content: center;
  }

  .feature-grid-exact {
    gap: 15px;
  }

  .feature-card-exact {
    max-width: 250px;
    height: auto;
  }
}

/* ----------- Mobile Phones (max-width: 768px) ----------- */
@media (max-width: 768px) {

  .header {
    padding: 10px 20px;
  }

  .disccontent h1,
  .disccontent2 h1 {
    font-size: 28px;
  }

  .disccontent p,
  .disccontent2 p {
    width: 90%;
  }

  .slider {
    gap: 20px;
  }

  .slide-card {
    min-width: 200px;
    max-width: 200px;
    height: auto;
  }

  .slide-card img {
    height: 140px;
  }

  .main-info-container {
    width: 90%;
    padding: 20px;
  }

  .feature-grid-exact {
    flex-direction: column;
    width: 90%;
  }

  .feature-card-exact {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ----------- Small Mobile Phones (max-width: 480px) ----------- */
@media (max-width: 480px) {

  .nav-right .btn {
    padding: 5px 15px;
    font-size: 11px;
  }

  .disc-shining-text,
  .disc-shining-text2 {
    font-size: 18px;
  }

  .slide-card {
    min-width: 170px;
    max-width: 170px;
  }

  .slide-card img {
    height: 120px;
  }

  .info-text-block p {
    font-size: 13px;
  }

  .feature-card-exact h4 {
    font-size: 13px;
  }

  .feature-card-exact p {
    font-size: 12px;
  }
}
