/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    color: #0b1c3a;
    margin-bottom: 30px;
}

.section-title span {
    color: #d4af37;
}

.text-center {
    text-align: center;
}

/* ===== Navigation Bar ===== */
.navbar {
    background-color: #0b1c3a;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.logo h2 span {
    color: #d4af37;
}

.logo p {
    font-size: 13px;
    color: #b0b8c4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #d4af37;
}

.nav-contact .btn-call {
    background-color: #d4af37;
    color: #0b1c3a;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-contact .btn-call:hover {
    background-color: #ffffff;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(11, 28, 58, 0.8), rgba(11, 28, 58, 0.9)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.btn-primary {
    background-color: #d4af37;
    color: #0b1c3a;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #fff;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.core-values {
    margin-top: 20px;
}

.core-values li {
    margin-bottom: 10px;
    font-size: 16px;
}

.core-values i {
    color: #d4af37;
    margin-right: 10px;
}

.founders-card {
    background-color: #0b1c3a;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founders-card h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 10px;
}

.founder {
    margin-bottom: 20px;
}

.founder h4 {
    font-size: 20px;
}

.founder p {
    color: #b0b8c4;
    font-size: 14px;
    margin-bottom: 5px;
}

.founder span {
    display: inline-block;
    background-color: #d4af37;
    color: #0b1c3a;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

/* ===== Mission & Why Choose Us Section ===== */
.why-choose-section {
    background-color: #0b1c3a;
    color: #fff;
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.mission-text h2 span {
    color: #d4af37;
}

.mission-text p {
    color: #b0b8c4;
    font-size: 15px;
}

.choose-us-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 10px;
}

.choose-us-box h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.choose-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.choose-list i {
    color: #d4af37;
    margin-top: 5px;
}

/* ===== Services Section (Glassmorphism) ===== */
.services-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1541888081-37f2a8747f5b?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 28, 58, 0.85); /* Deep Navy Overlay */
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-title {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.glass-panel h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.glass-panel p {
    font-size: 14px;
    color: #d1d5db;
}

/* ===== Projects Section ===== */
.projects-section {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #0b1c3a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-top-color: #d4af37;
}

.project-icon {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 15px;
}

.project-card h3 {
    color: #0b1c3a;
    font-size: 18px;
    margin-bottom: 12px;
}

.project-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.project-card p i {
    color: #d4af37;
    margin-right: 5px;
}

.project-card .scope {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    color: #444;
}

/* ===== Footer ===== */
.footer {
    background-color: #0b1c3a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-info p {
    color: #b0b8c4;
    margin-top: 15px;
    max-width: 400px;
}

.footer-contact h3 {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #b0b8c4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    color: #b0b8c4;
    font-size: 14px;
}

/* ===== Responsive Design (Mobile & Tablet) ===== */
@media (max-width: 768px) {
    .nav-links, .btn-call {
        display: none; /* Mobile menu can be added later */
    }
    
    .about-grid, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}