/* BRIGHT TECH THEME */
/* Increased Spacing & Section Separation */
.section { 
    padding: 100px 0; 
    border-bottom: 1px solid #f1f5f9;
}

/* MODAL SLIDER STYLING */
.modal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    transition: opacity 0.2s;
}

.nav-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

#pageIndicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

/* Slide Animation */
.slide-fade {
    animation: fadeEffect 0.4s;
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

.container { 
    width: 90%; 
    max-width: 1000px; 
    margin: auto; 
}

/* Specific spacing for titles */
.center-title { 
    text-align: center; 
    margin-bottom: 50px; /* More space between title and the content grid */
    font-size: 1.8rem;
}

/* Card Grid Gap */
.card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; /* Increased gap between boxes */
}

/* About Flex Spacing */
.about-flex { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 50px; /* More horizontal space between text and the mission box */
    align-items: center; 
}

/* Section Dividers (Optional: adds a very faint line between sections) */
section {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}


:root {
    --primary: #0072CE;
    --text: #1e293b;
    --light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.3; }
.container { width: 92%; max-width: 950px; margin: auto; }

header { padding: 10px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: #fff; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1rem; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 15px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }

.hero { padding: 50px 0; background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200') center/cover; text-align: center; border-bottom: 1px solid #eee; }
.hero h1 { font-size: 2rem; margin-bottom: 5px; }

.section { padding: 40px 0; }
.bg-light { background: var(--light); }
.center-title { text-align: center; margin-bottom: 25px; }
.center-title span { font-size: 0.75rem; color: var(--primary); font-weight: 400; display: block; }

.about-flex { display: grid; grid-template-columns: 1.5fr 1fr; gap: 25px; align-items: center; }
.badge { background: var(--primary); color: #fff; padding: 2px 6px; font-size: 0.65rem; border-radius: 3px; font-weight: 800; display: inline-block; margin-bottom: 8px; }
.mission-box { background: var(--primary); color: #fff; padding: 20px; border-radius: 6px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.card, .product-item { background: #fff; padding: 15px; border: 1px solid #e2e8f0; border-radius: 4px; text-align: center; }
.clickable { cursor: pointer; transition: 0.2s; }
.clickable:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; }
.ref-item { background: #fff; padding: 15px; border-left: 4px solid var(--primary); font-size: 0.85rem; border-radius: 4px; }

.contact-card { text-align: center; background: var(--light); padding: 30px; border-radius: 8px; border: 1px solid #e2e8f0; }
.contact-details p { margin: 8px 0; font-weight: 600; font-size: 0.9rem; }
.contact-details i { color: var(--primary); margin-right: 8px; }
.btn { display: inline-block; margin-top: 15px; background: var(--primary); color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-weight: 700; font-size: 0.85rem; }

.modal-overlay { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); }
.modal-box { background: #fff; margin: 10% auto; padding: 25px; width: 90%; max-width: 450px; border-radius: 8px; position: relative; }
.close-icon { position: absolute; right: 15px; top: 8px; font-size: 24px; cursor: pointer; }
.modal-img { width: 100%; border-radius: 4px; margin-bottom: 12px; height: 180px; object-fit: cover; }

footer { padding: 15px 0; text-align: center; font-size: 0.7rem; color: #94a3b8; }

/* MAP LINK STYLING */
.map-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--primary);
}

.map-hint {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
}

.contact-item:hover .map-hint {
    border-bottom: 1px solid var(--primary);
}

/* WA Button Update */
.wa-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}