/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
    background: #0d2538;
    color: #fff;
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== Navbar Fix (Balanced Header) ===== */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;  /* add horizontal padding (adjust as you like) */
    max-width: 1200px; /* keep it centered on big screens */
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00c4cc;
}

/* Hamburger */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    display: none; /* hidden on desktop */
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(to right, #0d2538, #1e3c5c);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.hero p {
    font-size: 1.2rem;
}

/* ===== Content Sections ===== */
.main-content {
    padding: 2rem 0;
}

h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #0d2538;
}

.content-text p {
    margin-bottom: 1.2rem;
}

.closing {
    font-style: italic;
    color: #555;
}

/* ===== ABOUT PAGE STYLES ===== */
.profile-section {
    text-align: center;
    margin: -60px auto 2rem;
    position: relative;
    z-index: 10;
}

.profile-image-container {
    display: inline-block;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: auto;
    border-radius: 0; /* Remove round frame */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* Remove border to keep original look */
    border: none;
}

.profile-caption {
    margin-top: 1rem;
}

.profile-caption h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.profile-caption p {
    color: #666;
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
}

/* ===== About Heading Styling ===== */
.content-text h2 {
    text-align: left;
    margin: 3rem 0 1.5rem 0;
    font-size: 2rem;
    color: #0d2538;
    border-bottom: 3px solid #00c4cc;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

/* ===== Services Page ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.8rem 0;
}

.feature {
    background: #eef6f7;
    color: #0d2538;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
}

.service-price {
    font-weight: bold;
    margin-top: 0.6rem;
    color: #00c4cc;
}

.service-cta {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: #0d2538;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.service-cta:hover {
    background: #00c4cc;
    color: #fff;
}

/* ===== Contact Page ===== */
.contact-info {
    margin: 2rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.contact-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #0d2538;
}

input, textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    resize: none;
}

.submit-btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: #0d2538;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #00c4cc;
}

/* ===== Footer ===== */
.footer {
    background: #0d2538;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

/* ===== CTA Buttons (About & Services) ===== */
.cta-section {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary Button */
.cta-button.primary {
    background: #0d2538;
    color: #fff;
}

.cta-button.primary:hover {
    background: #00c4cc;
    color: #fff;
}

/* Secondary Button */
.cta-button.secondary {
    background: #fff;
    color: #0d2538;
    border: 2px solid #0d2538;
}

.cta-button.secondary:hover {
    background: #0d2538;
    color: #fff;
}

/* ===== YouTube Button ===== */
.youtube-toggle {
    display: inline-block;
    background: #fff;
    color: #c4302b; /* YouTube red text */
    padding: 0.6rem 1.2rem;
    border: 2px solid #c4302b;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.youtube-toggle:hover {
    background: #c4302b;
    color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0d2538;
        flex-direction: column;
        width: 220px;
        text-align: left;
        padding: 1rem;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    
    /* Mobile adjustments for About page */
    .profile-section {
        margin: -40px auto 1.5rem;
    }
    
    .profile-image {
        width: 150px;
    }
    
    .content-text h2 {
        margin: 2rem 0 1rem 0;
        font-size: 1.6rem;
    }
}
