* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --secondary-color: #1e3a5f;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --bg-alt: #f3f4f6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #1a1a2e;
    padding: 0.5rem 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar-icon {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon,
.search-icon {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-icon:hover,
.search-icon:hover {
    color: var(--primary-color);
}

/* Main Navigation */
.main-navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.main-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    position: relative;
}

.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    margin-bottom: 11px;
}

.main-nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav-link:hover,
.main-nav-link.active {
    color: var(--primary-color);
}

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

.main-nav-link:hover::after,
.main-nav-link.active::after {
    width: 100%;
}

/* Extended Logo */
.extended-logo {
    position: absolute;
    top: 0;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.extended-logo-icon {
    color: var(--primary-color);
}

.extended-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(13, 148, 136, 0.3) 100%);
    z-index: 2;
}

.slide-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.geo-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.geo-line-1 {
    width: 2px;
    height: 200px;
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
}

.geo-line-2 {
    width: 150px;
    height: 2px;
    top: 40%;
    right: 10%;
}

.geo-line-3 {
    width: 2px;
    height: 150px;
    bottom: 25%;
    right: 20%;
    transform: rotate(-30deg);
}

.geo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.geo-dot-1 {
    top: 30%;
    right: 25%;
}

.geo-dot-2 {
    top: 50%;
    right: 18%;
}

.geo-dot-3 {
    bottom: 35%;
    right: 12%;
}

