:root {
    --primary-color: #007bff;
    --secondary-color: #001f3f;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --accent-color: #00d4ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Navbar */
header {
    background: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0.5rem auto;
}

.btn {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
}

/* Services */
.bg-light { background: #f9f9f9; padding: 2rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.locations {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.locations li {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.stat-card {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 1rem; }

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-full { width: 100%; font-size: 1.1rem; }

footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
}
/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

.logo-img {
    width: 40px;  /* Adjust size as needed */
    height: 50px;
    object-fit: contain;
}

/* Service Photo Frames */
.photo-frame {
    width: 100%;
    height: 180px; /* Adjust height of the photo */
    background: #ddd; /* This shows a gray box until you add your photo */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes sure the photo fills the frame perfectly */
}
/* Team Section Styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.team-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px); /* Gentle lift effect on hover */
}

.team-photo-frame {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%; /* This makes the photos circular */
    overflow: hidden;
    border: 3px solid var(--primary-color); /* Adds a blue ring around the photo */
    background: #eee; /* Placeholder color */
}

.team-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}