/**
 * Failed to minify the file using clean-css v5.3.3. Serving the original version.
 * Original file: /npm/@finsweet/3dglobes@1.0.0/styles.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
.logo {
  display: flex;
  justify-content: center;
}

.canvas-3dglobe-container {
  width: 100%;
  /* let our container decide our size */
  height: 100%;
  display: block;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /* mobile webkit */
}

.fs-3dglobe-container {
  position: relative;
  /* makes this the origin of its children */
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: ;
}

.fs-3dglobe-labels {
  position: absolute;
  /* let us position ourself inside the container */
  z-index: 0;
  /* make a new stacking context so children don't sort with rest of page */
  left: 0;
  /* make our position the top left of the container */
  top: 0;
  color: white;
}

.fs-3dglobe-labels>div {
  position: absolute;
  /* let us position them inside the container */
  left: 0;
  /* make their default position the top left of the container */
  top: 0;
  cursor: pointer;
  /* change the cursor to a hand when over us */
  font-size: small;
  user-select: none;
  /* don't let the text get selected */
  /* pointer-events: none;   make us invisible to the pointer */
  /* text-shadow:         create a black outline */
  /* -1px -1px 0 #000,
         0   -1px 0 #000,
         1px -1px 0 #000,
         1px  0   0 #000,
         1px  1px 0 #000,
         0    1px 0 #000,
         -1px  1px 0 #000,
         -1px  0   0 #000; */
}

/* #labels>div:hover {
         color: red;
         }
         */
.fs-3dglobe-arrow-box {
  margin-top: -118%;
}

div.fs-3dglobe-arrow_box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 5px #fff;
  cursor: pointer;
  overflow: hidden;
}

.fs-3dglobe-arrow_box:after {
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-width: 15px;
  z-index: 10;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
}

.fs-3dglobe-info-box {
  display: none;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  overflow: hidden;
  z-index: 10;
}

.fs-3dglobe-labels>div:hover .fs-3dglobe-info-box {
  display: block;
  cursor: pointer;
}

.finsweet-globe {
  height: 100%;
  width: 100%;
}

//For Menu Header
.container-nav-bar {
  padding: 10px 20px;
}

.nav-menu-3 {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  padding: 35px;
}

.nav-menu-3 a {
  color: #000000!important;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu-3 a:hover {
  color: #ff6600;
}
.nav-link-2.active {
    position: relative;
}

.nav-link-2.active::after {
    content: "";
    position: absolute;
    bottom: -3px; /* distance from text */
    left: 0;
    width: 100%;
    height: 2px;  /* thickness of underline */
    background: #000; /* underline color */
}

/* ✅ Mobile Styles */
@media (max-width: 768px) {
  .nav-menu-3 {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
  }

  .nav-menu-3.active {
    display: flex;
  }

  .menu-toggle {
    font-size: 30px;
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 35px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
      font-family: "Poppins", sans-serif;
      overflow-x: hidden;
    } */

/* ===== SLIDER SECTION ===== */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
}

.slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== DARK OVERLAY ===== */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  /* darker for strong visibility */
  z-index: 0;
}

/* ===== SLIDE CONTENT ===== */
.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 700px;
  width: 90%;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
  animation: fadeIn 1s ease;
}

.slide-content h3 {
  font-size: 1.3rem;
  color: #ffdd57;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f2f2f2;
}

.slide-content a {
  display: inline-block;
  padding: 12px 30px;
  background: #ffdd57;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slide-content a:hover {
  background: #fff;
  color: #000;
}

/* ===== BUTTONS ===== */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* ===== DOTS ===== */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #ffdd57;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content h3 {
    font-size: 1.1rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .slide-content a {
    padding: 10px 20px;
  }

  .btn {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.85rem;
  }

  .slide-content a {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

body {
  overflow-x: hidden;
}

/* 🌐 Globe Section Layout */
.Globe-Section {
  background: radial-gradient(circle at center, #0b0b0b, #000);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.Globe-Section .Text-part {
  padding-right: 30px;
}

.Globe-Section .Text-part h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.Globe-Section .Text-part p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 25px;
}

.Globe-Section .Text-part a {
  background: linear-gradient(90deg, #007bff, #00c3ff);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.Globe-Section .Text-part a:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #005be8, #00aaff);
}

/* 🌍 Globe Container */
.globe {
  position: relative;
  width: 100%;
  height: 480px;
}

#globeViz {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#globeViz.hover-country {
  cursor: pointer;
}

/* 🧭 Info Card */
#infoCard {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 260px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #fff;
}

#infoCard.show {
  opacity: 1;
  transform: translateY(0);
}

#infoCard h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

#infoCard img {
  width: 100%;
  border-radius: 8px;
  margin: 8px 0;
}

#infoCard p {
  font-size: 13px;
  margin: 3px 0;
  line-height: 1.3;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .Globe-Section {
    padding: 50px 10px;
    text-align: center;
  }

  .Globe-Section .Text-part {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .Globe-Section .Text-part h1 {
    font-size: 24px;
  }

  .Globe-Section .Text-part p {
    font-size: 16px;
  }

  .globe {
    height: 400px;
  }

  #infoCard {
    top: auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    width: 85%;
    text-align: center;
    padding: 10px;
  }
}