:root {
   --bg-color: #050505;
   --text-color: #ffffff;
   --accent-color: #db2777;
   /* Pink/Rose matching lottery vibe or tech vibe */
   --secondary-color: #8b5cf6;
   /* Violet */
   --glass-bg: rgba(255, 255, 255, 0.03);
   --border-color: rgba(255, 255, 255, 0.1);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Roboto', sans-serif;
   background-color: var(--bg-color);
   color: var(--text-color);
   line-height: 1.6;
   overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes float {
   0% {
      transform: translateY(0px);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0px);
   }
}

@keyframes glow {
   0% {
      box-shadow: 0 0 5px rgba(219, 39, 119, 0.2);
   }

   50% {
      box-shadow: 0 0 20px rgba(219, 39, 119, 0.6);
   }

   100% {
      box-shadow: 0 0 5px rgba(219, 39, 119, 0.2);
   }
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* Header / Nav */
header {
   padding: 20px 0;
   position: absolute;
   width: 100%;
   top: 0;
   z-index: 100;
}

.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-text {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: var(--text-color);
   text-decoration: none;
}

/* Hero Section */
.hero {
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   position: relative;
   background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

/* Subtle background grid */
.hero::before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
   background-size: 50px 50px;
   z-index: 0;
   pointer-events: none;
}

.hero-content {
   z-index: 1;
   max-width: 800px;
   padding: 20px;
   animation: fadeIn 1s ease-out;
}

.hero-logo {
   max-width: 180px;
   margin-bottom: 30px;
   animation: float 6s ease-in-out infinite;
   /* Blend white background: Circle shape + White Glow */
   border-radius: 50%;
   box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
   border: 5px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
   font-size: 3.5rem;
   font-weight: 900;
   margin-bottom: 20px;
   background: linear-gradient(135deg, #fff 0%, #ccc 100%);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   letter-spacing: -1px;
}

.hero .highlight {
   background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.hero p {
   font-size: 1.25rem;
   color: #a3a3a3;
   margin-bottom: 40px;
   font-weight: 300;
}

.btn-cta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
   /* WhatsApp Colors */
   color: white;
   padding: 15px 35px;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   font-size: 1.1rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-cta i {
   font-size: 1.4rem;
}

/* Services Section */
.services {
   padding: 100px 0;
   background: #050505;
}

.section-title {
   text-align: center;
   margin-bottom: 60px;
   font-size: 2.5rem;
   font-weight: 700;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   align-items: stretch;
   /* Ensure equal height */
}

/* Highlighted Service Card (Maintenance) */
.service-card.highlight-card {
   border-color: var(--accent-color);
   background: linear-gradient(180deg, rgba(219, 39, 119, 0.05) 0%, rgba(219, 39, 119, 0) 100%);
   box-shadow: 0 10px 40px rgba(219, 39, 119, 0.1);
   transform: scale(1.05);
   /* Make it pop out */
   z-index: 10;
}

.service-card.highlight-card .service-icon {
   color: #fff;
   background: var(--accent-color);
   width: 60px;
   height: 60px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   box-shadow: 0 5px 15px rgba(219, 39, 119, 0.4);
   font-size: 1.8rem;
}

.service-card {
   background: var(--glass-bg);
   border: 1px solid var(--border-color);
   padding: 40px;
   border-radius: 20px;
   transition: all 0.3s ease;
   backdrop-filter: blur(10px);
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.service-card:hover {
   transform: translateY(-10px);
   border-color: var(--accent-color);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
   font-size: 2.5rem;
   color: var(--accent-color);
   margin-bottom: 20px;
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom: 15px;
}

.service-card p {
   color: #a3a3a3;
   font-weight: 300;
}

/* Footer */
footer {
   padding: 50px 0;
   text-align: center;
   background: #0a0a0a;
   border-top: 1px solid var(--border-color);
   color: #666;
}

/* Responsive */
@media (max-width: 768px) {
   .hero h1 {
      font-size: 2.5rem;
   }

   .hero p {
      font-size: 1.1rem;
   }
}