/* Shared Stylesheet */
:root {
    --primary-color: #0b1e36;
    --secondary-color: #d4af37;
    --light-bg: #f8f9fa;
    --dark-text: #222222;
    --light-text: #ffffff;
    --gray-bg: #eef2f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 15px;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo img {
    height:80px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

/* Hero Slider */
.slider-container {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(11, 30, 54, 0.75);
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #b89528;
    color: #fff;
}

/* Sections */
.section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.section-title div {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

/* Read More Hidden Text */
.more-text {
    display: none;
}

/* Client Logos */
.clients-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.client-logo {
    width: 100%;
    height: 80px;
    background: #0b1e36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    border-radius: 5px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.team-card {
    background: var(--light-bg);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.team-card h4 {
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 8px;
}

.footer-content a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #223a5e;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Navbar Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media(max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; }
    .grid-2 { grid-template-columns: 1fr; }
}
