/* Navbar Styles */
.navbar {
    background: transparent;
    transition: all 0.3s ease;
    padding-top: 20px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-logo {
    width: 120px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    width: 100px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-tertiary-teal) !important;
    margin: 0 1rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-green-variant) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--color-green-variant) !important;
    font-weight: 600;
}


/* Add padding to body to account for fixed navbar */

/* Mobile responsive */
@media (max-width: 991px) {
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

/* Additional animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero Section Styles */
.bg-section{
    background: url('./images/img_main_banner_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Alternative Background Sections */
.bg-section-alt {
    background: url('./images/img_sbe_bg_1_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-section-1 {
    background: url('./images/img_sbe_bg_1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-section-2 {
    background: url('./images/img_sbe_bg_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-section-3 {
    background: url('./images/img_sbe_bg_3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background overlay for better text readability */
.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Light overlay for sections with dark backgrounds */
.bg-overlay-light::before {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark overlay for sections with light backgrounds */
.bg-overlay-dark::before {
    background: rgba(0, 0, 0, 0.5);
}
.hero-section{
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-card{
    background: url('./images/img_main_banner.webp');
    background-size: cover;
    background-position: center;
    padding: 80px;
    border-radius: 42px;
}
.hero-content .hero-title{
    font-size: var(--h1-font-size);
    letter-spacing: 0px;
    color: var(--color-neutral-white);
    text-shadow: 0px 3px 6px #000000CC;
    font-weight: 500;
}
.hero-btn{
    background: #FCFFF6 0% 0% no-repeat padding-box;
    border-radius: 41px;
    color: var(--color-tertiary-teal);
}
.hero-actions{
    text-align: end;
}
.hero-tagline{
    font-size: var(--h3-font-size);
    color: var(--color-tertiary-teal);
    font-weight: 600;
}
.hero-tagline span{
    color: var(--color-green-variant);
}
/* Responsive Styles for Hero Section */
@media (max-width: 1200px) {
    .hero-card {
        padding: 60px 40px;
    }
    
    .hero-content .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .hero-card {
        padding: 50px 30px;
        border-radius: 30px;
    }
    
    .hero-content .hero-title {
        font-size: 42px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-tagline {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    
    .hero-card {
        padding: 40px 20px;
        border-radius: 25px;
    }
    
    .hero-content .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-tagline {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .navbar {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 30px;
        padding-bottom: 15px;
    }
    
    .hero-card {
        padding: 30px 15px;
        border-radius: 20px;
    }
    
    .hero-content .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 17px;
        border-radius: 30px;
    }
    
    .hero-tagline {
        font-size: 20px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .navbar-logo {
        width: 100px;
    }
    
    .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 25px 12px;
    }
    
    .hero-content .hero-title {
        font-size: 24px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-btn {
        padding: 8px 16px;
        font-size: 16px;
    }
}/* S
olutions Section Styles */
.solutions-section {
    background-color: #ffffff;
    padding: 30px 0;
}

.solution-card {
    background: #ffffff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: bold;
    color: var(--color-secondary-blue);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.solution-body {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.solution-body {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.solution-icon {
    margin-right: 25px;
    flex-shrink: 0;
}

.solution-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.solution-list li {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-tertiary-teal);
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.solution-list li::before {
    content: "●";
    color: var(--color-secondary-blue);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0px;
}

.solution-list li strong {
    color: var(--color-tertiary-teal);
    font-weight: 600;
}

.solution-action {
    margin-top: auto;
}

.solution-btn {
    background-color: transparent;
    border: 2px solid var(--color-secondary-blue);
    color: var(--color-secondary-blue);
    padding: 10px 25px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    background-color: rgba(var(--color-primary-green-rgb), 0.9);
    color: var(--color-neutral-white);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 63, 146, 0.3);
}

/* Responsive Styles for Solutions Section */
@media (max-width: 991px) {
    .solutions-section {
        padding: 30px 0;
    }
    
    .solution-card {
        margin-bottom: 40px;
    }
    
    .solution-header {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .solution-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .solution-title {
        font-size: 28px;
    }
    
    .solution-list {
        padding-left: 20px;
        text-align: left;
    }
    .infographic-img{
        width: 60%;
    }
    .feedstock-card, .fuel-card, .fertilizer-card{
        margin-bottom: 20px !important;
        height: auto !important;
    }
    .solution-action {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 20px 0;
    }
    
    .solution-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .solution-title {
        font-size: 24px;
    }
    
    .solution-list li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .solution-btn {
        padding: 10px 25px;
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .solutions-section {
        padding: 20px 0;
    }
    
    .solution-card {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .solution-header {
        margin-bottom: 20px;
    }
    
    .solution-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .solution-title {
        font-size: 20px;
    }
    
    .solution-list {
        margin-bottom: 20px;
    }
    
    .solution-list li {
        font-size: 17px;
        margin-bottom: 10px;
        padding-left: 15px;
    }
    
    .solution-btn {
        padding: 8px 20px;
        font-size: 16px;
    }
}

/* 3F Model Section */
.model-section {
    padding: 60px 0;
    background: url('./images/img_sbe_bg_1_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Add overlay for better text readability */
.model-content {
    padding-right: 2rem;
}

.model-header {
    margin-bottom: 2rem;
}

.model-label {
    color: #003F92;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.model-title {
    font-size: var(--h3-font-size);
    font-weight: 600;
    color: #2B3E4B;
    line-height: 1.2;
    margin-bottom: 0;
}

.model-title .highlight-text {
    color: #4CAF50;
}

.model-description p strong {
    color: #5C1A02;
    font-weight: 600;
}

.model-description {
    margin-top: 1.5rem;
}

.model-description p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #2B3E4B;
    margin-bottom: 0;
}

.model-infographic {
    text-align: center;
    padding-left: 2rem;
}

.infographic-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 3F Model Cards */
.model-cards-row {
    margin-top: 4rem;
}

.model-card {
    background: #32C36C;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 25px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.model-card:hover {
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 25px;
    transform: translateY(-5px);
}

.model-card:hover .card-title {
    color: #003E92;
}

.model-card:hover .card-description {
    color: #2B3E4B;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}


.card-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.model-card:hover .number-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    opacity: 1;
}

.card-title {
    font-size: 30px;
    font-weight: bold;
    color: #003E92;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.9;
}

/* All cards have the same green background now */
.feedstock-card,
.fuel-card,
.fertilizer-card {
    background: #32C36C;
}

/* Responsive Design for 3F Model */
@media (max-width: 992px) {
    .model-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .model-infographic {
        padding-left: 0;
    }
    
    .model-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .model-section {
        padding: 60px 0;
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
    }
    
    .model-title {
        font-size: 1.8rem;
    }
    
    .model-cards-row {
        margin-top: 3rem;
    }
    
    .model-card {
        padding: 1.5rem;
    }
    
    .card-number {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .model-content {
        text-align: center;
    }
    
    .model-description p {
        font-size: 1rem;
    }
    
    .card-header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }
    
    .card-icon {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .card-number {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    /* Mobile background adjustments for model section */
    .model-section {
        background-attachment: scroll;
    }
}

/* Energy Storage Section */
.energy-storage-section {
    padding: 60px 0;
    background: url('./images/img_sbe_bg_1_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.energy-content {
    padding-right: 2rem;
}

.energy-header {
    margin-bottom: 2rem;
}

.energy-title {
    font-size: var(--h2-font-size);
    font-weight: 600;
    color: #32C36C;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.energy-title .highlight-text {
    color: #32C36C;
}

.energy-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #003F92;
    margin-bottom: 0;
    line-height: 1.3;
}

.energy-applications {
    margin-top: 1.5rem;
}

.application-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.check-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(78%) saturate(1352%) hue-rotate(87deg) brightness(118%) contrast(101%);
}

.application-text {
    font-size: 20px;
    font-weight: 400;
    color: #2B3E4B;
    line-height: 1.4;
    flex: 1;
}

.application-text strong {
    color: #2B3E4B;
    font-weight: 600;
}

.energy-image {
    text-align: center;
    padding-left: 2rem;
}

.storage-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0px 3px 6px #00000029;
}

/* Responsive Design for Energy Storage */
@media (max-width: 992px) {
    .energy-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .energy-image {
        padding-left: 0;
    }
    
    .energy-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .energy-storage-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .energy-title {
        font-size: 1.8rem;
    }
    
    .energy-subtitle {
        font-size: 20px;
    }
    
    .application-text {
        font-size: 16px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.8rem;
    }
    
    .application-item {
        margin-bottom: 0.4rem;
        padding: 0.2rem 0;
    }
}

@media (max-width: 576px) {
    .energy-content {
        text-align: center;
    }
    
    .energy-applications {
        text-align: left;
    }
    
    .application-text {
        font-size: 17px;
    }
    
    .application-item {
        margin-bottom: 0.3rem;
        padding: 0.15rem 0;
    }
    
    .energy-storage-section {
        background-attachment: scroll;
    }
}

/* Grid-Scale Solutions Section */
.grid-scale-section {
    padding: 60px 0;
    background: url('./images/img_sbe_bg_1_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.grid-scale-content {
    padding-left: 2rem;
}

.grid-scale-header {
    margin-bottom: 2rem;
}

.grid-scale-title {
    font-size: var(--h2-font-size);
    font-weight: 600;
    color: #32C36C;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.grid-scale-title .highlight-text {
    color: #32C36C;
}

.grid-scale-description {
    margin-bottom: 1.5rem;
}

.grid-scale-description p {
    font-size: 20px;
    font-weight: 500;
    color: #003E92;
    line-height: 1.6;
    margin-bottom: 0;
}

.grid-scale-description strong {
    color: #003F92;
    font-weight: 600;
}

.grid-scale-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.feature-item .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-item .check-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(78%) saturate(1352%) hue-rotate(87deg) brightness(118%) contrast(101%);
}

.feature-text {
    font-size: 20px;
    font-weight: 400;
    color: #2B3E4B;
    line-height: 1.4;
    flex: 1;
}

.feature-text strong {
    color: #2B3E4B;
    font-weight: bold;
}

.grid-scale-image {
    text-align: center;
    padding-right: 2rem;
}

.redox-battery-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0px 3px 6px #00000029;
}

/* Responsive Design for Grid-Scale Solutions */
@media (max-width: 992px) {
    .grid-scale-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .grid-scale-image {
        padding-right: 0;
    }
    
    .grid-scale-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-scale-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .grid-scale-title {
        font-size: 1.8rem;
    }
    
    .grid-scale-description p {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .feature-item .check-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.8rem;
    }
    
    .feature-item {
        margin-bottom: 0.4rem;
        padding: 0.2rem 0;
    }
}

@media (max-width: 576px) {
    .grid-scale-content {
        text-align: center;
    }
    
    .grid-scale-features {
        text-align: left;
    }
    
    .feature-text {
        font-size: 17px;
    }
    
    .feature-item {
        margin-bottom: 0.3rem;
        padding: 0.15rem 0;
    }
    
    .grid-scale-section {
        background-attachment: scroll;
    }
}

/* Technology Access Section */
.technology-access-section {
    padding: 60px 0;
    background-color: var(--color-neutral-white);
}

.section-header {
    margin-bottom: 40px;
    text-align: left;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary-green);
    margin-bottom: 0;
    font-family: var(--font-primary);
}

/* Column Container */
.tech-column {
    height: 100%;
}

/* Content Row Styling (Logo + Description) */

.tech-logo-section {
    flex-shrink: 0;
}

.tech-logo {
    width: 80%;
    margin-bottom: 10px;
    height: auto;
    object-fit: contain;
}

.tech-description-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.tech-description {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-tertiary-teal);
    line-height: 1.5;
    margin: 0;
}

.tech-description strong {
    font-weight: 600;
}

/* Image Row Styling */
.tech-image-row {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for Technology Access Section */
@media (max-width: 1200px) {
    .technology-access-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .tech-logo {
        width: 90px;
    }
    
    .tech-description {
        font-size: 16px;
    }
    
    .tech-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .technology-access-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tech-column {
        margin-bottom: 30px;
    }
    
    .tech-content-row {
        padding: 15px;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .tech-logo {
        width: 80px;
    }
    
    .tech-description {
        font-size: 16px;
    }
    
}

@media (max-width: 768px) {
    .technology-access-section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .tech-content-row {
        text-align: center;
        padding: 12px;
        gap: 10px;
        display: flex;
    }
    
    .tech-logo {
        width: 70px;
        align-self: center;
    }
    
    .tech-description-section {
        justify-content: center;
    }
    
    .tech-description {
        font-size: 16px;
        text-align: left;
    }
    .tech-log-second{
        width: 70px !important;
    }
    
}

@media (max-width: 576px) {
    .technology-access-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tech-column {
        margin-bottom: 25px;
    }
    
    .tech-content-row {
        padding: 10px;
        gap: 8px;
        margin-bottom: 10px;
        border-radius: 6px;
    }
    
    .tech-logo {
        width: 70px;
    }
    
    .tech-description {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .tech-image-row {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .technology-access-section {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .tech-content-row {
        padding: 8px;
        gap: 6px;
    }
    
    .tech-logo {
        width: 70px;
    }
    
    .tech-description {
        font-size: 16px;
        line-height: 1.3;
    }
    
}
.tech-log-second{
    width: 130px;
}

/* SDG Section Styles */
.sdg-section {
    padding: 60px 0;
    background: transparent;
}

.sdg-card {
    background: #4CC87D 0% 0% no-repeat padding-box;
    border-radius: 42px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(76, 200, 125, 0.3);
    z-index: 999;
}


.sdg-card .row {
    position: relative;
    z-index: 2;
}

.sdg-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.crop-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sdg-image:hover .crop-img {
    transform: scale(1.05);
}

.sdg-content {
    padding: 40px 40px 40px 40px;
    color: white;
}

.sdg-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sdg-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color:var(--color-tertiary-teal);
}

.sdg-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--color-tertiary-teal);
    transition: opacity 0.3s ease;
}

.sdg-navigation {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.nav-btn img {
    width: 40px;
}


.nav-btn:hover .nav-icon {
    transform: scale(1.1);
}


/* Fallback for when SVG icons don't load */
.nav-btn::after {
    content: '';
    display: none;
}

.nav-prev::after {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.nav-next::after {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.nav-btn img {
    display: block;
}

.nav-btn img:not([src*=".svg"]) + ::after,
.nav-btn img[src=""] + ::after {
    display: block;
}

/* Responsive Styles for SDG Section */
@media (max-width: 991px) {
    .sdg-section {
        padding: 60px 0;
    }
    
    .sdg-card {
        border-radius: 25px;
    }
    
    .sdg-content {
        padding-left: 0;
        padding-top: 40px;
        padding-right: 0px;
        text-align: center;
    }
    
    .sdg-title {
        font-size: 36px;
    }
    
    .sdg-text {
        font-size: 18px;
    }
    
    .sdg-navigation {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sdg-section {
        padding: 50px 0;
    }
    
    .sdg-card {
        border-radius: 20px;
    }
    
    .sdg-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .sdg-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
   
}

@media (max-width: 576px) {
    .sdg-section {
        padding: 40px 0;
    }
    
    .sdg-card {
       border-radius: 15px;
    }
    
    .sdg-content {
        padding-top: 30px;
    }
    
    .sdg-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .sdg-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .sdg-image {
        border-radius: 15px;
    }
    
    .crop-img {
        border-radius: 15px;
    }
}

/* Animation for SDG section elements */
.sdg-section .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.sdg-section .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for better interactivity */
.sdg-section .row {
    align-items: center;
}

.sdg-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.sdg-badge {
    animation-delay: 0.2s;
}

.sdg-title {
    animation-delay: 0.4s;
}

.sdg-text {
    animation-delay: 0.6s;
}

.sdg-navigation {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 60px 0;
    position: relative;
    margin-top: -250px;
    padding-top: 250px !important;
     background: transparent url('images/img_sbe_bg_3.webp') 0% 0% no-repeat padding-box;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
}

.mission-card,
.vision-card {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #2B3E4B;
    border-radius: 42px;
    padding: 25px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    min-height: 120px;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-2px);
}

.card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none !important;
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    filter: none;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 36px;
    font-weight: 700;
    color: #003E92;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.card-description {
    font-size: 20px;
    font-weight: 400;
    color: #1A2A36;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-primary);
}

.statistics-card {
    background: #4CC87D;
    border-radius: 15px;
    height: fit-content;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(76, 200, 125, 0.25);
}

.stats-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.stat-item {
    text-align: left;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: #003E92;
    margin-bottom: 0;
    font-family: var(--font-primary);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    min-width: 160px;
}

.stat-label {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.2;
    font-family: var(--font-primary);
    flex: 1;
}

.stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 10px;
}

.statistics-card {
    background: #4CC87D;
    border-radius: 20px;
    padding: 20px;
    margin-left: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(76, 200, 125, 0.3);
}

.stats-content {
    width: 100%;
}

.stat-item {
    padding: 20px 0;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-secondary-blue);
    margin-bottom: 10px;
    font-family: var(--font-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 24px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
    font-family: var(--font-primary);
    padding-left: 20px;
}

.stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

/* Responsive Styles for Mission & Vision Section */
@media (max-width: 991px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-section::after {
        background-attachment: scroll;
    }
    
    .mission-vision-cards {
        margin-bottom: 40px;
    }
    
    .statistics-card {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-section::after {
        background-attachment: scroll;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px 25px;
        gap: 15px;
        border-radius: 35px;
        min-height: 100px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon,
    .vision-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 16px;
    }
    
    .statistics-card {
        padding: 25px;
        margin-left: 0px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 17px;
    }
    .stat-number{
        min-width: 75px !important;
    }
}

@media (max-width: 576px) {
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-vision-section::after {
        background-attachment: scroll;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 17px;
    }
    
    .statistics-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .stat-item {
        padding: 15px 0;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* Animation for Mission & Vision elements */
.mission-card,
.vision-card,
.statistics-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.mission-card {
    animation-delay: 0.2s;
}

.vision-card {
    animation-delay: 0.4s;
}

.statistics-card {
    animation-delay: 0.6s;
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 1.0s;
}

.stat-item:nth-child(5) {
    animation-delay: 1.2s;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
/* Contact Section Styles */
.contact-section {
    background: #4CC87D 0% 0% no-repeat padding-box;
    padding: 40px 0;
    border-radius: 0px !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    height: 100%;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 50px;
    height: 50px;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-tertiary-teal);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.contact-info {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-tertiary-teal);
    margin: 0;
    font-family: var(--font-primary);
}
.contact-info a{
    font-size: 20px;
    font-weight: 500;
    color: var(--color-tertiary-teal);
    margin: 0;
    font-family: var(--font-primary);
    text-decoration: none;
}
/* Footer Section Styles */
.footer-section {
    background: var(--color-tertiary-teal);
    padding: 60px 0 20px;
    color: white;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4CC87D;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
}

.copyright {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-family: var(--font-primary);
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4CC87D;
    transform: translateY(-2px);
}

.social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Responsive Styles for Contact & Footer */
@media (max-width: 991px) {
    .contact-item {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-info {
        font-size: 18px;
    }
    
    .footer-section {
        padding: 50px 0 20px;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-item {
        padding: 0 15px;
        margin-bottom: 25px;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .contact-title {
        font-size: 18px;
    }
    
    .contact-info {
        font-size: 16px;
    }
    
    .footer-section {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-menu a {
        font-size: 15px;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 0px;
        font-size: 16px;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .footer-description {
        font-size: 17px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-menu a {
        font-size: 17px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}
/* Crop Banner Section Styles */
.crop-banner-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.crop-banner-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.crop-banner-section:hover .banner-img {
    transform: scale(1.02);
}

/* Responsive Styles for Crop Banner */
@media (max-width: 768px) {
    .crop-banner-image {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .crop-banner-image {
        height: 120px;
    }
}

/* Leadership Team Section */
.leadership-team-section {
    padding: 60px 0;
    background-color: var(--color-neutral-white);
}

.leadership-header {
    margin-bottom: 60px;
}

.leadership-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-secondary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.leadership-title {
    font-family: var(--font-primary);
    font-size: var(--h3-font-size);
    font-weight: 700;
    color: var(--color-tertiary-teal);
    line-height: 1.2;
    margin-bottom: 0;
}

.leadership-title .highlight-text {
    color: #4CAF50;
}

/* Owl Carousel Container */
.leadership-slider-container {
    position: relative;
    padding: 0 80px;
}

.leadership-owl-carousel {
    padding: 0;
}

/* Fallback display for when Owl Carousel is not loaded */
.leadership-owl-carousel:not(.owl-loaded) {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.leadership-owl-carousel:not(.owl-loaded) .team-member-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 0;
}

.team-member-item {
    padding: 0 15px;
}

/* Ensure items are visible */
.team-member-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-member-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

.member-image {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.member-img {
    width: 80%;
    border-radius: 15px;
    border: none;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-tertiary-teal);
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-position {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary-blue);
    margin-bottom: 5px;
}

.member-department {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-tertiary-teal);
    margin-bottom: 25px;
    opacity: 1;
    min-height: 30px;
}

.member-btn {
    background-color: #4CAF50;
    border: none;
    color: var(--color-neutral-white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    min-width: 120px;
}

.member-btn:hover {
    background-color: var(--color-secondary-blue);
    transform: translateY(-2px);
}

/* Custom Navigation Arrows */
.owl-nav-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.owl-nav-custom:hover {
    transform: translateY(-50%) scale(1.1);
}

.owl-prev-custom {
    left: 10px;
}

.owl-next-custom {
    right: 10px;
}

.nav-arrow {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.owl-nav-custom:hover .nav-arrow {
    transform: scale(1.1);
}

/* Hide default Owl Carousel navigation */
.leadership-owl-carousel .owl-nav {
    display: none;
}

.leadership-owl-carousel .owl-dots {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .leadership-team-section {
        padding: 60px 0;
    }
    
    .leadership-title {
        font-size: 42px;
    }
    
    .leadership-slider-container {
        padding: 0 60px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .leadership-team-section {
        padding: 50px 0;
    }
    
    .leadership-header {
        margin-bottom: 40px;
    }
    
    .leadership-title {
        font-size: 36px;
    }
    
    .leadership-slider-container {
        padding: 0 50px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-position {
        font-size: 18px;
    }
    
    .member-department {
        font-size: 16px;
    }
    
    .owl-nav-custom {
        width: 50px;
        height: 50px;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .leadership-team-section {
        padding: 40px 0;
    }
    
    .leadership-title {
        font-size: 28px;
    }
    
    .leadership-slider-container {
        padding: 0 40px;
    }
    
    .member-img {
        border-radius: 12px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-position {
        font-size: 18px;
    }
    
    .member-department {
        font-size: 16px;
    }
    
    .member-btn {
        font-size: 16px;
        padding: 10px 25px;
        min-width: 100px;
    }
    
    .owl-nav-custom {
        width: 40px;
        height: 40px;
    }
    
    .owl-prev-custom {
        left: 5px;
    }
    
    .owl-next-custom {
        right: 5px;
    }
    
    .nav-arrow {
        width: 25px;
        height: 25px;
    }
}

/* Bioenergy Projects Section */
.bioenergy-projects-section {
    padding: 0;
    margin: 0;
    position: relative;
}

.projects-banner {
    position: relative;
    padding: 80px 0px;
    background-image: url('./images/img_sbe_bg_3.webp');
    overflow: hidden;
        background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.projects-header {
    margin-bottom: 60px;
}

.projects-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-secondary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.projects-title {
    font-family: var(--font-primary);
    font-size: var(--h3-font-size);
    font-weight: 700;
    color: var(--color-tertiary-teal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.projects-title .highlight-text {
    color: #4CAF50;
}

.projects-description {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-tertiary-teal);
    line-height: 1.6;
    margin-bottom: 0;
}


.project-card {
    background: #32C36C 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 17px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    margin:20px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(50, 195, 108, 0.4);
}

.project-content {
    width: 100%;
}

.project-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-tertiary-teal);
    margin-bottom: 8px;
    line-height: 1.2;
}

.project-location {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

/* Responsive Styles for Bioenergy Projects Section */
@media (max-width: 992px) {
    .projects-title {
        font-size: 42px;
    }
    
    .projects-description {
        font-size: 18px;
    }
    
    .project-card {
        height: 120px;
        padding: 25px 20px;
    }
    
    .project-name {
        font-size: 22px;
    }
    .blog-card-wrapper{
        margin-bottom: 0px !important;
    }
    .blog-content-card{
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
}

@media (max-width: 768px) {
    
    
    .projects-header {
        margin-bottom: 40px;
    }
    
    .projects-title {
        font-size: 36px;
    }
    
    .projects-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    
    .project-card {
        height: 110px;
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .project-name {
        font-size: 20px;
    }
    
    .project-location {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    
    .projects-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .projects-description {
        font-size: 17px;
        padding: 0 10px;
    }
    
    .project-card {
        height: 100px;
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .project-name {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .project-location {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    
    .projects-title {
        font-size: 24px;
    }
    
    .projects-description {
        font-size: 16px;
    }
    
    .project-card {
        height: 90px;
        padding: 12px 10px;
    }
    
}

/* Blog Section Styles */
/* Blog Section Styles - Overlapping Card Design */
.blog-section {
    padding: 60px 0;
}

.blog-header {
    margin-bottom: 60px;
}

.blog-label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-secondary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-title {
    font-family: var(--font-primary);
    font-size: var(--h3-font-size);
    font-weight: 700;
    color: var(--color-primary-green);
    line-height: 1.2;
    margin-bottom: 0;
}

.blog-cards-container {
    position: relative;
}

.blog-card-wrapper {
    margin-bottom: 40px;
    position: relative;
}

.blog-card-overlap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card-overlap:hover {
    transform: translateY(-8px);
}

.blog-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px;
}


.blog-content-card {
    background: #F9F8F2 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 30px;
    position: relative;
    margin-top: -100px;
    margin-left: 40px;
    margin-right: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-card-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-tertiary-teal);
    line-height: 1.4;
    margin-bottom: 30px;
}

.blog-action {
    margin-top: 15px;
}

.blog-btn {
    background-color: #4CAF50;
    border: none;
    color: var(--color-neutral-white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.blog-btn img{
    filter: brightness(6);
}

.blog-btn:hover {
    background-color: var(--color-secondary-blue);
    color: var(--color-neutral-white);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.blog-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Styles for Blog Section */
@media (max-width: 992px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-header {
        margin-bottom: 40px;
    }
    
    .blog-image-container {
        height: 280px;
    }
    
    .blog-content-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-title {
        font-size: 32px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-content-overlay {
        left: 15px;
        right: 15px;
        bottom: -25px;
    }
    
    .blog-content-card {
        padding: 20px;
    }
    
    .blog-image-container {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .blog-content-overlay {
        left: 10px;
        right: 10px;
        bottom: -20px;
    }
    
    .blog-content-card {
        padding: 20px;
    }
    
    .blog-image-container {
        height: 200px;
    }
    
    .blog-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .btn-arrow {
        width: 12px;
        height: 12px;
    }
}


/** Responsive adjustments **/
@media only screen and (min-width:1100px) and (max-width:1400px) {
    .hero-content .hero-title{
        font-size: 50px;
    }
    .model-description p,.card-description,.application-text,.feature-text,.tech-description,.sdg-text,.card-description,.projects-description,.project-location,.contact-info,.footer-description,.footer-menu a {
    font-size: 18px;
    }
    .sdg-title,.card-title{
        font-size: 32px;
    }
    .project-card{
        margin:0px;
    }
    .blog-card-title,.contact-title,.footer-title{
        font-size: 20px;
    }
    .copyright{
        font-size: 16px;
    }
    .stat-number{
        font-size: 50px;
    }
}