        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #0a192f;
        }

        .hero {
            position: relative;
            height: 170vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
        }

        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            transform: scale(1.1);
        }

        .slide.active {
            opacity: 0.2;
            transform: scale(1);
        }

        .hero-inner {
            position: relative;
            z-index: 3;
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: white;
            padding: 2rem;
        }

        .hero-left {
            flex: 1;
            min-width: 300px;
            padding-right: 2rem;
        }

        .hero-right {
            flex: 0 0 300px;
        }

        .hero h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #64ffda, #a8ff78, #64ffda);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: glowMove 4s ease-in-out infinite, floatText 6s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
            position: relative;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #ccd6f6;
            animation: subtleGlow 5s ease-in-out infinite, floatText 8s ease-in-out infinite;
            position: relative;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            animation: btnGlow 3s ease-in-out infinite;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-accent {
            background: linear-gradient(45deg, #64ffda, #00b894);
            color: #0a192f;
        }

        .btn-primary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: #64ffda;
            border: 1px solid rgba(100, 255, 218, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-accent:hover {
            background: linear-gradient(45deg, #52e0c4, #00a085);
        }

        .btn-primary:hover {
            background: rgba(100, 255, 218, 0.1);
        }

        .fa-box {
            margin-right: 8px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(100, 255, 218, 0.2);
            animation: cardGlow 6s ease-in-out infinite, floatCard 10s ease-in-out infinite;
            position: relative;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #64ffda, #a8ff78, #64ffda);
            border-radius: 17px;
            z-index: -1;
            opacity: 0;
            animation: borderGlow 4s ease-in-out infinite;
        }

        .contact-card strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #64ffda;
            animation: textPulse 3s ease-in-out infinite;
        }

        .contact-card div {
            margin: 0.5rem 0;
            font-size: 1.1rem;
            color: #ccd6f6;
        }

        /* Animations */
        @keyframes glowMove {
            0%, 100% {
                background-position: 0% 50%;
                text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
            }
            50% {
                background-position: 100% 50%;
                text-shadow: 0 0 30px rgba(100, 255, 218, 0.6), 0 0 40px rgba(100, 255, 218, 0.4);
            }
        }

        @keyframes subtleGlow {
            0%, 100% {
                text-shadow: 0 0 5px rgba(204, 214, 246, 0.3);
            }
            50% {
                text-shadow: 0 0 15px rgba(204, 214, 246, 0.6), 0 0 20px rgba(204, 214, 246, 0.4);
            }
        }

        @keyframes floatText {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0) rotate(0.5deg);
            }
            25% {
                transform: translateY(-3px) rotate(-0.5deg);
            }
            50% {
                transform: translateY(-5px) rotate(0.5deg);
            }
            75% {
                transform: translateY(-3px) rotate(-0.5deg);
            }
        }

        @keyframes btnGlow {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }
            50% {
                box-shadow: 0 4px 20px rgba(100, 255, 218, 0.4);
            }
        }

        @keyframes cardGlow {
            0%, 100% {
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            }
            50% {
                box-shadow: 0 8px 32px rgba(100, 255, 218, 0.3);
            }
        }

        @keyframes borderGlow {
            0%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes textPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        /* Floating particles for background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(100, 255, 218, 0.3);
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .hero-inner {
                flex-direction: column;
                text-align: center;
            }

            .hero-left {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .hero-right {
                flex: 0 0 auto;
            }

            .hero h2 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .contact-card {
                padding: 1.2rem;
            }
        }

        
        /* ========= GLOBAL STYLES ========= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========= CONTAINERS ========= */
.section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #FFD100);
  border-radius: 3px;
  animation: slide-underline 2.5s infinite alternate ease-in-out;
}

@keyframes slide-underline {
  0% { width: 40px; }
  100% { width: 80px; }
}

/* ========= CARD ANIMATION ========= */
.card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========= BUTTONS ========= */
.btn, button, a.btn {
  cursor: pointer;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn:hover, button:hover, a.btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.1);
}

.btn-accent {
  background: var(--orange, #FFD100);
  color: #000;
}

.btn-outline {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* ========= FADE-IN / SLIDE-UP ========= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards ease;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========= IMAGE ANIMATION ========= */
.card img {
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.card img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ========= CONTACT / ACTION BUTTONS ========= */
button i, a i {
  transition: transform 0.3s ease;
}

button:hover i, a:hover i {
  transform: rotate(15deg);
}

/* ========= MODALS ========= */
.modal {
  animation: fadeInModal 0.4s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ========= SCROLL REVEAL EFFECTS ========= */
@media (prefers-reduced-motion: no-preference) {
  [class*="fade-in-"] {
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
}

/* ========= HOVER COLOR THEMES ========= */
#sendWa:hover { background: #1EBE5A; }
#callMtn:hover { background: #FFCE00; }
#callAirtel:hover { background: #C30000; }
#sendEmail:hover { background: #2C6BED; }

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .section {
    padding: 40px 14px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .card {
    margin-bottom: 20px;
  }
}
