/* index.css - page-specific styles for index.html only */

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    background: url("images/hero-it.png") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 120, 90, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    margin-top: 25px;
    font-size: 18px;
    opacity: 0.95;
}

.highlight {
    color: #ffe600;
}

/* Hero Buttons */
.btn-main {
    background: white;
    color: #006d5b;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    margin-right: 15px;
}

.btn-secondary-custom {
    background: #ffe600;
    color: #000;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
}

.btn-main:hover,
.btn-secondary-custom:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

/* --- Services Section --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, #eafff7, #f2fffc);
}

.service-card img {
    margin-bottom: 15px;
}

/* --- Results Section --- */
.results {
    background: #f0fffa;
    padding: 100px 0;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #00b894;
}

/* --- Hero Image Animation --- */
.hero-img {
    max-width: 700px;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- CTA Section --- */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #006d5b, #00b894);
    color: white;
}

.btn-dark-green {
    background: linear-gradient(135deg, #0f5132, #198754);
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-dark-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}