/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050816;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.bg-top {
  position: fixed;
  top: 0;
  width: 100%;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent);
  z-index: -1;
}

.bg-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(251,191,36,0.1);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #fbbf24, #2563eb);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.logo-title {
  font-size: 28px;
  color: #fbbf24;
}

.logo-subtitle {
  font-size: 12px;
  color: #ccc;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fbbf24;
}

/* Hero */

.hero {
  padding: 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fbbf24;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 70px;
  line-height: 1.1;
}

.hero-title span {
  color: #60a5fa;
}

.hero-text {
  margin-top: 25px;
  color: #ccc;
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  padding: 18px 35px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.whatsapp-btn {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-card h3 {
  font-size: 40px;
  color: #fbbf24;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 40px;
}

.hero-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0,0,0,0.6);
  padding: 25px;
  border-radius: 25px;
}

.overlay-title {
  color: #fbbf24;
  font-size: 22px;
  font-weight: bold;
}

/* Services */

.services {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 50px;
  margin-top: 20px;
}

.section-text {
  margin-top: 20px;
  color: #ccc;
  line-height: 1.8;
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #fbbf24;
  margin-bottom: 15px;
}

/* About */

.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px;
}

.left {
  text-align: left;
}

.about-text {
  margin-top: 25px;
  color: #ccc;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-card {
  padding: 30px;
  border-radius: 25px;
  text-align: center;
}

.blue-card {
  background: rgba(59,130,246,0.1);
}

.gold-card {
  background: rgba(251,191,36,0.1);
}

.about-card h3 {
  font-size: 40px;
}

/* Contact */

.contact {
  padding: 100px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 40px;
  background: rgba(255,255,255,0.05);
}

.contact-left {
  padding: 50px;
}

.contact-text {
  margin-top: 20px;
  color: #ccc;
  line-height: 1.8;
}

.contact-info {
  margin-top: 30px;
}

.contact-info div {
  padding: 20px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
}

.map-box {
  min-height: 500px;
}

/* Footer */

.footer {
  text-align: center;
  padding: 30px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  background: #22c55e;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive */

@media (max-width: 992px) {

  .hero-grid,
  .about-grid,
  .contact-box,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 45px;
  }

  .nav-links {
    display: none;
  }

}