:root {
    --primary-color: #fd8e42;
    --secondary-color: #C6C0BF;
    --dark-color: #222222;
    --light-color: #ffffff;
    --text-color: #333333;
    --bg-color: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #fd8e42;
    --secondary-color: #C6C0BF;
    --dark-color: #f0f0f0;
    --light-color: #121212;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(0, 0, 0, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow-x: hidden;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('refinery-factory-backdrop.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 40px !important;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 24px;
    color: white;
}

/* Sections Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-container {
    transform: rotateY(180deg);
}

.icon-container i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* ESG Refinery Section */
.esg-refinery-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.esg-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.esg-card {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}

.esg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    transition: all 0.5s ease;
}

.esg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.esg-card:hover::before {
    background: linear-gradient(to top, rgba(253, 142, 66, 0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
    width: 100%;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.esg-card:hover .icon-container {
    background: white;
}

.esg-card:hover .icon-container i {
    color: var(--primary-color);
}

.icon-container i {
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.esg-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.esg-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .esg-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .esg-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .esg-card {
        min-height: 300px;
    }
}

/* Dark Mode Adjustments */

/* Environmental Technology Section */
.environmental-tech {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.tech-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
}

.tech-feature-card:hover h3,
.tech-feature-card:hover p {
    color: white;
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-icon {
    background: white;
}

.tech-feature-card:hover .tech-icon i {
    color: var(--primary-color);
}

.tech-icon i {
    font-size: 25px;
    color: white;
    transition: all 0.3s ease;
}

.tech-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.tech-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Technology Highlights */
.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.highlight-item {
    text-align: center;
    padding: 20px;
}

.highlight-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.highlight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tech-features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-highlights {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}
/* Technology Section */
.technology {
    background-color: var(--light-color);
}

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

.tech-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.tech-card:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    background: var(--dark-color);
}

.tech-icon i {
    font-size: 25px;
    color: white;
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Vision Section */
.vision-statement {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.pillar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar:hover {
    transform: translateY(-10px);
    background: rgba(253, 142, 66, 0.2);
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon i {
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 142, 66, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    transition: var(--transition);
}

/* Team Section */
.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.member-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

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

.member-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.position {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.partner-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-logos {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logos img {
    height: 50px;
    opacity: 0.7;
    transition: var(--transition);
    flex-shrink: 0;
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partner-logos-container:hover .partner-logos {
    animation-play-state: paused;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--dark-color);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#googleMap {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #222222;
    color: var(--light-color);
    padding: 60px 0 20px;
}

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

.footer-logo .logo {
    font-size: 28px;
   color: var(--light-color);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
   color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-card, .tech-card, .service-card, .member-card {
        padding: 20px;
    }
}

/* Transform Section - Simplified */
.transform-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('refinery-hero.png') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.transform-content {
    max-width: 1000px;
    margin: 0 auto;
}

.transform-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.transform-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.action-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.action-item {
    background: rgba(253, 142, 66, 0.1);
    border: 1px solid rgba(253, 142, 66, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(253, 142, 66, 0.2);
    transform: translateY(-5px);
}

.action-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.action-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.action-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.action-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: white;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .action-items {
        grid-template-columns: 1fr;
    }
    
    .transform-text h2 {
        font-size: 2rem;
    }
    
    .transform-text p {
        font-size: 1rem;
    }
}
/* Logo container */
.logo {
    display: flex;
    align-items: center;
    height: 100px; /* Increased from 40px */
    gap: 12px;
    text-decoration: none;
}

/* Logo image sizing */
.logo img {
    height: 100%;
    width: auto;
    max-height: 100px; /* Increased size */
    transition: opacity 0.3s ease;
}

/* Logo text styling */
.logo-text {
    font-size: 28px; /* Larger text */
    font-weight: 700;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

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

/* Logo visibility control */
.logo-dark {
    display: none;
    opacity: 0;
}

[data-theme="dark"] .logo-light {
    display: none;
    opacity: 0;
}

[data-theme="dark"] .logo-dark {
    display: block;
    opacity: 1;
}

[data-theme="dark"] .logo-text {
    color: var(--light-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        height: 50px;
    }
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 50px;
    }
    .logo-text {
        font-size: 20px;
    }
}

/* Tabbed Form Styles */
.form-tabs {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    transform: scaleX(1);
}

.tab-btn:hover:not(.active) {
    background: rgba(253, 142, 66, 0.1);
}

.tab-pane {
    display: none;
    padding: 30px;
}

.tab-pane.active {
    display: block;
}

.contact-form {
    margin-top: 0;
}

.newsletter-note {
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
    margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        padding: 12px 20px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .tab-btn:after {
        height: 100%;
        width: 3px;
        bottom: 0;
        left: 0;
        transform: scaleY(0);
    }
    
    .tab-btn.active:after {
        transform: scaleY(1);
    }
    
    .tab-pane {
        padding: 20px;
    }
}
.vision {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('processing-facility.jpeg') no-repeat center center/cover;
    background-color: #111; /* fallback background */
    color: #fff;
    text-align: center;
}

.vision h2,
.vision .vision-statement,
.vision .pillar h3,
.vision .pillar p {
    color: #ffffff;
}
