* {
    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-color: #fff;
}

/* Navigation */
.navbar {
    background: #000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem; /* Kept for general font-size, will be overridden by img style */
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #a06711; /* Changed from red */
}

/* --- New: Company Logo in Navbar --- */
.atna-company-logo {
    max-height: 90px; /* Further increased height for desktop */
    width: auto; /* Maintains aspect ratio */
    display: block; /* Ensures no extra space below the image */
    padding: 5px 0; /* Adjust padding to vertically center if needed */
    transition: all 0.3s ease; /* Smooth transitions */
}

@media (max-width: 768px) {
    .atna-company-logo {
        max-height: 65px; /* Further increased height for mobile responsiveness */
    }
}


/* Ensure the .logo styling doesn't interfere when an image is used */
.navbar .logo img { /* Target the image inside the logo link */
    font-size: unset; /* Override previous font-size for text logo */
    font-weight: unset; /* Override previous font-weight */
    color: unset; /* Override previous color */
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff; /* Changed from red */
    background: rgba(0, 123, 255, 0.1); /* Changed from red */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9f7e55 0%, #1a1a1a 100%);
    color: white;
    padding: 130px 0 70px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 span {
    color: #007bff; /* i removed this can comeback if needed in html*/
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ab092a; /* Changed from blue */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #004085; /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 173, 0, 0.3); /* Blue shadow */
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #a06711; /* Changed from red */
    padding: 13px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #a06711; /* Changed from red */
    color: white;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #a06711; /* Changed from red */
}

/* Introduction Section */
.intro {
    background: #fafaf8;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Services Overview */
.services-overview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #a06711; /* Changed from red */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a06711; /* Changed from red */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #a06711; /* Changed from red */
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.checkmark {
    color: #a06711; /* Changed from red */
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* --- New: Our Clients Section --- */
.atna-clients-section {
    padding: 80px 0; /* Matches your .section padding */
    text-align: center;
    background-color: #f8f9faa5; /* Light background similar to your .intro and .why-choose sections */
}

.atna-clients-section .section-title {
    color: #000; /* Matches existing section titles */
    margin-bottom: 3rem;
}

.atna-clients-section .section-title::after {
    background: #a06711; /* Changed from red */
}

.atna-clients-description {
    font-size: 1.2rem;
    color: #555;
    margin-top: -2rem; /* Pull it closer to the title */
    margin-bottom: 3rem; /* Space before logos */
}

.atna-client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Responsive grid for logos */
    gap: 30px; /* Space between logos */
    max-width: 1000px; /* Max width to keep logos from spreading too wide */
    margin: 0 auto; /* Center the grid */
    padding: 0 2rem; /* Matches your .container padding */
}

.atna-client-logo-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Similar to .service-card shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Ensures consistent height for logo boxes */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee; /* Light border similar to service cards */
}

.atna-client-logo-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12); /* Enhanced shadow on hover */
    border-color: #a06711; /* Changed from red */
}

.atna-client-logo-item img {
    max-width: 100%;
    max-height: 70px; /* Control actual logo image size */
    object-fit: contain; /* Ensures the entire logo is visible within its bounds */
    filter: grayscale(100%); /* Optional: Make logos grayscale by default */
    opacity: 0.8; /* Optional: Slight opacity for less prominence */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.atna-client-logo-item img:hover {
    filter: grayscale(0%); /* Optional: Color on hover */
    opacity: 1; /* Optional: Full opacity on hover */
    transform: scale(1.02); /* Slightly enlarge on hover */
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Company Info */
.company-info {
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #a06711; /* Changed from red */
}

.info-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-list li::before {
    content: '✓';
    color: #a06711; /* Changed from red */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Detailed Services - Updated to match company-info style */
.detailed-services {
    background: #f8f9fa;
}

.detailed-services .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detailed-services .info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #a06711; /* Changed from red */
}

.detailed-services .info-card h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.detailed-services .info-card h3 .highlight {
    color: #a06711; /* Changed from red */
}

.detailed-services .info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detailed-services .service-features {
    list-style: none;
    padding: 0;
}

.detailed-services .service-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detailed-services .service-features li::before {
    content: '▶';
    color: #a06711; /* Changed from red */
    font-weight: bold;
    font-size: 0.8rem;
}

/* Training Section */
.training {
    background: white;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.training-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.training-item:hover {
    transform: translateY(-3px);
    border-color: #a06711; /* Changed from red */
}

.training-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.training-item p {
    color: #666;
}

/* Contact Section */
.contact {
    background: #000;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #a06711; /* Changed from red */
}

.contact-info h3 {
    color: #a06711; /* Changed from red for a softer highlight */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: #a06711; /* Changed from red */
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer a {
    color: #a06711; /* Changed from red */
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* New: Responsive for Company Logo */
    .atna-company-logo {
        max-height: 35px; /* Slightly smaller on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* New: Responsive for Clients Section */
    .atna-client-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .atna-client-logo-item {
        min-height: 80px;
    }

    .atna-client-logo-item img {
        max-height: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-accent { /* Renamed from .text-red */
    color: #a06711; /* New accent color */
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #000;
}

.bg-white {
    background: white;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

/* --- Contact Form Specific Styles --- */

.contact-form-container {
    background-color: #fff; /* White background for the form area */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px; /* Space between contact info and form */
}

.contact-form-container h3 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 0.95em;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit; /* Inherit font from body */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.3s ease;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: #a06711; /* Highlight on focus, changed from #007bff for consistency */
    outline: none; /* Remove default outline */
}

.contact-form-container textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 120px;
}

.submit-button {
    background-color: #a06711; /* Your primary brand color, changed from #007bff */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block; /* Ensure it takes full width */
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #a06711; /* Darker shade on hover, changed from #0056b3 */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Office Location Grid Specific Styles */
.office-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for image and details */
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.office-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.office-details h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.office-details .address-line {
    margin-bottom: 0.8rem;
    color: #555;
}

.office-details .address-line strong {
    color: #333;
}

.office-details a {
    color: #0d1413; /* Consistent with new primary accent */
    text-decoration: none;
    font-weight: 600;
}

.office-details a:hover {
    text-decoration: underline;
}

address {
    font-style: normal; /* Override default italic for address tag */
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments (assuming you have media queries for your site) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact info vertically */
        gap: 30px;
    }
    .contact-form-container {
        padding: 20px;
        margin-top: 30px;
    }
    .contact-form-container h3 {
        font-size: 1.5em;
    }
    .submit-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .office-location-grid {
        grid-template-columns: 1fr; /* Stack on small screens */
    }
}
/* In style.css */
.hero-contact { /* A new class for specific hero padding on contact page */
    padding-top: 200px;
    padding-bottom: 50px;
}