* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-primary-bg: #f3f4f6; /* Body background color (equivalent to gray-100) */
    --color-card-bg: #ebf5e7; /* Custom Mint color */
    --color-text-dark: #333333; /* Accent Dark text color */
    --color-text-light: #6b7280; /* Gray 600 equivalent */
    --color-green-button: #6d9e46;
    --color-green-hover: #557a36;
    --color-blue-button: #4272c1;
    --color-blue-hover: #355ba0;
    --color-border: #9ca3af; /* Gray 400/500 equivalent */
    --font-family-sans: "Inter", sans-serif;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
}
.primary-text {
    color: #7cb342;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-logo img {
    height: 70px;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7cb342;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #7cb342;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #689f38;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 40px 0;
    border-bottom: 2px solid #4272c1;
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 100%); */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: center;
}
.slider-container {
    flex: 3;
    position: relative;
}
.slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slide img {
    width: 200px;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    margin-right: 30px;
}
.text-center {
    text-align: center;
}
.slide-content {
    text-align: center;
}

.slide-content h3 {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.slide-content h2 {
    color: #4272c1;
    font-size: 32px;
    margin-bottom: 10px;
}

.slide-content p {
    color: #666;
    font-size: 14px;
}

/* 

.slider {
    position: relative;
    height: 500px;
    border-radius: 15px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide.active {
    opacity: 1;
}



.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav button {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-nav button:hover {
    background: white;
} */

/* Contact Form */
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    height: fit-content;
}

.contact-form h2 {
    color: #4272c1;
    margin-bottom: 15px;
    font-size: 28px;
}

.contact-info {
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-container label {
    font-size: 12px;
    color: #666;
}

.submit-btn {
    background: #7cb342;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #689f38;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: white;
    border-bottom: 2px solid #4272c1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #4272c1;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.stats img {
    height: 50px;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 40px;
    color: #7cb342;
    margin-bottom: 10px;
}

.stat h3 {
    color: #4272c1;
    font-size: 24px;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 14px;
}

.read-more-btn {
    background: transparent;
    color: #4272c1;
    border: 1px solid #4272c1;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #4272c1;
    color: white;
}

.about-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
}

.chat-bubble {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    color: #4272c1;
    font-size: 36px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 20px; */
}

.service-card {
    padding: 60px 30px;
    /* border-radius: 15px; */
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.service-card.light-green {
    background: #c8e6c9;
    color: #2e7d32;
}

.service-card.dark-green {
    background: #7cb342;
}

.service-card.light-blue {
    background: #bbdefb;
    color: #1976d2;
}

/* Why Choose Us Section */
.why-choose {
    padding: 40px 0;
    background: #d9eac0;
}
.why-choose .artifact {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
}
.artifact::before {
    content: "";
    position: absolute;
    height: 95%;
    width: 2px;
    background-color: #4272c1;
    top: 0;
    left: 44%;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ebf4df;
    border-radius: 20px;
    padding: 24px 15px;
    position: relative;
}

.why-choose-image {
    flex: 1;
    /* position: relative; */
}

.why-choose-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    position: absolute;
    bottom: -40px;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.feature {
    margin-bottom: 25px;
    padding: 20px;
}
.why-choose .artifact .left .feature:nth-child(1) {
    border-bottom: 1px solid #4272c1;
    text-align: end;
}
.why-choose .artifact .right .feature:nth-child(1) {
    border-bottom: 1px solid #4272c1;
}
.why-choose .artifact .right .feature:nth-child(2) {
    border-bottom: 1px solid #4272c1;
}

.feature h4 {
    color: #4272c1;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #7cb342;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}
#sticky-sidebar {
    position: fixed;
    top: 72%;
    left: 0;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vertical-button {
    background-color: var(--color-green-button);
    color: white;
    padding: 15px 10px;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    white-space: nowrap;
    text-decoration: none;
}
.vertical-button:hover {
    background-color: var(--color-green-hover);
}
.call-button {
    background-color: var(--color-blue-button);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    text-decoration: none;
}
.call-button:hover {
    background-color: var(--color-blue-hover);
}

.contact-form.text-center {
    position: absolute;
    right: 7%;
    background: #e7e7e7c7;
}
/* Main Section Header */
.main-header {
    text-align: center;
    padding: 4rem 0;
}

.main-header h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #3776d2;
    margin-bottom: 0.75rem;
}

.main-header p {
    font-size: 1.25rem;
    color: #4b5563;
    /* Gray-600 equivalent */
}

/* Blog Card Grid */
.blogs {
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    /* Equivalent to gap-10 */
}

@media (min-width: 768px) {
    /* md breakpoint */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* lg breakpoint */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Changed to 4 columns for desktop view */
    }
}

/* Blog Card Styling */
.blog-card {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-2xl */
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 12rem;
    /* h-48 */
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 1.5rem;
    /* p-6 */
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    background-color: rgba(0, 153, 204, 0.1);
    /* accent/10 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    /* rounded-full */
}

.blog-card-date {
    color: #6b7280;
    /* Gray-500 */
    display: flex;
    align-items: center;
}

/* Replaced Lucide Icon with Unicode for Calendar */
.blog-card-date::before {
    content: "\1F4C5";
    /* 📅 Calendar emoji/icon */
    margin-right: 0.5rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.375;
    /* leading-snug */
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease;
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-card-description {
    color: #4b5563;
    /* Gray-600 */
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.15s ease;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Replaced Lucide Icon with Unicode for Chevron */
.read-more-link::after {
    content: " →";
    margin-left: 0.25rem;
}

/* Simple Globe Icon SVG for Header */
.globe-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .about-content,
    .why-choose-content {
        /*flex-direction: column;*/
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}
