/* ===============================
   GLOBAL
================================ */
body {
  font-family: "Poppins", sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
}

.text-sky {
  color: #00bfff;
}

.text-gradient {
  background: linear-gradient(90deg, #00bfff, #66d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-sky {
  background: #00bfff;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-sky:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

.btn-outline-sky {
  border: 2px solid #00bfff;
  color: #00bfff;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-outline-sky:hover {
  background: #00bfff;
  color: #fff;
}

/* ===============================
   NAVBAR
================================ */

/* Brand / logo text */
.logo-text {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logo-text .company-name {
  font-size: 2rem;
  letter-spacing: 1.5px;
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
  font-family: "Orbitron", sans-serif; /* Futuristic font */
}

/* Indo (Bold Blue) */
.logo-text .indo {
  color: #00bfff; /* Bootstrap primary blue */
  font-weight: 700;
  text-shadow: 0 0 6px rgba(13, 110, 253, 0.2);
  transition: all 0.3s ease-in-out;
  animation: indoIn 0.6s ease both;
}

/* Ryque (Elegant White) */
.logo-text .ryque {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
  animation: ryqueIn 0.6s ease both;
  animation-delay: 0.15s;
}

/* Hover effects */
.logo-text .indo:hover {
  color: #3d8bfd;
  transform: scale(1.05);
  text-shadow: 0 0 12px rgba(13, 110, 253, 0.8);
}
.logo-text .ryque:hover {
  color: #f5f5f5;
  transform: scale(1.05);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

/* Tagline */
.logo-text .tagline {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #d1d9e6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  display: inline-block;
}

/* Logo image animation */
.logo-img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Entrance animations */
@keyframes indoIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes ryqueIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .logo-text .company-name {
    font-size: 1.5rem;
  }
  .logo-img {
    height: 60px;
  }
  .logo-text .tagline {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
}

.navbar-nav .nav-link {
  color: #e0e0e0 !important;
  margin: 0 10px;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00bfff !important;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

/* ===============================
   HERO
================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000 50%, #001f33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===============================
   SERVICES SECTION
================================ */
#services .info-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 25px;
}

#services .info-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #00bfff;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

#services .info-card h5 {
  margin-bottom: 12px;
  font-weight: 700;
  color: #00bfff;
}

/* ===============================
   CREATIVE INFO CARDS
================================ */
.info-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
  padding: 30px;
  border-radius: 18px;
  transition: all 0.4s ease;
  color: #ccc;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at top left,
    rgba(0, 191, 255, 0.1),
    transparent 60%
  );
  transform: rotate(25deg);
  transition: opacity 0.5s ease;
  opacity: 0;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #00bfff;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.info-card h5 {
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-card:hover {
  background: linear-gradient(145deg, #111, #1c1c1c);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.3);
}

/* ===============================
   TEAM CARDS - PREMIUM STYLE
================================ */
#team .card {
  background: linear-gradient(160deg, #121212, #1e1e1e);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.15);
}

#team .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 191, 255, 0.35);
}

#team .card img {
  border-bottom: 3px solid #00bfff;
  border-radius: 18px 18px 0 0;
}

#team h5 {
  color: #00bfff;
  font-weight: 700;
}

#team p {
  font-size: 0.95rem;
  color: #bbb;
}

/* Team card */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/* Team images */
.team-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0d6efd;
  transition: transform 0.3s ease;
}
.team-card:hover .team-img {
  transform: scale(1.05);
}

/* Text styling */
.team-info h5 {
  font-size: 1.2rem;
  font-weight: 600;
}
.team-info p {
  margin-bottom: 0.4rem;
}

/* Social icons */
.social-icons a {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive (stack vertically on small screens) */
/* @media (max-width: 768px) { */
  .team-card {
    flex-direction: column;
    text-align: center;
  }
  .team-img {
    margin-bottom: 12px;
  }
  .team-info {
    margin-left: 0 !important;
  }
/* } */

/* ===============================
   FOOTER
================================ */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
}

footer a {
  color: #00bfff;
  text-decoration: none;
}

footer a:hover {
  color: #66d9ff;
}
