/* ===== Brand Colors =====
Primary gradient: #00C9FF → #A100FF
Secondary (navy): #1A1A2E
*/

:root {
  --navy: #1A1A2E;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-2: rgba(26, 26, 46, 0.85);
  --text-gradient: linear-gradient(90deg, #00C9FF 0%, #A100FF 100%);
}

html, body {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

.bg-navy {
  background-color: var(--navy) !important;
}

/* ===== NAVBAR ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

.navbar {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 10px;
}

.navbar-brand span {
  color: #fff !important;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.navbar-brand span:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  opacity: 0.95;
}

/* ===== BUTTONS ===== */
.btn-gradient {
  background-image: var(--text-gradient);
  color: #fff;
  border: 0;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: scale(1.03);
  transition: all 0.3s ease;
  color: #fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: 0;
  font-weight: 600;
  border-radius: 8px;
}

.btn-whatsapp i {
  margin-right: 6px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.03);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 6.5rem;
  padding-bottom: 5rem;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(161, 0, 255, 0.35), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(0, 201, 255, 0.35), transparent 60%),
              linear-gradient(180deg, #1a1a2e 0%, #11131f 100%);
  position: relative;
  color: #fff;
}

.hero-card {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
}

/* Tagline fixed back to original alignment */
.hero-card h5 {
  text-align: left;
}

.hero-card small {
  color: #ccc;
  text-align: left;
}

/* Decorative shapes */
.shape {
  position: absolute;
  filter: blur(20px);
  opacity: 0.35;
  pointer-events: none;
}

.shape-1 {
  width: 240px;
  height: 240px;
  background: #A100FF;
  border-radius: 24px;
  top: -40px;
  right: -40px;
  transform: rotate(25deg);
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: #00C9FF;
  border-radius: 24px;
  bottom: -40px;
  left: -20px;
  transform: rotate(-12deg);
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: #6a00ff;
  border-radius: 18px;
  bottom: 20%;
  right: 20%;
  transform: rotate(8deg);
}

/* ===== SECTIONS ===== */
section {
  scroll-margin-top: 6rem;
}

.badge.bg-gradient {
  background-image: var(--text-gradient);
}

/* ===== SERVICES (restored layout) ===== */
#services {
  background-color: #f9fafc;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  display: block;
  font-size: 2.4rem;
  color: #6f00ff;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about-card {
  background: #fff;
}

.stat-box {
  background: #f6f7fb;
}

/* ===== TEAM ===== */
.team-card {
  background: #fff;
  height: 100%;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== CONTACT ===== */
.bg-glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.bg-glass-2 {
  background: var(--glass-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  color: #fff;
  opacity: 0.85;
}

/* ===== FOOTER ===== */
footer a:hover {
  text-decoration: underline;
}

.opacity-90 {
  opacity: 0.9;
}
