/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-green {
    background-color: #32CD32; /* Green lime */
    color: white;
}

.btn-green:hover {
    background-color: #2BB72B;
    transform: translateY(-2px);
}

.btn-black {
    background-color: #000000; /* Black */
    color: white;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo:hover {
    background-color: rgba(50, 205, 50, 0.1); /* Light green background on hover */
    transform: scale(1.05);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 220px;
    transition: all 0.3s ease;
    border-radius: 4px;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #32CD32; /* Green lime */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.about-text h3 {
    margin: 25px 0 15px;
    color: #000;
}

.about-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #a0a0a0;
    color: #555;
    font-size: 1.2rem;
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    margin: 20px 0 15px;
    color: #000;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.icon-placeholder {
    font-size: 3rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #32CD32;
    border-radius: 50%;
    color: white;
}

.center-btn {
    text-align: center;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background-color: white;
}

.methodology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #32CD32;
}

.step h3 {
    color: #000;
    font-size: 1.3rem;
}

.impact-phrase {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    padding: 30px;
    background-color: #32CD32;
    margin-top: 30px;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: thin;
}

.testimonial-card {
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-card h4 {
    text-align: right;
    color: #32CD32;
    font-weight: 600;
}

.training-photos h3 {
    text-align: center;
    margin: 40px 0 20px;
    color: #000;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.photo-placeholder {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #a0a0a0;
    color: #555;
    font-size: 1rem;
    border-radius: 8px;
}

/* Service Areas Section */
.service-areas {
    padding: 100px 0;
    background-color: white;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.service-list {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
    list-style: none;
}

.service-list li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #555;
}

/* CTA Final Section */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(to right, #000, #333);
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* General Spacing */
section {
    scroll-margin-top: 80px;
}