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

:root {
    /* Color Palette derived from logo */
    --primary-white: #ffffff;
    --logo-blue: #00AEEF;
    --logo-green-light: #B5C42B; /* Right hand */
    --logo-green-dark: #7DB53A; /* Left hand */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light-gray: #f9f9f9;
    --border-color: #eaeaea;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: var(--logo-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--logo-green-dark);
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.section-title.light h2 {
    color: var(--primary-white);
}

.underline {
    height: 4px;
    width: 60px;
    background-color: var(--logo-green-light);
    margin: 10px auto 0;
}

.section-title.left .underline {
    margin: 10px 0 0 0;
}

.underline.light {
    background-color: var(--primary-white);
}

.text-center {
    text-align: center;
}

.bg-gray {
    background-color: var(--bg-light-gray);
}

.bg-primary {
    background-color: var(--logo-green-dark);
}

.text-white {
    color: var(--primary-white);
}

.text-white h2, .text-white h3, .text-white p {
    color: var(--primary-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--logo-blue);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #008fcc;
    color: var(--primary-white);
}

.btn-secondary {
    background-color: var(--logo-green-dark);
    color: var(--primary-white);
}

.btn-secondary:hover {
    background-color: #63922d;
    color: var(--primary-white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--logo-blue);
    color: var(--logo-blue);
}

.btn-outline:hover {
    background-color: var(--logo-blue);
    color: var(--primary-white);
}

/* Header */
.header {
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 65px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    color: var(--text-dark);
}

.logo-text p {
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: var(--text-muted);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background-color: #f0f8fb;
    border-bottom: 5px solid var(--logo-green-light);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 90px);
    padding: 40px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text-area {
    flex: 1;
    text-align: left;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--primary-white);
    max-height: 500px;
    object-fit: cover;
}

.tagline {
    font-size: 4rem;
    color: var(--logo-green-dark);
    margin-bottom: 20px;
    font-family: 'Open Sans', cursive;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
}

.value-prop {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}



/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* overlay for text readability */
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 {
    font-size: 3.5rem;
    color: var(--primary-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Us */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.mission-vision-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bg-light-green {
    background-color: #f6fbf0;
    border-top: 4px solid var(--logo-green-dark);
}

.bg-light-blue {
    background-color: #f0fafd;
    border-top: 4px solid var(--logo-blue);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--logo-green-light);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--logo-blue);
}

/* Value Proposition - Modern Split Blocks */
.value-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px; /* larger spacing for full block feel */
    margin-top: 40px;
}

.value-feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.value-feature-img {
    flex: 1;
    position: relative;
}

.value-feature-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 400px;
}

/* Add a subtle decorative background block behind the image */
.value-feature-img::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: 20px;
    left: -20px;
    right: 20px;
    background-color: var(--logo-green-light);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

.value-feature-block:nth-child(even) .value-feature-img::before {
    left: 20px;
    right: -20px;
    background-color: var(--logo-blue);
}

.value-feature-text {
    flex: 1;
}

.value-feature-text .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--logo-green-dark);
    color: var(--primary-white);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(125, 181, 58, 0.4);
}

.value-feature-block:nth-child(even) .check-icon {
    background-color: var(--logo-blue);
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.4);
}

.value-feature-text h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.value-feature-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .value-feature-block, .value-feature-block:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    
    .value-feature-img::before {
        display: none; /* remove decorative block on mobile to save space */
    }
    
    .value-features-wrapper {
        gap: 60px;
    }
}

/* Achievements */
.credibility-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--logo-green-light);
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Customers */
.customers-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer-row-card {
    display: flex;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    align-items: stretch;
}

/* Alternate row direction for every even card */
.customer-row-card:nth-child(even) {
    flex-direction: row-reverse;
}

.customer-image-col {
    flex: 0 0 40%;
    min-height: 250px;
}

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

.customer-text-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer-text-col h4 {
    color: var(--logo-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.customer-text-col p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjustment for row cards */
@media (max-width: 768px) {
    .customer-row-card, .customer-row-card:nth-child(even) {
        flex-direction: column;
    }
    .customer-image-col {
        flex: 0 0 200px;
    }
    .customer-text-col {
        padding: 20px;
    }
}

/* Leadership */
.leader-profile {
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.leader-icon {
    font-size: 4rem;
    color: var(--logo-blue);
    margin-bottom: 20px;
}

.leader-profile h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.designation {
    color: var(--logo-green-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.leader-note {
    font-style: italic;
    color: var(--text-muted);
}

/* Contact & Careers */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    color: var(--logo-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-block p {
    color: var(--text-muted);
}

.careers-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.careers-info p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--primary-white);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-brand h3 {
    color: var(--primary-white);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--logo-green-light);
    font-style: italic;
    font-weight: 600;
}

.footer-links h4 {
    color: var(--primary-white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--logo-blue);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: auto;
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 15px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text-area {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .tagline {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-height: 350px;
    }
    
    .logo-text {
        display: none; /* Hide text on very small screens to keep header clean */
    }
}

@media (min-width: 769px) {
    .logo-text {
        display: block;
    }
}
