:root {
    --primary-color: #00a8ff; /* A vibrant blue */
    --secondary-color: #007bff;
    --dark-bg: #1a1a2e; /* A dark navy blue */
    --dark-bg-secondary: #16213e;
    --light-text: #f0f0f0;
    --dark-text: #333;
    --section-padding: 60px 0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; background-color: #fff; color: var(--dark-text); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; }
p { margin-bottom: 1rem; }
header { background-color: rgba(26, 26, 46, 0.9); color: var(--light-text); padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--light-text); font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { color: var(--light-text); text-decoration: none; font-weight: 400; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-color); }
.cta-button { background-color: var(--primary-color); color: #fff; padding: 8px 18px; border-radius: 5px; transition: background-color 0.3s ease; }
.cta-button:hover { background-color: var(--secondary-color); color: #fff; }
.menu-icon { display: none; cursor: pointer; }
.bar { width: 25px; height: 3px; background-color: #fff; margin: 5px 0; transition: 0.4s; }
#hero { background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max') center/cover no-repeat; color: var(--light-text); height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; }
#hero h1 { color: #fff; }
#hero p { font-size: 1.2rem; max-width: 600px; margin: 1rem auto 2rem; }
.cta-button-large { background-color: var(--primary-color); color: #fff; padding: 15px 30px; border-radius: 5px; text-decoration: none; font-size: 1.1rem; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; display: inline-block; }
.cta-button-large:hover { background-color: var(--secondary-color); transform: translateY(-3px); }
.content-section { padding: var(--section-padding); }
.content-section-dark { padding: var(--section-padding); background-color: var(--dark-bg); color: var(--light-text); }
.content-section-dark h2 { color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card { background-color: #f9f9f9; padding: 30px; border-radius: 8px; text-align: center; border: 1px solid #eee; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.service-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; color: var(--dark-text); }
.process-steps { display: flex; justify-content: space-between; text-align: center; margin-top: 40px; gap: 30px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; }
.step-number { width: 60px; height: 60px; line-height: 60px; border-radius: 50%; background-color: var(--primary-color); color: #fff; font-size: 1.8rem; font-weight: 600; margin: 0 auto 1rem; }
.about-container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.about-text { flex: 1; }
.about-image { flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-container { text-align: center; }
.contact-container p { max-width: 500px; margin: 1rem auto 2rem; }

/* --- Footer --- UPDATED STYLES HERE --- */
footer {
    background-color: var(--dark-bg-secondary);
    color: rgba(240, 240, 240, 0.8);
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-address p {
    margin: 0;
    line-height: 1.5;
}

.footer-address strong {
    color: var(--light-text);
}
/* END OF NEW STYLES */

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive Design --- UPDATED MEDIA QUERY --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
    .nav-links { position: fixed; right: -100%; top: 70px; background-color: var(--dark-bg); height: calc(100vh - 70px); width: 60%; flex-direction: column; align-items: center; justify-content: space-around; transition: right 0.5s ease-in-out; }
    .nav-links.nav-active { right: 0; }
    .nav-links li { margin-left: 0; opacity: 0; }
    .nav-links.nav-active li { opacity: 1; transition: opacity 0.5s ease 0.3s; }
    .menu-icon { display: block; }
    .about-container { flex-direction: column; }
    
    /* NEW STYLES for footer on mobile */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}