/* =====================
   GLOBAL STYLES
===================== */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  background: linear-gradient(90deg, #0b2c4d, #143d6b);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 22px;
  letter-spacing: 1px;
}

.nav-link {
  color: #fff !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ffc107 !important;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 100vh;
  background: linear-gradient(120deg, #0b2c4d, #143d6b);
  display: flex;
  align-items: center;
}

.hero h1 {
  animation: fadeDown 1.2s ease-in-out;
}

.hero p {
  animation: fadeUp 1.2s ease-in-out;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #0b2c4d;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* =====================
   SERVICES LIST
===================== */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 12px 15px;
  font-size: 18px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-left: 5px solid #0b2c4d;
  transition: 0.3s;
}

.service-list li:hover {
  background: #0b2c4d;
  color: #fff;
  transform: translateX(8px);
}

/* =====================
   CARDS (Training, Work, Testimonials)
===================== */
.card {
  border-radius: 18px;
  border: none;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  background: #fff;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(11, 44, 77, 0.25);
}

/* =====================
   TESTIMONIALS
===================== */
#testimonials .card {
  font-style: italic;
}

#testimonials strong {
  display: block;
  margin-top: 15px;
  color: #0b2c4d;
}

/* =====================
   CONTACT SECTION (UPDATED UI)
===================== */
.contact-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  border: none;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(11, 44, 77, 0.25);
}

.contact-icon {
  font-size: 42px;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 16px;
  margin: 0;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: linear-gradient(90deg, #0b2c4d, #143d6b);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* =====================
   WHATSAPP FLOAT BUTTON
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: white;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   RESPONSIVE FIXES
===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}


/* =====================
   OUR WORK SECTION
===================== */
.work-link {
  text-decoration: none;
  color: inherit;
}

.work-card {
  padding: 35px 25px;
  border-radius: 18px;
  border: none;
  transition: 0.4s;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.work-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(11, 44, 77, 0.25);
}

.work-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b2c4d;
}

.work-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.work-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #0b2c4d;
  color: #fff;
}

.app-tag {
  background: #198754;
}



/* About Us Image */
.about-img {
  max-width: 90%;
  border-radius: 18px;
}