.slide-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle-line {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.hero-subtitle span {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    max-width: 700px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    width: fit-content;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-white {
    font-size: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--white);
    padding: 6rem 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-images {
    position: relative;
}

.image-collage {
    position: relative;
    height: 500px;
}

.collage-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.collage-img-1 {
    width: 55%;
    height: 65%;
    top: 0;
    left: 0;
}

.collage-img-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 0;
}

.collage-img-3 {
    width: 35%;
    height: 35%;
    top: 15%;
    right: 15%;
}

.experience-badge {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.badge-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    text-align: center;
    padding: 1rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.feature-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.feature-block p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.cta-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* What We Deliver Section */
.deliver-section {
    padding: 0;
}

.deliver-split-layout {
    display: flex;
    min-height: 600px;
}

.deliver-left {
    width: 35%;
    position: relative;
}

.deliver-left-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.deliver-right {
    width: 65%;
    background-color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
}

.deliver-header {
    text-align: center;
    margin-bottom: 3rem;
}

.deliver-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.heading-dot {
    color: var(--text-dark);
    font-size: 2.5rem;
    line-height: 1;
}

.deliver-slider-wrapper {
    position: relative;
}

.deliver-cards-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

.deliver-cards-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 32px;
    height: 32px;
    background-color: #7A9A32;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2;
}

.service-content {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    margin-top: auto;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.service-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.service-btn {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.deliver-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.deliver-prev-btn,
.deliver-next-btn {
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deliver-prev-btn:hover,
.deliver-next-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.deliver-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.deliver-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.deliver-slider-dot.active {
    background: var(--text-dark);
    width: 24px;
    border-radius: 4px;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 6rem 2rem;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How We Work Process Section */
.how-we-work-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.process-intro {
    padding: 2rem;
}

.process-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #F36A54;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.process-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.process-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-cta {
    display: inline-block;
    background-color: #F36A54;
    color: var(--white);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.process-cta:hover {
    background-color: #e55a44;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 106, 84, 0.3);
}

.process-timeline {
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F36A54 0%, #F36A54 100%);
    z-index: 1;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(243, 106, 84, 0.08);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(243, 106, 84, 0.15);
    border-color: #F36A54;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F36A54;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* The Opportunity Section */
.opportunity-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.opportunity-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.opportunity-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.opportunity-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.opportunity-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(243, 106, 84, 0.1);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(243, 106, 84, 0.15);
    border-color: #F36A54;
}

.opportunity-number {
    font-size: 4rem;
    font-weight: 700;
    color: #F36A54;
    margin-bottom: 1rem;
    line-height: 1;
}

.opportunity-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.opportunity-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Secure Section */
.secure-section {
    background-color: var(--white);
}

.secure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.secure-image {
    height: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

.card-small {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.card-small:hover {
    transform: translateY(-3px);
}

.card-small h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: #0a192f;
    color: #FFFFFF;
    padding: 4rem 2rem 2rem;
}

.main-footer {
    background-color: #0a192f;
    color: #FFFFFF;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #0d9488;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
    color: #64748b;
    font-size: 14px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Company/Brand Section */
.footer-brand-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-brand-description {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Section Titles */
.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Section */
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 12px;
}

.footer-nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav-links a:hover {
    color: #0d9488;
    padding-left: 5px;
}

/* Information/Contact Section */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 15px;
}

.footer-contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Opening Hours Section */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 15px;
}

.hours-day {
    font-weight: 500;
    color: #e2e8f0;
}

.hours-time {
    color: #94a3b8;
}

/* Social Media Section */
.footer-social-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #0d9488;
    transform: translateY(-3px);
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.footer-credit {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 12rem 2rem;
    text-align: center;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.contact-hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

/* Contact Main Section */
.contact-main-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Contact Form Section */
.contact-form-section {
    background-color: #FFFFFF;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.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: 600;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    color: #FFFFFF;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-header {
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
}

.contact-info-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-info-cards {
    display: grid;
    gap: 25px;
}

.contact-info-card {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.contact-info-card-text {
    font-size: 15px;
    color: #64748b;
    margin: 5px 0;
}

/* Business Hours Card */
.business-hours-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 30px;
    border-radius: 12px;
    color: #FFFFFF;
}

.business-hours-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.business-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours-list li:last-child {
    border-bottom: none;
}

.hours-label {
    font-weight: 500;
    color: #e2e8f0;
}

.hours-value {
    color: #94a3b8;
}

/* Contact Map Section */
.contact-map-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
}

.contact-map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-map-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
}

.contact-map-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.contact-map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-map-embed iframe {
    width: 100%;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-heading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 6rem 1.5rem;
    }
    
    .contact-hero-heading {
        font-size: 36px;
    }
    
    .contact-main-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-form-title,
    .contact-info-title,
    .contact-map-title {
        font-size: 28px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .business-hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social-section {
        flex-wrap: wrap;
    }
    
    .footer-hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle span {
        font-size: 0.9rem;
    }

    .geo-line-1,
    .geo-line-2,
    .geo-line-3 {
        display: none;
    }

    .geo-dot-1,
    .geo-dot-2,
    .geo-dot-3 {
        display: none;
    }

    .section-title,
    .section-title-left {
        font-size: 2rem;
    }

    .solutions-grid,
    .secure-grid {
        grid-template-columns: 1fr;
    }

    .image-collage {
        height: 400px;
    }

    .collage-img-1 {
        width: 70%;
        height: 60%;
    }

    .collage-img-2 {
        width: 50%;
        height: 40%;
    }

    .collage-img-3 {
        width: 40%;
        height: 30%;
    }

    .badge-circle {
        width: 100px;
        height: 100px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .cta-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .deliver-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliver-split-layout {
        flex-direction: column;
    }

    .deliver-left {
        width: 100%;
        height: 300px;
    }

    .deliver-right {
        width: 100%;
        padding: 3rem 2rem;
    }

    .deliver-heading {
        font-size: 2rem;
    }

    .deliver-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        width: 100%;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-line {
        display: none;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .opportunity-cards {
        grid-template-columns: 1fr;
    }

    .opportunity-heading {
        font-size: 2.5rem;
    }

    .opportunity-number {
        font-size: 3rem;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .secure-image {
        height: 300px;
    }
}

/* Energy Hero Section */
.energy-hero-section {
    position: relative;
    height: 850px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.energy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 0.5s ease;
}

.energy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.8) 0%, rgba(30, 58, 95, 0.6) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.energy-hero-curves {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.curve-shape {
    position: absolute;
    width: 100%;
    height: 100%;
}

.curve-1 {
    top: 0;
    right: 0;
    opacity: 0.4;
    filter: blur(2px);
}

.curve-2 {
    top: 5%;
    right: 5%;
    opacity: 0.35;
    filter: blur(3px);
}

.curve-3 {
    top: 10%;
    right: 10%;
    opacity: 0.3;
    filter: blur(4px);
}

.energy-hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.energy-hero-left {
    max-width: 600px;
    position: relative;
    z-index: 5;
}

.energy-hero-small-text {
    font-size: 14px;
    color: #DDEEFF;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.energy-hero-heading {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 600px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.energy-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.energy-hero-cta {
    display: inline-block;
    background-color: #F4C400;
    color: #1f2937;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 196, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.energy-hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(244, 196, 0, 0.5);
}

/* Services Hero Section */
.services-hero-section {
    width: 100%;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    background-color: var(--white);
}

.services-hero-wrapper {
    width: 100%;
    max-width: 2100px;
    margin: 0 auto;
    padding: 1.rem 2rem 0;
}

.services-hero-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    min-height: clamp(620px, 85vh, 820px);
    border-radius: 18px;
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 5rem 3rem 2.5rem;
}

.services-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    margin-bottom: 3rem;
}

.services-hero-eyebrow {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.services-hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.services-hero-heading-line {
    display: block;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
}

.services-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    align-self: stretch;
}

.services-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    text-decoration: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.services-hero-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.services-hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.services-hero-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.35;
}

/* About Us Section */
.about-us-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-us-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4.5rem;
}

.about-us-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-us-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-us-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-us-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-us-block:last-child {
    margin-bottom: 0;
}

.about-us-block-reverse .about-us-block-visual {
    order: 2;
}

.about-us-block-reverse .about-us-block-content {
    order: 1;
}

.about-us-block-visual {
    position: relative;
}

.about-us-image {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.about-us-badge {
    position: absolute;
    bottom: -1.25rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

.about-us-badge-alt {
    left: auto;
    right: 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a6f 100%);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.35);
}

.about-us-block-content {
    padding: 0 0.5rem;
}

.about-us-block-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-us-block-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.about-us-block-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-us-block-text:last-of-type {
    margin-bottom: 0;
}

/* Energy Navigation Tabs */
.energy-nav-tabs {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: static;
    z-index: 998;
}

.energy-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.energy-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2.5rem;
    height: 70px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    background-color: #f8fafc;
}

.energy-tab:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.energy-tab.active {
    color: var(--primary-color);
    background-color: white;
}

.energy-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.tab-icon {
    font-size: 28px;
}

.tab-text {
    font-size: 16px;
}

@media (max-width: 768px) {
    .energy-tabs-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .energy-tab {
        flex: 0 0 calc(50% - 0.25rem);
        padding: 0 1rem;
        height: 60px;
        font-size: 14px;
    }

    .tab-icon {
        font-size: 24px;
    }

    .tab-text {
        font-size: 14px;
    }
}

/* Energy Dynamic Content */
.energy-dynamic-content {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    min-height: 470px;
}

.energy-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInSlide 0.5s ease;
}

/* Carbon Banner Section */
.carbon-banner-section {
    position: relative;
    margin-bottom: 4rem;
}

.carbon-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carbon-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

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

.carbon-banner-heading {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carbon-cards-container {
    max-width: 1200px;
    margin: -170px auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.carbon-info-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carbon-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carbon-card-icon {
    font-size: 32px;
    margin-bottom: 1rem;
}

.carbon-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.carbon-card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Carbon Banner Section */
@media (max-width: 1024px) {
    .carbon-banner-heading {
        font-size: 40px;
    }

    .carbon-cards-container {
        gap: 1.5rem;
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .carbon-banner {
        height: 350px;
    }

    .carbon-banner-heading {
        font-size: 32px;
    }

    .carbon-cards-container {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1rem;
        padding: 0 1rem;
    }

    .carbon-info-card {
        padding: 1.5rem;
    }

    .carbon-card-icon {
        font-size: 28px;
        margin-bottom: 0.75rem;
    }

    .carbon-card-title {
        font-size: 18px;
    }

    .carbon-card-desc {
        font-size: 14px;
    }
}

/* CCX Features Section */
.ccx-features-section {
    padding: 6rem 2rem;
    background-color: #f8fafc;
}

.ccx-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ccx-feature-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.ccx-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ccx-feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.ccx-feature-icon {
    font-size: 32px;
}

.ccx-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.ccx-feature-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for CCX Features Section */
@media (max-width: 1024px) {
    .ccx-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ccx-features-section {
        padding: 4rem 1.5rem;
    }

    .ccx-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Energy Content List */
.energy-content-list {
    list-style: none;
    padding: 0;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.energy-content-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-bottom: none;
    background-color: var(--bg-light);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.975rem;
    line-height: 1.45;
    transition: background-color 0.2s ease;
}

.energy-content-list li:hover {
    background-color: rgba(13, 148, 136, 0.08);
}

.energy-list-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.12);
    color: var(--primary-color);
}

.energy-content-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.energy-content-text-block {
    max-width: 560px;
}

.energy-content-visual {
    position: relative;
}

.energy-content-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutSlide {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.energy-content-wrapper.fade-out {
    animation: fadeOutSlide 0.3s ease forwards;
}

.energy-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .energy-content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .energy-content-main {
        order: 1;
    }

    .energy-content-visual {
        order: 2;
    }

    .energy-stats {
        order: 3;
        margin-top: 0;
    }
}

.energy-content-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.energy-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.energy-content-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.energy-content-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: fit-content;
}

.energy-content-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.energy-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.energy-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.energy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.energy-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.energy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.energy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.energy-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: white;
}

.energy-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.energy-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .energy-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .energy-stat {
        padding: 0.75rem;
    }

    .energy-stat-number {
        font-size: 1.25rem;
    }

    .energy-stat-label {
        font-size: 0.75rem;
    }
}

