/*=============== NAV ===============*/
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
  scroll-behavior: smooth;
}


.cursor {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: fixed;
  background-color: #111;
  z-index: 8;
  mix-blend-mode: difference;
  transition: left linear 0.1s top linear 0.1s;
}

.main {
  background-color: #081b29;
}

/* Mobile Menu Button */
/* Hamburger icon */
nav h3 {
  display: none;
  font-size: 24px;
  color: #afd6cb;
  cursor: pointer;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 25px;
  padding-top: 20px;
}

.main img {
  height: 3vh;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #afd6cb;
  border-radius: 50px;
  font-weight: 500;
  color: #afd6cb;
  transition: all ease 0.4s;
  position: relative;
  font-size: 12px;
  overflow: hidden;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #afd6cb;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #afd6cb;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #081b29;
  font-weight: 800;
}



.page1 {
  margin-top: 40vh;
  min-height: 100vh;
  width: 100%;
  position: relative;
  transition: .3s;
}


.page1 h1 {
  letter-spacing: 1vw;
  font-size: 8vw;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-top: 7vw;
  margin-left: 8vw;
  color: #afd6cb;
}

.page1 h2 {
  letter-spacing: 2vw;
  font-size: 8vw;
  font-weight: 300;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-left: 30vw;
  color: #afd6cb;
}

.page1 video {
  width: 70%;
  border-radius: 30px;
  margin-top: 8vw;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}


/* Responsive design for small devices */
@media (max-width: 768px) {
  .main {
    padding-top: 10px;
  }

  nav h3 {
    display: block;
  }

  #nav-part2 {
    display: none;
    flex-direction: column;
    gap: 4vw;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #081b29;
    width: 100%;
    padding: 2vw 0;
  }

  #nav-part2.show {
    display: flex;
  }

  nav h3 {
    display: block;
  }


  .page1 {
    padding-top: 0;
    margin-top: 0;
    min-height: 50vh;
    width: 100%;
    position: relative;
    transition: .3s;
  }

  .page1 h1 {
    letter-spacing: 1vw;
    font-size: 8vw;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-top: 18vw;
    margin-left: 20vw;
    color: #afd6cb;
  }

  .page1 h2 {
    letter-spacing: 2vw;
    font-size: 8vw;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-left: 6vw;
    color: #afd6cb;
  }

  .page1 video {
    width: 60%;
    margin-top: 20vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .cursor {
    display: none;
    /* Hide custom cursor on mobile for better UX */
  }

}



/*page */
.page2 {
  min-height: 80vh;
  width: 100%;
  padding: 40px 5vw;
  position: relative;
  border-top-right-radius: 120px;
  border-top-left-radius: 120px;
  background-color: #051018;
}



.head {
  text-align: center;
  margin-bottom: 60px;
}

.head h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.head p {
  font-size: 1.2em;
  color: #afd6cb;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-left: 50px;
}

.feature-box {
  background: #afd6cb;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0.1, 0.4);
  padding: 30px;
  height: 350px;
  width: 300px;
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  perspective: 1000px;
  transform-style: preserve-3d;
  will-change: transform;
}


.feature-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-box:hover img {
  opacity: 0.5;
}
.feature-box h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #051018;
}

.feature-box p {
  color: #051018;
  font-size: 1em;
  font-weight: 800;
}


.card-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #afd6cb;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 6px 12px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
  margin-top: 40px;
  height: 120px;
}


.profile-section {
  display: flex;
  align-items: center;
  flex: 1 1 60%;
  gap: 20px;
}

.avatar-wrapper {
  position: relative;
}

.avatar-wrapper img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #061938;
  color: rgb(90, 255, 241);
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 50%;
  font-size: 14px;
  transform: translate(25%, 25%);
  margin-bottom: 23px;
}

.text-content h3 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}

.text-content p {
  margin: 4px 0 0;
  color: #061e3b;
  font-weight: 400;
  font-size: 14px;
}

.button-section {
  flex: 1 1 30%;
  text-align: right;
  margin-right: 20px;
}

.cta-button {
  background-color: #afd6cb;
  border: 2px solid #051018;
  color: #051018;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button i {
  margin-right: 8px;
}

