/* General Styling */
:root {
    --primary-color: #28a745; /* Green */
    --secondary-color: #f8f9fa; /* Light Gray */
    --dark-color: #2c3e50; /* Dark Blue-Gray */
    --text-color: #495057; /* Medium Gray */
    --white-color: #ffffff;
    --light-gray-bg: #f5f7f9;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2, h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #218838; /* Darker green */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-whatsapp {
    background-color: #25d366; /* WhatsApp Green */
    color: var(--white-color);
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Navbar */
.navbar {
    background-color: var(--white-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dark-color);
}

.navbar nav ul {
    display: flex;
}

.navbar nav ul li {
    margin-left: 30px;
}

.navbar nav ul li a {
    color: var(--dark-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: var(--primary-color);
}

.navbar .contact-number {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar .contact-number i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #eaf2f8, #d4e6f1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3.5em;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.05em;
    color: var(--dark-color);
}

.hero-features span {
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.years-experience {
    position: absolute;
    bottom: -30px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-color);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 180px;
}

.years-experience h2 {
    font-size: 2.5em;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.years-experience p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0;
}


/* About Section */
.about-section {
    background-color: var(--light-gray-bg);
    padding: 80px 0;
    margin-top: 50px; /* To account for the years experience card */
}

.about-section .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.about-checklist {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: var(--text-color);
}

.about-checklist li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2em;
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    font-size: 0.95em;
    color: var(--text-color);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white-color);
}

.services-section h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card .icon-circle {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    margin: 0 auto 20px auto;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0;
}

.btn-center {
    text-align: center;
    margin-top: 30px;
}


/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: var(--white-color);
    font-size: 2.8em;
    margin-bottom: 10px;
}

.contact-section .section-description {
    color: var(--white-color);
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card .icon-circle {
    background-color: var(--white-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin: 0 auto 20px auto;
}

.contact-info-card h3 {
    color: var(--white-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 0.95em;
}

.get-started-title {
    color: var(--white-color);
    font-size: 2em;
    margin-top: 50px;
}

.get-started-description {
    color: var(--white-color);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.get-started-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-section .btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

.contact-section .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.contact-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.contact-section .btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.contact-section .btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px 0;
    font-size: 0.95em;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-grid .footer-about {
    font-size: 1em;
}

.footer-grid .footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-grid .footer-about i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-grid .footer-links ul li {
    margin-bottom: 10px;
}

.footer-grid .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-grid .footer-links a:hover {
    color: var(--primary-color);
}

.footer-grid .footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-grid .footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px; /* Align icon better with text */
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 20px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .navbar .container {
        flex-direction: column;
        text-align: center;
    }
    .navbar nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    .navbar nav ul li {
        margin: 0 15px;
    }
    .navbar .contact-number {
        margin-top: 15px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image {
        max-width: 80%;
        margin-top: 40px;
    }
    .years-experience {
        bottom: 20px; /* Adjust for smaller screens */
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section .container {
        flex-direction: column;
    }
    .about-text, .about-stats {
        flex: none;
        max-width: 100%;
    }
    .about-stats {
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .about-checklist {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }

    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-buttons {
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .get-started-buttons {
        flex-direction: column;
        align-items: center;
    }
    .get-started-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .navbar nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .navbar nav ul li {
        margin: 0;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-image {
        max-width: 100%;
    }
    .years-experience {
        font-size: 0.9em;
        padding: 15px 20px;
        bottom: 10px;
    }
    .service-grid, .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .about-checklist {
        padding-left: 0;
    }
}