/* assets/css/style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  max-height: 100px;
  object-fit: contain;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #007BFF;
}
.header-cta .btn {
  background: #007BFF;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  background: #eaf1fc;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.hero .text {
  flex: 1 1 45%;
}
.hero .text h1 {
  font-size: 2.5rem;
  color: #0a0a23;
}
.hero .text p {
  margin: 20px 0;
}
.hero .btn {
  background: #007BFF;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
}
.hero .image img {
  max-width: 100%;
  height: auto;
}

/* About */
.about {
  padding: 60px 20px;
  background: #fff;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a0a23;
}

/* Services */
.services {
  padding: 60px 20px;
  background: #f4f6fa;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
.floating-whatsapp img {
  height: 60px;
}

/* Footer */
.site-footer {
  background: #101010;
  color: #ccc;
  padding: 40px 20px 20px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-left {
  flex: 1 1 300px;
}
.footer-logo {
  height: 90px;
  max-height: 100px;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-contact p {
  margin: 6px 0;
}
.footer-socials a img {
  width: 24px;
  margin-right: 10px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 10px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .header-cta {
    margin-top: 10px;
  }
}


.marquee-heading {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-heading h2 {
  display: inline-block;
  animation: marquee-bounce 6s linear infinite alternate;
}

@keyframes marquee-bounce {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