.cta-button:hover {
  background-color: #051018;
  color: #afd6cb;
}



@media (max-width: 600px) {
  .page2 {
    margin-top: 0;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
  }

  .head h1 {
    font-size: 1.8em;
  }

  .head p {
    font-size: 1em;
  }

  .features {
    display: flex;
    flex-wrap: nowrap;
    /* Keep in one row */
    overflow-x: auto;
    /* Enable horizontal scroll */
    gap: 20px;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    /* Optional snap */
    padding-bottom: 20px;
    margin-left: 0;
    scroll-behavior: smooth;
  }

  .feature-box {
    flex: 0 0 auto;
    width: 270px;            /* Keep compact width */
    height: auto;            /* <-- Let card height grow as needed */
    scroll-snap-align: start;
    white-space: normal;     /* <-- Wrap text properly */
    word-wrap: break-word;   /* <-- Handle long words */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

  }

  .features::-webkit-scrollbar {
    height: 6px;
  }

  .features::-webkit-scrollbar-thumb {
    background: #afd6cb;
    border-radius: 10px;
  }

  .features::-webkit-scrollbar-track {
    background: #051018;
  }

  .feature-box img {
    display: none;
  }

  .feature-box h3 {
    font-size: 1.3em;
  }

  .feature-box p {
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.5em;
    text-align: left;        /* or 'justify' for paragraph look */
  }
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
    height: auto;
    gap: 12px;
    border-radius: 12px;
  }

  .profile-section {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .avatar-wrapper img {
    height: 50px;
    width: 50px;
    margin-bottom: 0;
  }

  .badge {
    font-size: 10px;
    padding: 2px 5px;
    margin-bottom: 0;
  }

  .text-content h3 {
    font-size: 14px;
    margin-top: 0;
    font-weight: 600;
  }

  .text-content p {
    font-size: 12px;
    line-height: 1.3;
  }

  .button-section {
    text-align: left;
    width: 100%;
    margin-right: 0;
  }

  .cta-button {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 30px;
    width: fit-content;
  }
}



.page3 {
  min-height: 90vh;
  height: auto;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px 0;
  background-color: #f9f9f9;
  font-size: 15px;
  color: #0a0a0a;
  border-bottom: 1px solid #eee;
}

.top-bar div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar img {
  width: 24px;
  height: 24px;
}

.section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 80px;
}

.text-content {
  width: 50%;
}

.text-content h09 {
  color: #fafdfc;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-content h4 img {
  width: 18px;
  height: 18px;
}

.text-content h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 35px;
  color: #afd6cb;
}

.text-content h4 {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 42px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat img {
  width: 40px;
  height: 40px;
}

.stat-text h3 {
  font-size: 24px;
  color: #afd6cb;
  margin: 0;
}

.stat-text p {
  font-size: 14px;
  color: #afd6cb;
  margin: 0;
}

.btn-about {
  background-color: #afd6cb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-about:hover {
  background-color: #fff;
  color: #afd6cb;
}

.btn-about img {
  width: 16px;
  height: 16px;
}

.image-content {
  width: 45%;
  position: relative;
}

.circle-bg {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #afd6cb, #afd6cb);
  border-radius: 50%;
  position: relative;
  margin-left: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 0px rgba(98, 232, 232, 0.8);
}

.circle-bg:hover {
  box-shadow: 0 0 45px 20px #68f4fe;
  transform: scale(1.1) translateY(-5px);
  cursor: pointer;
}

.circle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


@media (max-width: 768px) {


  .page3 {
    min-height: auto;
    height: 70vh;
    padding: 20px 0;
    /* adjust based on visual need */
    background-color: #081b29;
    margin-bottom: 20px;
  }

  .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 8px;
    height: 1vh;

  }


  .section1 {
    flex-direction: column;
    gap: 20px;
    background-color: #081b29;
    height: 40vh;
    padding: 30px 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .text-content {
    width: 100%;
    padding-top: 20px;

  }

  .text-content h4 {
    font-size: 13px;
    color: #5eead4;
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
  }

  .text-content h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2dd4bf;
  }

  .text-content h09 {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 24px;
    display: block;
  }

  .stats {
    justify-content: center;
    gap: 20px;
  }

  .stat {
    flex: 1 1 100%;
    /* Stack if screen is extremely narrow */
    justify-content: center;
  }


  .stat img {
    width: 28px;
    height: 28px;
  }

  .stat-text h3 {
    font-size: 18px;
    color: #2dd4bf;
  }

  .stat-text p {
    font-size: 12px;
    color: #6fd0e1;
  }

  .btn-about {
    background-color: #2dd4bf;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .btn-about img {
    width: 14px;
    height: 14px;
  }

  .image-content {
    display: none !important;
  }

}



