/*
Theme Name: Akhanet Computer Business Centre Theme
Theme URI: https://aict.com.ng
Author: Sitn
Description: A high-performance one-page theme for Computer Business Centres in Nigeria.
Version: 1.0
*/

/* PASTE ALL YOUR PREVIOUS CSS CODE BELOW THIS LINE */
:root {
    --primary: #1E7C98;
    --dark: #333;
    --light: #f4f7f8;
    --white: #ffffff;
    --whatsapp: #25D366;
    --accent: #F2994A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1150px; margin: auto; padding: 0 20px; }

/* Navigation */
.hero { background: linear-gradient(rgba(30,124,152,0.85), rgba(30,124,152,0.85)), url('https://via.placeholder.com/1200x600'); 
        background-size: cover; height: 90vh; color: var(--white); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; }
.logo { font-size: 1.8rem; font-weight: 700; }
.logo span { font-weight: 300; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { color: white; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.btn-nav { background: var(--white); color: var(--primary); padding: 10px 25px; text-decoration: none; border-radius: 50px; font-weight: 700; }
.hero-content { text-align: center; margin-top: 80px; }
.hero-content h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px; }
.btn-primary, .btn-secondary { padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 600; margin: 10px; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--white); color: var(--primary); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); }

/* Sections */
.services-section, .testimonials, .partners, .location-section { padding: 80px 0; }
.bg-light { background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.section-title span { display: block; font-size: 1rem; color: var(--primary); margin-top: 5px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.service-card { background: var(--white); padding: 35px 20px; text-align: center; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--primary); }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.service-card.offline i { color: #777; }

/* Why Us */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.feature-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }

/* Customer Spotlight */
.customer-spotlight { padding: 80px 0; background: var(--primary); color: var(--white); }
.spotlight-card { background: rgba(255,255,255,0.1); padding: 40px; border-radius: 20px; position: relative; }
.spotlight-badge { position: absolute; top: -15px; background: #f2994a; padding: 5px 20px; border-radius: 50px; font-weight: 600; }
.spotlight-flex { display: flex; align-items: center; gap: 40px; }
.customer-image img { width: 280px; height: 280px; border-radius: 15px; object-fit: cover; border: 5px solid rgba(255,255,255,0.2); }
.btn-promo { background: white; color: var(--primary); padding: 10px 25px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; margin-top: 20px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-card { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 5px solid var(--primary); }
.stars { color: #f2994a; margin-bottom: 15px; }
.client-meta { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.client-meta img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.client-meta h4 { font-size: 1rem; margin-bottom: 2px; }
.client-meta span { font-size: 0.8rem; color: #777; }
/* Partners */
.partners-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; align-items: center; }
.partner-logo img { max-width: 140px; filter: grayscale(100%); transition: 0.3s; opacity: 0.6; }
.partner-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* Contact Layout */
.contact-layout { display: flex; gap: 40px; flex-wrap: wrap; }
.map-container { flex: 1.5; min-width: 300px; border-radius: 15px; overflow: hidden; }
.contact-details-card { flex: 1; min-width: 300px; background: white; padding: 35px; border-radius: 15px; }
.detail-item { display: flex; gap: 15px; margin-bottom: 20px; }
.detail-item i { font-size: 1.4rem; color: var(--primary); }
.btn-review { display: block; text-align: center; padding: 12px; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; border-radius: 5px; font-weight: 600; }

/* Footer & Float */
footer { background: #111; color: #777; padding: 40px 0; text-align: center; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .spotlight-flex { text-align: center; justify-content: center; }
}
