/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height:  1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background:  #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display:  flex;
    list-style:  none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a.active {
    color: #00b8a9;
}

.nav-menu a.active::after {
    content:  '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00b8a9;
}

.nav-menu a:hover {
    color: #00b8a9;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - White Background */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 60px 20px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-size: 56px;
    font-weight:  700;
    color: #00b8a9;
    margin-bottom: 40px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.cta-button {
    display:  inline-block;
    background:  #ff6b6b;
    color:  #fff;
    padding: 15px 50px;
    text-decoration:  none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}

/* Parallax Background Images */
.parallax-bg {
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position:  relative;
    overflow: hidden;
}

/* Content Sections with White Background */
.content-section {
    background: #fff;
    padding:  80px 20px;
}

/* About Section */
.section-title {
    font-size: 36px;
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vision Section */
.vision-section .section-title {
    color: #00b8a9;
}

.vision-text {
    text-align: center;
    font-size: 18px;
    line-height:  1.8;
    color: #00b8a9;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
}

/* Leadership Section */
.leadership-section .section-title {
    color:  #00b8a9;
}

.leader-card {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.leader-name {
    color: #00b8a9;
    font-size: 24px;
    margin-bottom: 15px;
}

.leader-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Expertise Section */
.expertise-section .section-title {
    color: #333;
}

.expertise-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px;
    font-style: italic;
}

/* CONSISTENT SPACING FOR ALL IMAGE-TEXT PAIRS */
.expertise-item {
    display: flex;
    align-items: center;
    gap: 555px; /* Consistent horizontal gap */
    margin:  40px 0;
    flex-wrap: wrap;
}

.expertise-item.reverse {
    flex-direction:  row-reverse;
}

.expertise-image {
    width: 300px;
    height: 200px;
    object-fit:  cover;
    border-radius:  10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0; /* Prevents image from shrinking */
}

.expertise-content {
    flex: 1;
    min-width: 250px; /* Ensures text doesn't get too narrow */
}

.expertise-title {
    color: #00b8a9;
    font-size: 28px;
    margin-bottom: 15px;
}

.expertise-title-red {
    color: #ff6b6b;
    font-size: 28px;
    margin-bottom: 15px;
}

.expertise-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.expertise-highlight {
    margin-top: 15px;
    font-style: italic;
    text-decoration: underline;
    color:  #333;
}

/* Strategic Planning Section */
.strategic-content {
    text-align: center;
}

.strategic-image {
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

.strategic-text {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Structural Audit Section - CONSISTENT SPACING */
.structural-audit-content {
    display: flex;
    align-items: center;
    gap: 555px; /* Same as expertise items */
    flex-wrap: wrap;
}

.structural-audit-image {
    flex-shrink: 0;
}

.structural-audit-image img {
    width: 300px; /* Same as expertise images */
    height: 200px; /* Same as expertise images */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.structural-audit-text {
    flex: 1;
    min-width: 250px;
}

.section-title-green {
    font-size: 36px;
    color: #00b8a9;
    margin-bottom: 15px;
    font-weight: 700;
}

.audit-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.note-text {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 15px;
}

/* Manpower Management Section - CONSISTENT SPACING */
.manpower-content {
    display: flex;
    align-items: center;
    gap: 555px; /* Same as other sections */
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Image on right, text on left */
}

.manpower-image {
    flex-shrink: 0;
}

.manpower-image img {
    width:  300px; /* Same as other images */
    height: 200px; /* Same as other images */
    object-fit: cover;
    border-radius: 10px;
    box-shadow:  0 5px 15px rgba(0,0,0,0.1);
}

.manpower-text {
    flex: 1;
    min-width: 250px;
}

.manpower-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

/* Social Impact Assessment Section - CONSISTENT SPACING */
.social-impact-content {
    display: flex;
    align-items: center;
    gap: 555px; /* Same as other sections */
    flex-wrap: wrap;
}

.social-impact-image {
    flex-shrink: 0;
}

.social-impact-image img {
    width: 300px; /* Same as other images */
    height: 200px; /* Same as other images */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-impact-text {
    flex: 1;
    min-width: 250px;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.impact-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.association-text {
    font-size:  14px;
    color:  #777;
    font-style: italic;
}

/* Legal Experts and Corporate Affairs Side by Side */
.legal-corporate-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.legal-experts-box,
.corporate-affairs-box {
    flex: 1;
    min-width: 280px;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.section-title-large {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-list {
    font-size: 16px;
    line-height: 2;
    color: #555;
    list-style-position: inside;
}

.section-subtitle {
    font-size: 20px;
    color: #00b8a9;
    margin:  25px 0 10px;
    font-weight: 600;
}

.section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Why Choose Growthz Section */
.why-choose-section {
    text-align: center;
    background: #f8f9fa;
}

.section-title-dark {
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.why-choose-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width:  900px;
    margin: 0 auto 40px;
}

.cta-button-red {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 15px 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button-red:hover {
    background: #ff5252;
    transform:  translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 20px;
    text-align:  center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform:  translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width:  100%;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .parallax-bg {
        background-attachment: scroll;
        height: 400px;
        background-size: cover;
        background-position: center center;
    }

    /* Stack image and text vertically on mobile */
    .expertise-item,
    .expertise-item.reverse,
    .social-impact-content,
    .structural-audit-content,
    .manpower-content {
        flex-direction: column;
        gap: 20px;
    }

    /* Make images full width on mobile */
    .expertise-image,
    .social-impact-image img,
    .structural-audit-image img,
    .manpower-image img {
        width:  100%;
        max-width: 400px;
        height: auto;
        min-height: 200px;
    }

    .legal-corporate-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-large {
        font-size: 28px;
    }

    .section-title-dark {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size:  24px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 45px;
    }

    .cta-button,
    .cta-button-red {
        padding: 12px 35px;
        font-size:  16px;
    }

    .expertise-title,
    .expertise-title-red,
    .section-title-green {
        font-size: 24px;
    }
}