.section3 {
  height: 60vh;
  width: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px 10px;
}

.section3-header {
  text-align: center;
  margin-bottom: 80px;
}

.section3-header p {
  color: #74cef5;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
}

.section3-header h2 {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.process-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
}

.step {
  width: 22%;
  text-align: center;
  position: relative;
}

.step-top {
  transform: translateY(-40px);
}

.step-bottom {
  transform: translateY(40px);
}

.circle {
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid #84eefc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.circle:hover {
  box-shadow: 0 0 45px 20px #68f4fe
}

.circle img {
  width: 40px;
  height: 40px;
}

.step-title-top {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 15px;
}

.step-desc-top {
  font-size: 14px;
  color: #8ee7fb;
  margin-top: 5px;
}

.step-title-bottom {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 15px;
  transform: translateY(-185px);
}

.step-desc-bottom {
  font-size: 14px;
  color: #8ee7fb;
  margin-top: 5px;
  transform: translateY(-182px);
}

/* Connector lines between steps */
.connector {
  position: absolute;
  height: 2px;
  /* thickness */
  background: repeating-linear-gradient(45deg,
      #8ee7fb,
      #8ee7fb 2px,
      transparent 2px,
      transparent 6px);
  top: 50%;
  /* will be adjusted */
  left: 0;
  transform-origin: left center;
  z-index: 1;
  border-radius: 5px;
}

/* Connect step 1 (top) to step 2 (bottom) */
.connector-1 {
  top: 0.1%;
  width: 150px;
  left: calc(12.9% - 4px);
  /* slightly before step 1 circle right edge */
  transform: translateY(-50%) rotate(45deg);
}

/* Connect step 2 (bottom) to step 3 (top) */
.connector-2 {
  top: 39%;
  width: 150px;
  left: calc(32% - 50px);
  transform: translateY(-50%) rotate(-35deg);
}

/* Connect step 3 (top) to step 4 (bottom) */
.connector-3 {
  top: 0.1%;
  width: 160px;
  left: calc(45.6% - 4px);
  /* slightly before step 1 circle right edge */
  transform: translateY(-50%) rotate(45deg);
}

/* Connect step 4 (bottom) to step 5 (top) */
.connector-4 {
  top: 39%;
  width: 145px;
  left: calc(65.3% - 50px);
  transform: translateY(-50%) rotate(-35deg);
}

/* Connect step 4 (top) to step 5 (bottom) */
.connector-5 {
  top: 0.1%;
  width: 160px;
  left: calc(78.9% - 4px);
  /* slightly before step 1 circle right edge */
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .section3 {
    height: 95vh;
    margin-top: 0;
    padding-top: 0;
    background-color: #081b29;
  }

  .section3-header {
    text-align: center;
    margin-bottom: 10px;
  }

  .steps {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
  }

  .step {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px !important;
    transform: none !important;
  }

  .circle {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
    margin: 0 !important;
  }

  .circle img {
    width: 30px;
    height: 30px;
  }

  .step-title-top,
  .step-title-bottom {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transform: none;
  }

  .step-desc-top,
  .step-desc-bottom {
    font-size: 14px;
    color: #8ee7fb;
    margin: 4px 0 0 0;
    transform: none;
  }

  .step {
    flex-direction: row;
  }

  .connector {
    display: none;
  }

  .section3-header h2 {
    font-size: 28px;
  }
}



.page01 {
  height: 110vh;
  font-family: 'Segoe UI', sans-serif;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.video-section {
  position: relative;
  flex: 1 1 400px;
}



.video-section video {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 45px 20px #68f4fe
}

.content-section {
  flex: 1 1 500px;
}

.label {
  text-transform: uppercase;
  color: #68feea;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #65f4ed;
}

.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box1 {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #68f4fe;
  gap: 12px;
}

.feature-box1:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(94, 207, 245, 0.2);
}

