/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1BA323;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 50vh;
    min-height: 400px;
	
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
    max-width: 800px;
    line-height: 1.5;
}

/* Intro Content */
.intro-content {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.intro-item h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--black);
}

.intro-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-mid);
}

/* Section Title */
.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-mid);
}

.about-text em {
    font-style: italic;
    color: var(--primary-green);
    font-weight: 500;
}

.about-text h3 {
    font-size: 24px;
    margin: 40px 0 30px;
    color: var(--black);
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-mid);
}

.services-list li::before {
    content: '●';
    color: var(--primary-green);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px;
    background: var(--gray-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-mid);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.portfolio .section-title {
    color: var(--white);
}

.portfolio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.portfolio-btn:hover {
    background: #159a1d;
}

.portfolio-counter {
    font-size: 18px;
    font-weight: 500;
}

.portfolio-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.portfolio-slider {
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.portfolio-track {
    display: flex;
    transition: transform 0.5s ease;
}

.portfolio-item {
    min-width: 100%;
    height: 500px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-details {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
}

.project-role,
.project-objective,
.project-solution {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
    color: #d0d0d0;
}

.project-role strong,
.project-objective strong,
.project-solution strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-solution {
    margin-bottom: 0;
    font-style: italic;
    padding-left: 15px;
    border-left: 2px solid var(--primary-green);
}

.portfolio-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    justify-content: center;
}

.thumbnail {
    min-width: 100px;
    height: 70px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .portfolio-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-item {
        height: 400px;
    }

    .portfolio-details {
        min-height: auto;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .portfolio-item {
        height: 300px;
    }

    .portfolio-controls {
        flex-wrap: wrap;
        gap: 15px;
    }

    .portfolio-details {
        padding: 25px;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 600;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-mid);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 500;
    color: var(--black) !important;
    font-size: 14px !important;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.blog-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-mid);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #159a1d;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: var(--white);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    padding: 15px 40px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #159a1d;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-light);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer p {
    font-size: 14px;
    margin: 5px 0;
}



/* reCAPTCHA Styling */ 

.g-recaptcha {
margin: 20px 0; }
@media (max-width: 600px) { .g-recaptcha {
transform: scale(0.85);
transform-origin: 0 0; }
}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .portfolio-item {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .intro-content,
    .about,
    .services,
    .portfolio,
    .testimonials,
    .blog,
    .contact {
        padding: 60px 0;
    }

    .portfolio-item {
        height: 300px;
    }

    .portfolio-controls {
        flex-wrap: wrap;
        gap: 15px;
    }

    .blog-article {
        padding: 60px 0;
    }

    .blog-hero-title {
        font-size: 28px;
    }
}

/* Blog Page Styles */
.blog-hero {
    margin-top: 80px;
    position: relative;
    height: 35vh;
    min-height: 250px;
}

.blog-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.blog-article {
    padding: 100px 0;
    background: var(--white);
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-mid);
    margin-bottom: 40px;
    font-weight: 400;
}

.blog-article-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: var(--primary-green);
    font-weight: 600;
}

.blog-article-content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: var(--black);
    font-weight: 600;
}

.blog-article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-mid);
    margin-bottom: 25px;
}

.blog-article-content strong {
    color: var(--black);
    font-weight: 600;
}

.blog-article-content em {
    font-style: italic;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.article-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-mid);
}

.article-list li::before {
    content: '●';
    color: var(--primary-green);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.blog-cta {
    background: var(--gray-light);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0 40px;
    border-left: 4px solid var(--primary-green);
}

.blog-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--black);
}

.blog-cta p {
    font-size: 18px;
    color: var(--gray-mid);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #159a1d;
}

.blog-back {
    margin-top: 40px;
    text-align: center;
}

.blog-back .blog-link {
    font-size: 18px;
}