* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 80px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

.navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #2563eb;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #2563eb;
}

.navbar nav a:hover::after {
  width: 100%;
}

/*Badge*/
.badge {
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.stats {
  margin: 15px 0;
  color: #555;
  font-size: 14px;
}

.stats span {
  margin-right: 15px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #1e3a8a;
}

.hero-text p {
  margin-bottom: 25px;
  color: #555;
}


/* BUTTONS */
.btn {
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.buttons {
  margin-top: 10px;
}

/* Primary button */
.primary {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Secondary button */
.secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

/* IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  transition: 0.4s;
}

.hero-image img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* ================= SERVICES ================= */

.services {
  padding: 80px 50px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* CARD GRID */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* ICON */
.icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TEXT */
.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 14px;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ================= ABOUT ================= */

.about {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 80px 50px;
  background: white;
  border-radius: 20px;
  margin: 40px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.features li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #1e3a8a;
}

/* IMAGE */
.about-image img {
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* TEXT */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
}

.about-text ul {
  margin-bottom: 20px;
}

.about-text ul li {
  margin-bottom: 8px;
  color: #333;
}

/* ================= CTA ================= */

.cta {
  margin: 60px 40px;
  padding: 70px 20px;
  text-align: center;
  border-radius: 20px;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
  color: #e0e7ff;
}

/* button override */
.cta .primary {
  background: white;
  color: #2563eb;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.cta .primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-badge {
  font-size: 14px;
  margin-bottom: 10px;
  color: #181818;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ================= CONTACT ================= */

.contact {
  padding: 80px 50px;
  text-align: center;
  background: #f8fafc;
  border-radius: 20px;
  margin: 40px;

}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  text-align: left;
  font-size: 16px;
  color: #444;
}

.contact-info p {
  margin-bottom: 18px;
  font-size: 15px;
}

/* FORM */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

/* focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
}

.contact-form:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* ================= FOOTER ================= */

.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 50px 40px 20px;
}

/* layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* columns */
.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-col p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* links */
.footer-col a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #60a5fa;
}

/* bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

/*Mobile responsive*/
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 30px;
  }

  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .services {
    padding: 60px 20px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {

  .about {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {

  .cta {
    margin: 40px 20px;
    padding: 50px 20px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact-info {
    text-align: center;
  }
}

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer {
    padding: 40px 20px;
  }
}