.icon {
  width: 24px;
  height: 24px;
  color: #4f46e5;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 12px;
  color: #777;
}

.contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 2px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #f42642;
  font-weight: 500;
}

@media (max-width: 768px) {
  .page01 {
    flex-direction: column;
    padding: 0px 15px;
    height: auto;
    background-color: #081b29;
  }

  .video-section {
    display: none !important;
  }


  .content-section {
    flex: none;
    width: 100%;
  }

  .heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .features {
    grid-template-columns: 1fr;
    /* Stack features vertically */
    gap: 15px;
  }

  .feature-box1 {
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(104, 244, 254, 0.5);
  }

  .icon {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }

  .feature-text h4 {
    font-size: 13px;
  }

  .feature-text p {
    font-size: 11px;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact img {
    width: 35px;
    height: 35px;
  }

  .contact-info p,
  .phone {
    font-size: 12px;
  }
}



.page {
  background-color: #0F0D0D;
  min-height: 10vh;
  position: relative;
  z-index: 9;
}


#moving-div {

  margin-top: 10vh;
  position: absolute;
  bottom: 0.1%;
  margin-left: 17.5%;
  white-space: nowrap;
  padding: 1.2vw;
  overflow: hidden;
  width: 64%;


}

#moving-div .move {
  display: inline-block;
  animation-name: mobe;
  animation-duration: 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#moving-div .move img {
  height: 1.5vw;
  margin: 0 1.2vw;
}

@keyframes mobe {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }

}

#blur-left {
  height: 100%;
  width: 20%;
  background: linear-gradient(to right, #0F0D0D, transparent);

  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#blur-right {
  height: 100%;
  width: 20%;
  background: linear-gradient(to right, transparent, #0F0D0D);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}



.tilt:hover {
  transform: rotateX(3deg) rotateY(3deg);
}

.spin-loader {
  border: 4px solid #444;
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
  }

  .page {
    min-height: 6vh;
  }

  #moving-div {
    margin-left: 5%;
    width: 90%;
    padding: 8px;
    bottom: 0;
  }

  #moving-div .move img {
    height: 5vw;
    margin: 0 3vw;
  }

  #blur-left,
  #blur-right {
    width: 15%;
  }

  /* Reduce all text-related elements */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 90%;
  }

  p,
  span,
  li,
  a,
  label {
    font-size: 90%;
  }

  /* Optional: Reduce tilt effect size and spinner size */
  .tilt:hover {
    transform: rotateX(2deg) rotateY(2deg);
  }

  .spin-loader {
    width: 25px;
    height: 25px;
    border-width: 3px;
  }
}



.page7 {
  min-height: 100vh;
  width: 100%;
  position: relative;
  margin-top: 5%;
  font-family: 'Poppins', sans-serif;
}

.container1 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;

}

.box {
  position: relative;
  background-color: #1E1E1E;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.box .content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.box .content h1 {
  color: #FFFFFF;
  font-size: 32px;
}

.box .content p {
  color: #BBBBBB;
  margin-top: 10px;
}

.box .number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  color: #888888;
  z-index: 2;
}

.box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.box:hover video {
  opacity: 0.5;
}


.box1 {
  position: relative;
  background-color: #1E1E1E;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.box1 .content1 {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.box1 .content1 h1 {
  color: #FFFFFF;
  font-size: 32px;
}

.box1 .content1 p {
  color: #BBBBBB;
  margin-top: 10px;
}

.box1 .number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  color: #888888;
  z-index: 2;
}

.box1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.box1:hover video {
  opacity: 0.5;
}

.top-row .box {
  width: 30%;
  height: 300px;
}

.bottom-row .box1 {
  width: 45.3%;
  height: 250px;
  margin-top: 5px;
}



@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .top-row .box,
  .bottom-row .box1 {
    width: 90%;
    height: 200px;
  }

  .box .content h1,
  .box1 .content1 h1 {
    font-size: 20px;
  }

  .box .content p,
  .box1 .content1 p {
    font-size: 12px;
    margin-top: 8px;
  }

  .box .number,
  .box1 .number {
    font-size: 10px;
    bottom: 8px;
    right: 10px;
  }

  .box video,
  .box1 video {
    opacity: 0.4;
  }

  /* Optional: On mobile, videos are always slightly visible */
  .box:hover video,
  .box1:hover video {
    opacity: 0.6;
  }
}


