:root {
    --primary-teal: #6B9B8E;
    --primary-orange: #FF8C42;
    --dark-teal: #4A7B6E;
    --light-teal: #E8F2EF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 40, 0.55);
    /* dark teal tint */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #E67935;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

/* Section Headers */
.section-title {
    color: var(--dark-teal);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
}

/* Experience Section */
.experience-section {
    background-color: var(--light-teal);
    padding: 80px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-teal);
    margin-top: 10px;
}

/* Owner Section */
.owner-section {
    padding: 80px 0;
}

.owner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: white;
}

.owner-info {
    padding: 40px;
}

.owner-name {
    color: var(--dark-teal);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.owner-title {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Projects Section */
.projects-section {
    background-color: var(--light-teal);
    padding: 80px 0;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.project-body {
    padding: 25px;
}

.project-title {
    color: var(--dark-teal);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 15px;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

/* Clients */
.client-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    height: 150px;
    /* Fixed height for symmetry */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    overflow: hidden;
}

.client-card img {
    max-height: 80px;
    /* Limits height */
    max-width: 90%;
    /* Limits width */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Prevents stretching */
    display: block;
}

.client-name {
    margin-top: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-orange);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #2A5B4E 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-orange);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

/* Default Mobile Size */
.nav-logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Desktop Size (Large screens) */
@media (min-width: 992px) {
    .nav-logo {
        width: 60px;
        height: 60px;
    }
}