/* GENERAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0e14;
  color: #f2f4f8;
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(76,201,240,0.18), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  width: 100%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 25px;
}

.hero-content span {
  color: #4cc9f0;
}

.hero-content p {
  color: #b6bdc9;
  max-width: 700px;
  margin-bottom: 40px;
}

/* BUTTON */
.btn {
  padding: 15px 42px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #3abeff, #4cc9f0);
  color: #000;
  box-shadow: 0 0 30px rgba(76,201,240,0.45);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(76,201,240,0.75);
}

/* GLOBE */
.hero-visual {
  display: flex;
  justify-content: center;
}

.globe {
  width: 320px;
  height: 320px;
  position: relative;
}

.globe-core {
  inset: 0;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at top, #4cc9f0, #0b0e14 65%);
  box-shadow: 0 0 50px rgba(76,201,240,0.6);
}

.orbit {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(76,201,240,0.35);
  animation: rotate 20s linear infinite;
}

.orbit-2 { inset: -55px; animation-duration: 30s; }
.orbit-3 { inset: -80px; animation-duration: 45s; }

/* FEATURES */
.about {
  padding: 120px 8%;
  background: #0f1422;
}

.about h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.features-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: linear-gradient(180deg, #131a2a, #0f1422);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(76,201,240,0.2);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(76,201,240,0.35);
}

.feature-box h3 {
  margin-bottom: 14px;
  color: #ffffff;
}

/* CONTACT SECTION */
.contact-section {
  padding: 120px 8%;
  text-align: center;
  background: linear-gradient(180deg, transparent, #0f1422);
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section p {
  margin-bottom: 50px;
  color: #b6bdc9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-item {
  background: #0f1422;
  padding: 20px 30px;
  border-radius: 14px;
  border: 1px solid rgba(76,201,240,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
}

.contact-item .icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* FOOTER */
footer {
  padding: 50px;
  text-align: center;
  color: #8b92a3;
  border-top: 1px solid #1a2133;
  font-size: 0.95rem;
}

/* ANIMATIONS */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 25px;
  }
}
.contact-item .icon img {
  width: 22px; 
  height: 22px;
  display: block;
}
.contact-item a {
  color: #4cc9f0;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}
.contact-item a {
  color: #4cc9f0;          /* matches theme */
  text-decoration: none;    /* remove underline */
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline; /* subtle hover effect */
}