@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #e0e5ec;
    --text-main: #1e293b;
    --primary-blue: #0f172a;
    --primary-green: #10b981;
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-main); overflow-x: hidden; }

/* 5D Neumorphic Shadows */
.card-5d {
    background: var(--bg-color); border-radius: 20px;
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5);
    padding: 30px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-5d:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px rgb(163,177,198,0.7), -12px -12px 20px rgba(255,255,255, 0.6);
}

/* Inner Shadow for Inputs */
.input-5d {
    width: 100%; padding: 15px; border-radius: 12px; border: none; outline: none;
    background: var(--bg-color); color: var(--text-main); font-size: 1rem; margin-bottom: 20px;
    box-shadow: inset 6px 6px 10px 0 rgba(163,177,198, 0.7), inset -6px -6px 10px 0 rgba(255,255,255, 0.8);
}
.input-5d:focus { box-shadow: inset 4px 4px 6px 0 rgba(163,177,198, 0.6), inset -4px -4px 6px 0 rgba(255,255,255, 0.7); border: 1px solid var(--primary-green); }

/* 3D Buttons */
.btn-5d {
    width: 100%; padding: 15px; border-radius: 12px; border: none; font-size: 1.1rem; font-weight: bold;
    cursor: pointer; transition: 0.3s; color: white;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    box-shadow: 6px 6px 12px rgb(163,177,198,0.6), -6px -6px 12px rgba(255,255,255, 0.5);
}
.btn-5d:active { box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2); transform: scale(0.98); }
.btn-blue { background: linear-gradient(135deg, var(--primary-blue), #1e293b); }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 5%;
    background: rgba(224, 229, 236, 0.9); backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.logo-img { height: 60px; filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.2)); }
.nav-links { display: flex; align-items: center; }
.nav-links a { margin: 0 15px; text-decoration: none; color: var(--primary-blue); font-weight: 600; font-size: 1.1rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-green); }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary-blue); font-weight: bold; }

/* Layout Grids */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Floating WhatsApp */
.wa-float {
    position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px;
    background: #25d366; color: white; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 6px 6px 15px rgba(37, 211, 102, 0.4), -6px -6px 15px rgba(255,255,255,0.5);
    z-index: 1000; transition: 0.3s;
}
.wa-float:hover { transform: scale(1.1) rotate(10deg); }
.wa-float img { width: 35px; filter: brightness(0) invert(1); }

/* Service Tags */
.service-list-item { background: #f1f5f9; padding: 15px; border-radius: 10px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s; border-left: 4px solid var(--primary-blue); }
.service-list-item:hover { background: #e2e8f0; border-left-color: var(--primary-green); transform: translateX(5px); }

/* Footer */
.footer { background: var(--bg-color); padding: 50px 5% 20px; border-top: 2px solid #ffffff; box-shadow: inset 0px 10px 20px rgba(163,177,198,0.1); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-grid h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.3rem; }
.footer-grid a { display: block; color: #475569; text-decoration: none; margin-bottom: 10px; transition: 0.3s; }
.footer-grid a:hover { color: var(--primary-green); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #cbd5e1; color: #64748b; font-size: 0.9rem; }

/* Admin Table */
table { width: 100%; border-collapse: collapse; margin-top: 20px; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #e2e8f0; }
th { background: var(--primary-blue); color: white; }

/* RESPONSIVE DESIGN (Mobile & Tablet) */
@media screen and (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { 
        display: none; flex-direction: column; width: 100%; text-align: center; 
        position: absolute; top: 100%; left: 0; background: rgba(224, 229, 236, 0.98); 
        padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 1px solid #fff;
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }
    
    .grid-2 { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-text h1 { font-size: 2.5rem !important; }
    .container { padding: 40px 15px; }
    .wa-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }
    .wa-float img { width: 28px; }
    table { display: block; overflow-x: auto; white-space: nowrap; }
}