/* style.css - Dark Luxury Corporate Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B1120;
  color: #F9FAFB;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, .heading-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111827;
}
::-webkit-scrollbar-thumb {
  background: #2563EB;
  border-radius: 10px;
}

/* Glassmorphism Core */
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
  border-color: rgba(37,99,235,0.4);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(6,182,212,0.4);
  background: linear-gradient(90deg, #1E4BD2, #05a0b5);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-outline-light:hover {
  border-color: #06B6D4;
  background: rgba(6,182,212,0.1);
  color: #06B6D4;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

/* Hero Background Effects */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: radial-gradient(circle at 20% 40%, rgba(37,99,235,0.15), transparent 50%);
}
.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent);
  filter: blur(60px);
  animation: floatGlow 12s infinite alternate;
}
@keyframes floatGlow {
  0% { transform: translate(0,0) scale(1); opacity: 0.4; }
  100% { transform: translate(30px, -30px) scale(1.2); opacity: 0.8; }
}
.grid-pattern {
  background-image: linear-gradient(rgba(37,99,235,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h2 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: #F9FAFB;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #06B6D4;
}
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-icons a {
  color: white;
  font-size: 1.3rem;
}
.mobile-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: #0B1120dd;
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
    gap: 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    left: 0;
  }
  .mobile-menu {
    display: block;
  }
  .nav-icons {
    margin-left: auto;
    margin-right: 20px;
  }
}

/* Hero Layout */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-left p {
  color: #94A3B8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.floating-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 380px;
}
.float-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(6,182,212,0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatY 4s infinite alternate ease-in-out;
}
.float-card:nth-child(2) { animation-delay: 0.6s; }
.float-card:nth-child(3) { animation-delay: 1.2s; }
@keyframes floatY {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}
.float-card i {
  font-size: 2rem;
  color: #06B6D4;
}

/* Services, Products, Why Grids */
.services-grid, .product-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  text-align: center;
  padding: 35px 20px;
}
.service-card i {
  font-size: 3rem;
  color: #06B6D4;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.service-card:hover i {
  transform: rotateY(180deg);
}

/* Product Card */
.product-card {
  background: #111827;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.5);
  border-color: #2563EB;
}
.product-img {
  height: 220px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img i {
  font-size: 4.2rem;
  color: #06B6D4;
  transition: 0.3s;
}
.product-card:hover .product-img i {
  transform: scale(1.1);
  color: #3b82f6;
}
.product-info {
  padding: 20px;
}
.product-info h4 {
  font-size: 1.3rem;
}
.product-info p {
  color: #94A3B8;
  margin: 10px 0;
}
.view-link {
  color: #06B6D4;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Why Choose Us (Counters) */
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  transition: 0.2s;
}
.stat-card .counter {
  font-size: 3rem;
  font-weight: 800;
  color: #06B6D4;
}

/* About Section Split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 32px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 30px -15px black;
}
.about-img i {
  font-size: 7rem;
  color: #2563EB;
  opacity: 0.8;
}
.feature-list {
  list-style: none;
  margin-top: 20px;
}
.feature-list li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list i {
  color: #06B6D4;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial-card {
  padding: 28px;
}
.stars i {
  color: #fbbf24;
  margin-right: 2px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #111827;
  border: 1px solid #2d3a5e;
  border-radius: 28px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #06B6D4;
  box-shadow: 0 0 10px rgba(6,182,212,0.5);
}
.info-item {
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
}
.map-placeholder {
  background: #111827;
  border-radius: 28px;
  overflow: hidden;
  height: 220px;
  margin-top: 25px;
}

/* Footer */
footer {
  background: #0A0F1A;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  margin-bottom: 20px;
}
.footer-col a {
  color: #94A3B8;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: 0.2s;
}
.footer-col a:hover {
  color: #06B6D4;
  transform: translateX(4px);
}
.social-icons a {
  display: inline-block;
  margin-right: 18px;
  font-size: 1.4rem;
}
.copyright {
  text-align: center;
  padding-top: 40px;
  color: #5f6c84;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99;
  transition: 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #20b85f;
}

/* Scroll Reveal */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 850px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-left h1 {
    font-size: 2.4rem;
  }
  section {
    padding: 60px 0;
  }
}
/* Attractive Navbar Icons */
.nav-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.nav-icons a i {
  font-size: 1.3rem;
  transition: 0.2s;
}

/* WhatsApp Icon */
.nav-icons a.icon-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 15px #25D366;
  transform: scale(1.1);
}
.nav-icons a.icon-wa:hover i {
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Call Icon */
.nav-icons a.icon-call:hover {
  background: #2563EB;
  border-color: #06B6D4;
  box-shadow: 0 0 15px #2563EB;
  transform: scale(1.1);
}
.nav-icons a.icon-call:hover i {
  color: white;
}

/* Optional: pulse animation for attention */
@keyframes softPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.nav-icons a.icon-call {
  animation: softPulse 2s infinite;
}
.nav-icons a.icon-wa {
  animation: softPulse 2s infinite 0.3s;
}