.page4 {

  height: 210vh;
  width: 100%;
  font-family: 'Courier New', Courier, monospace;
  padding: 0;
  margin-top: 55px;
  position: relative;
  z-index: 9;
  border-bottom: 2px solid #6c6c6c;
}


.slider-container {
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.slider-item {
  flex: none;
  width: 250px;
  margin: 0 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}

.slider-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 50px rgba(152, 147, 147, 0.2);
  z-index: 5;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  .page4 {
    height: 200vh;
    margin-top: 30px;
    padding: 0;
  }

  .slider-item {
    width: 160px;
    margin: 0 10px;
  }

  .slider-item img {
    height: 100px;
    border-radius: 10px;
  }

  .slider-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(152, 147, 147, 0.2);
  }

  .slider-track {
    animation-duration: 30s;
    /* Slightly faster for small screens */
  }
}


#contact {
  margin-top: 40px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 10px 80px;
  margin-left: 45px;
  margin-right: 45px;
}

.contact-form p {
  color: #74f5d7;
  font-weight: 800;
  font-size: 20px;
  gap: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-left: 10px;
}

.contact-form {
  width: 650px;

}

.newsletter-box {
  margin-top: 30px;
  width: 320px;
  height: 320px;
  /* square shape */
  background: #053e42;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsletter-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.newsletter-box p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.input {
  background: #d4f0ec;
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  flex: 1;
}

.full {
  width: 100%;
  margin-bottom: 10px;
}

.textarea {
  height: 120px;
  resize: none;
  background: #d4f0ec;
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
}


.input1 {
  background: #ffffff;
  color: rgb(97, 94, 94);
  padding: 15px 25px;
  border: none;
  border-radius: 20px;
  margin-top: 00px;

}

.submit-btn {
  background: #6aa9a1;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: white;
  color: #6aa9a1;
  box-shadow: 0 0 10px 6px #68f4fe
}

.submit-btn.dark {
  background: #08826e;
  color: #ffffff;
}

.submit-btn.dark:hover {
  background: #ffffff;
  color: #094f42;
  box-shadow: 0 0 10px 6px #68f4fe
}

.cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.card .icon {
  font-size: 30px;
  margin-bottom: 20px;
  margin-left: 115px;
}

.card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
}

.teal {
  background: #d0f1f0;
}

.blue {
  background: #d8f9f4;
}

.white {
  background: #cbfffd;
}


@media (max-width: 768px) {
  #contact {
    flex-direction: column;
    padding: 20px;
    margin: 20px;
    gap: 20px;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form p {
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .input,
  .textarea,
  .input1 {
    width: 100%;
    padding: 12px;
  }

  .submit-btn {
    width: 100%;
    padding: 12px;
  }

  .newsletter-box {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .newsletter-box h2 {
    font-size: 18px;
  }

  .newsletter-box p {
    font-size: 13px;
  }

  .cards {
    flex-direction: column;
    gap: 15px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }

  .card .icon {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .card h4 {
    font-size: 14px;
  }

  .card p {
    font-size: 12px;
  }
}


/* Location Section */
iframe {
  width: 100%;
  max-width: 1100px;
  height: 300px;
  border: 10px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.marquee {
  font-size: 98rem;
  font-weight: bold;
}


@media (max-width: 768px) {
  iframe {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  }

  .marquee {
    font-size: 3rem;
    text-align: center;
  }

  .location-section {
    padding: 10px 20px;
  }
}



/* Footer Styling */
.footer {
  background-color: #0f0f0f;
  color: #fff;
 padding-bottom: 40vh;
 padding-top: 10vh;
  font-family: 'Poppins', sans-serif;
  padding-right: 20px;
  padding-left: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 12px;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #333;
  margin: 30px 0;
}

/* Bottom */
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 12px;
  margin-top: 10px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
  font-size: 18px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

  .footer {
   padding-bottom: 6vh;
   padding-top: 2vh;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}