.energy-content-side {
    position: relative;
}

.energy-side-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.energy-faq-section {
    margin-top: 3rem;
}

.energy-faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.energy-faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.energy-faq-question {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.energy-faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

.energy-testimonials {
    margin-top: 3rem;
}

.energy-testimonials-inline {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.energy-testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.energy-testimonials-inline .energy-testimonial-text {
    color: #0d9488;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.8;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-left: 4px solid #0d9488;
    border-radius: 8px;
}

.energy-testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.energy-testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.energy-testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 992px) and (min-width: 769px) {
    .services-hero-wrapper {
        padding: 1.25rem 1.5rem 0;
    }
}

/* Responsive Design for Services Page */

/* Services Hero Section Responsive */
@media (max-width: 1024px) {
    .services-hero-wrapper {
        padding: 1rem 1.5rem 0;
    }

    .services-hero-container {
        min-height: clamp(600px, 80vh, 800px);
        border-radius: 20px;
    }

    .services-hero-content {
        padding: 4rem 2rem 2rem;
    }

    .services-hero-cards {
        gap: 1rem;
    }

    .services-hero-card {
        padding: 1.5rem 1rem;
    }

    .services-hero-heading-line {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-wrapper {
        padding: 1rem 1rem 0;
    }

    .services-hero-container {
        min-height: clamp(560px, 90vh, 720px);
        border-radius: 16px;
    }

    .services-hero-content {
        padding: 3.5rem 1.25rem 1.75rem;
    }

    .services-hero-text {
        margin-bottom: 2rem;
    }

    .services-hero-eyebrow {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .services-hero-heading-line {
        font-size: 2rem;
        line-height: 1.2;
    }

    .services-hero-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .services-hero-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .services-hero-card-title {
        font-size: 0.95rem;
    }
}

/* About Us Section Responsive */
@media (max-width: 1024px) {
    .about-us-section {
        padding: 5rem 2rem;
    }

    .about-us-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-us-block-reverse .about-us-block-visual,
    .about-us-block-reverse .about-us-block-content {
        order: unset;
    }

    .about-us-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 4rem 1.5rem;
    }

    .about-us-header {
        margin-bottom: 3rem;
    }

    .about-us-title {
        font-size: 2rem;
    }

    .about-us-intro {
        font-size: 0.95rem;
    }

    .about-us-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .about-us-block-reverse .about-us-block-visual,
    .about-us-block-reverse .about-us-block-content {
        order: unset;
    }

    .about-us-image {
        height: 280px;
    }

    .about-us-badge {
        left: 1.5rem;
        bottom: -1rem;
    }

    .about-us-badge-alt {
        right: 1.5rem;
        left: auto;
    }

    .about-us-block-heading {
        font-size: 1.5rem;
    }

    .about-us-block-text {
        font-size: 0.9rem;
    }
}

/* Trust Stats Section Responsive */
@media (max-width: 1024px) {
    .trust-stats-section {
        padding: 6rem 2rem;
    }

    .trust-stats-container {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-image-banner {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .trust-stats-section {
        padding: 5rem 1.5rem;
    }

    .trust-image-banner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-description {
        font-size: 0.9rem;
    }

    .trust-main-heading {
        font-size: 2rem;
    }

    .trust-bottom-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-experience-number {
        font-size: 3rem;
    }

    .trust-experience-sub,
    .trust-experience-main {
        font-size: 1rem;
    }

    .trust-feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-feature-title {
        font-size: 1rem;
    }

    .trust-feature-desc {
        font-size: 0.85rem;
    }
}

/* Feature Grid Section Responsive */
@media (max-width: 1024px) {
    .feature-grid-section {
        padding: 2rem 3rem;
    }

    .feature-grid-content {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-grid-heading {
        font-size: 2.5rem;
    }

    .feature-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .illustration-worker {
        width: 200px;
    }

    .illustration-solar {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .feature-grid-section {
        padding: 0.5rem 1.5rem 2rem;
        margin-top: -4.1rem;
        margin-bottom: 15.1rem;
        position: relative;
        z-index: 1;
    }

    .feature-grid-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-grid-heading {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        order: 1;
        position: relative;
        z-index: 1;
    }

    .feature-grid-content {
        flex-direction: column;
        gap: 0.5rem;
        order: 3;
        position: relative;
        z-index: 2;
    }

    .feature-illustration {
        display: block;
        order: 2;
        height: 180px;
        position: relative;
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .illustration-frame {
        display: none;
    }

    .illustration-worker {
        position: relative;
        width: 100px;
        height: 140px;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }

    .illustration-solar {
        position: relative;
        width: 80px;
        height: 60px;
        top: auto;
        right: auto;
        transform: none;
        margin: -20px auto 0;
    }

    .illustration-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 5px auto 0;
        padding: 0.5rem 1rem;
    }

    .illustration-card-text {
        font-size: 0.75rem;
    }

    .feature-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-grid-item {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }
}

/* Trust Statistics Section */
.trust-stats-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
}

.trust-stats-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.trust-stats-left {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
}

.trust-stats-right {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
}

/* Image Banner */
.trust-image-banner {
    display: flex;
    width: 100%;
    height: 320px;
    margin-bottom: 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-image-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-image-card:last-child {
    border-right: none;
}

.trust-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-image-card:hover .trust-card-image {
    transform: scale(1.05);
}

.trust-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.5px;
    backdrop-filter: blur(5px);
}

.trust-label-green {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.95) 0%, rgba(8, 145, 178, 0.95) 100%);
    color: #FFFFFF;
}

.trust-label-white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    color: #1a1a1a;
}

/* Description */
.trust-description {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 95%;
    font-weight: 400;
}

/* Bullet List */
.trust-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trust-bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.trust-bullet-item:hover {
    padding-left: 10px;
}

.trust-bullet-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.trust-bullet-item span {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}

/* Right Column */
.trust-main-heading {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.trust-bottom-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Experience Card */
.trust-experience-card {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFFFFF 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.trust-experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border-color: #0d9488;
}

.trust-experience-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-experience-sub {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.trust-experience-main {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

/* Feature Stack */
.trust-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

.trust-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.trust-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: #0d9488;
}

.trust-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-feature-content {
    flex: 1;
}

.trust-feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.trust-feature-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Trust Statistics Section */
@media (max-width: 1024px) {
    .trust-stats-container {
        gap: 60px;
    }

    .trust-main-heading {
        font-size: 44px;
    }

    .trust-image-banner {
        height: 240px;
    }

    .trust-experience-card {
        width: 180px;
        height: 180px;
    }

    .trust-experience-number {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .trust-stats-section {
        padding: 5rem 1.5rem;
    }

    .trust-stats-container {
        flex-direction: column;
        gap: 50px;
    }

    .trust-stats-left,
    .trust-stats-right {
        flex: 1;
        width: 100%;
    }

    .trust-image-banner {
        height: 200px;
    }

    .trust-main-heading {
        font-size: 38px;
    }

    .trust-bottom-layout {
        flex-direction: column;
        align-items: center;
    }

    .trust-experience-card {
        width: 160px;
        height: 160px;
    }

    .trust-experience-number {
        font-size: 56px;
    }

    .trust-feature-stack {
        width: 100%;
    }

    .trust-feature-item {
        padding: 16px;
    }
}

/* Feature Grid Section */
.feature-grid-section {
    padding: 3rem 5rem;
    background-color: #FFFFFF;
}

.feature-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-grid-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.feature-grid-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left Illustration */
.feature-illustration {
    flex: 0 0 40%;
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
}

.illustration-frame {
    position: absolute;
    width: 360px;
    height: 480px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    z-index: 1;
    left: -20px;
}

.illustration-worker {
    position: absolute;
    z-index: 2;
    width: 280px;
    height: 380px;
    top: 15%;
    left: 10%;
}

.worker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.illustration-solar {
    position: absolute;
    z-index: 3;
    width: 240px;
    height: 160px;
    bottom: 60px;
    left: 15%;
    transform: rotate(-5deg);
}

.solar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.illustration-card {
    position: absolute;
    z-index: 4;
    background-color: #FFFFFF;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    top: 25%;
    left: 50%;
    min-width: 140px;
}

.illustration-card-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.illustration-card-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Right Feature Grid */
.feature-grid-right {
    flex: 0 0 60%;
}

.feature-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-grid-item {
    display: flex;
    background-color: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #0d9488;
}

.feature-icon-strip {
    flex: 0 0 25%;
    background-color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.feature-strip-icon {
    font-size: 20px;
    color: #FFFFFF;
}

.feature-content-area {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    min-height: 70px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Responsive Design for Feature Grid Section */
@media (max-width: 1024px) {
    .feature-grid-section {
        padding: 2rem 3rem;
    }

    .feature-grid-heading {
        font-size: 40px;
    }

    .feature-grid-content {
        gap: 50px;
    }

    .feature-illustration {
        height: 420px;
    }

    .illustration-frame {
        width: 300px;
        height: 400px;
        left: -10px;
    }

    .illustration-worker {
        width: 240px;
        height: 340px;
        top: 12%;
        left: 8%;
    }

    .illustration-solar {
        width: 200px;
        height: 130px;
        left: 12%;
    }

    .feature-grid-wrapper {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .feature-grid-section {
        padding: 2rem 1.5rem;
    }

    .feature-grid-heading {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .feature-grid-content {
        flex-direction: column;
        gap: 40px;
    }

    .feature-illustration,
    .feature-grid-right {
        flex: 1;
        width: 100%;
    }

    .feature-illustration {
        height: 380px;
        justify-content: center;
    }

    .illustration-frame {
        width: 260px;
        height: 360px;
        left: 50%;
        transform: translateX(-50%);
    }

    .illustration-worker {
        width: 210px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .illustration-solar {
        width: 170px;
        height: 120px;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
    }

    .feature-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.card-small {
    animation: fadeIn 0.6s ease forwards;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Project Page Hero Section */
.project-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.project-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.project-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.project-hero-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-hero-right {
    flex: 0 0 55%;
}

.project-hero-label {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0;
}

.project-hero-description {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.project-hero-buttons {
    display: flex;
    gap: 15px;
}

.project-btn-primary {
    background-color: #0d9488;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.project-btn-primary:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
}

.project-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    padding: 14px 32px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.project-btn-secondary:hover {
    background-color: #FFFFFF;
    color: #0f172a;
}

.project-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Project Statistics Strip */
.project-stats-strip {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.project-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.project-stat-icon {
    font-size: 32px;
}

.project-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.project-stat-text {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Project Introduction Section */
.project-intro-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.project-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.project-intro-left {
    flex: 0 0 45%;
}

.project-intro-right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-intro-collage {
    position: relative;
    height: 450px;
}

.project-collage-large {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.project-collage-small {
    position: absolute;
    width: 50%;
    height: 40%;
    bottom: 0;
    right: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-collage-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    border-radius: 50%;
    top: 50%;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
}

.project-circle-badge {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
}

.project-intro-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-intro-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.project-intro-description {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.project-intro-btn {
    background-color: #0d9488;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-intro-btn:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
}

/* Project Blue Feature Section */
.project-feature-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
}

.project-feature-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-feature-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-feature-heading {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 15px 0 0 0;
}

.project-feature-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.project-feature-card {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.project-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-feature-icon {
    font-size: 48px;
}

.project-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.project-feature-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.project-feature-btn {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.project-feature-btn:hover {
    color: #0891b2;
}

/* Project Why Choose Us Section */
.project-why-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.project-why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.project-why-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-why-right {
    flex: 0 0 55%;
}

.project-why-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-why-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.project-why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.project-why-item-icon {
    width: 32px;
    height: 32px;
    background-color: #0d9488;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.project-why-item-content {
    flex: 1;
}

.project-why-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.project-why-item-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.project-contact-form {
    background-color: #0f172a;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.project-form-heading {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-form-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.project-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.project-form-input:focus {
    border-color: #0d9488;
    background-color: rgba(255, 255, 255, 0.15);
}

.project-form-textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s ease;
}

.project-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.project-form-textarea:focus {
    border-color: #0d9488;
    background-color: rgba(255, 255, 255, 0.15);
}

.project-form-btn {
    background-color: #0d9488;
    color: #FFFFFF;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-form-btn:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
}

/* Project Showcase Section */
.project-showcase-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.project-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.project-showcase-left {
    flex: 0 0 50%;
}

.project-showcase-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-showcase-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-showcase-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-showcase-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.project-showcase-description {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.project-showcase-btn {
    background-color: #0d9488;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-showcase-btn:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
}

/* Project Portfolio Section */
.project-portfolio-section {
    background-color: #0f172a;
    padding: 6rem 2rem;
}

.project-portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-portfolio-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-portfolio-heading {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 15px 0 0 0;
}

.portfolio-slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-slides-container {
    position: relative;
    height: 500px;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-slide-active {
    opacity: 1;
    z-index: 1;
}

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

.portfolio-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
    padding: 60px 40px 40px 40px;
}

.portfolio-slide-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.portfolio-slide-content p {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.portfolio-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.portfolio-slider-btn:hover {
    background-color: rgba(13, 148, 136, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.portfolio-slider-prev {
    left: 20px;
}

.portfolio-slider-next {
    right: 20px;
}

.portfolio-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.portfolio-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-slider-dot-active {
    background-color: #0d9488;
    transform: scale(1.2);
}

.portfolio-slider-dot:hover {
    background-color: rgba(13, 148, 136, 0.8);
}

/* Project Team Section */
.project-team-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.project-team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-team-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-team-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-team-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 15px 0 0 0;
}

.project-team-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.project-team-card {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.project-team-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.project-team-position {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.project-team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.project-team-social-link {
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-team-social-link:hover {
    transform: scale(1.2);
}

/* Project Blog Section */
.project-blog-section {
    padding: 6rem 2rem;
    background-color: #FFFFFF;
}

.project-blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-blog-label {
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-blog-heading {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 15px 0 0 0;
}

.project-blog-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.project-blog-card {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.project-blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 20px 10px 20px;
}

.project-blog-date {
    color: #64748b;
    font-size: 14px;
    margin: 0 20px 10px 20px;
}

.project-blog-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    flex: 1;
}

.project-blog-link {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin: 0 20px 20px 20px;
    transition: all 0.3s ease;
}

.project-blog-link:hover {
    color: #0891b2;
}

/* Responsive Design for Project Page */
@media (max-width: 1024px) {
    .project-hero-container,
    .project-intro-container,
    .project-why-container,
    .project-showcase-container {
        gap: 40px;
    }

    .project-hero-heading,
    .project-intro-heading,
    .project-why-heading,
    .project-showcase-heading,
    .project-feature-heading,
    .project-portfolio-heading,
    .project-team-heading,
    .project-blog-heading {
        font-size: 36px;
    }

    .project-feature-cards,
    .project-team-cards,
    .project-blog-cards {
        flex-wrap: wrap;
    }

    .project-feature-card,
    .project-team-card,
    .project-blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .project-hero-section,
    .project-stats-strip,
    .project-intro-section,
    .project-feature-section,
    .project-why-section,
    .project-showcase-section,
    .project-portfolio-section,
    .project-team-section,
    .project-blog-section {
        padding: 4rem 1.5rem;
    }

    .project-hero-container,
    .project-intro-container,
    .project-why-container,
    .project-showcase-container {
        flex-direction: column;
    }

    .project-hero-left,
    .project-hero-right,
    .project-intro-left,
    .project-intro-right,
    .project-why-left,
    .project-why-right,
    .project-showcase-left,
    .project-showcase-right {
        flex: 1;
        width: 100%;
    }

    .project-hero-heading {
        font-size: 42px;
    }

    .project-hero-buttons {
        flex-direction: column;
    }

    .project-stats-container {
        flex-wrap: wrap;
    }

    .project-stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .project-feature-cards,
    .project-team-cards,
    .project-blog-cards {
        flex-direction: column;
    }

    .project-feature-card,
    .project-team-card,
    .project-blog-card {
        flex: 1;
    }

    .project-intro-collage {
        height: 350px;
    }
}
