/* ===================================
   BK GREEN ENERGY - STYLESHEET
   =================================== */

:root {
    --primary-green: #54b435;
    --secondary-green: #54b435;
    --light-green: #54b435;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #f8f9fa;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(15, 124, 58, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ==============================
   Light Transparent Navbar
================================ */

/* Base transparent navbar */
.custom-navbar {
    background-color: #fff6;
    border-radius: 50rem;
    width: 97%;
    height: auto;
    min-height: 4.5rem;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
}

/* Navbar container alignment fix */
.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 100;
}

/* Navbar brand text */
.navbar-brand-text {
    margin: 0;
    font-size: 70px;
    font-weight: 1000;
    color: #000000 !important;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Push nav menu to right */
.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Nav link normal */
.custom-navbar .nav-link {
    color: #000000;
    font-weight: 700;
    margin-left: 18px;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-navbar .nav-link:hover {
    color: #ffffff;
}

.custom-navbar .nav-item {
    display: flex;
    align-items: center;
}

/* Contact button */
.btn-nav {
    /* border: 2px solid #f1f5f3; */
    padding: 6px 18px;
    border-radius: 30px;
    color: #dfe0e0;
    font-weight: 700;        /* make button text bold */
    transition: all 0.3s ease;
}

.btn-nav:hover {
    /* background: #0f7c3a; */
    color: #fff !important;
}

/* Mobile toggler icon style */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler::after {
    content: "☰";
    font-size: 24px;
    color: #0f7c3a;
}

/* Change navbar on scroll */
.navbar-scrolled {
    background: #90cf4d;
    padding: 12px 0;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled .nav-link {
    color: #000000;
}

.navbar-scrolled .btn-nav {
    color: #000000;
}


/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-slider .slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.2s ease-in-out, transform 6s ease;
    transform:scale(1.1);
}

.hero-slider .slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.5);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:60px;
    max-width:1200px;
    width:100%;
    padding:40px 20px;
    color:#fff;
}

/* LEFT: Logo Block */
.hero-logo-block {
    flex: 0 0 auto;
    animation: fadeInLeft 1s ease-in-out;
}

.hero-logo-block img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* RIGHT: Text Block */
.hero-text-block {
    flex: 1;
    text-align: right;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-in-out 0.3s both;
}

.hero-text-block p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-in-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-in-out 0.9s both;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 124, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(15, 124, 58, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: 70px 60px;
    background: #f2f2f2;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text h2 {
    font-size: 64px;
    font-weight: 800;
    color: #67c23a;
    line-height: 1.05;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 22px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 0 0 65%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-image svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.sun-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Tablet */
@media (max-width: 1024px) {
    .about {
        padding: 45px 24px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text {
        flex: 1;
        width: 100%;
    }

    .about-image {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 48px;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.75;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about {
        padding: 40px 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 25px;
    }

    .about-text {
        flex: 1;
        width: 100%;
    }

    .about-image {
        flex: 1;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-text h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .about-text p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .about-image img,
    .about-image svg {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    width: 100%;
    padding: 100px 20px;
    background: #90cf4d;
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 32px;
    margin: 0 auto 32px;
    max-width: 1150px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-image {
    flex: 0 0 320px;
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    color: #8cc63f;
}

.service-content h3 {
    margin: 0 0 16px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #8cc63f;
}

.service-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5f6368;
}

@media (max-width: 992px) {
    .service-card {
        gap: 24px;
        padding: 24px;
    }

    .service-image {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .service-image img {
        height: 190px;
    }

    .service-content h3 {
        font-size: 1.7rem;
    }

    .service-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }

    .services-heading h2 {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .service-image {
        max-width: 100%;
        flex: unset;
    }

    .service-image img {
        width: 100%;
        height: 220px;
    }

    .service-content {
        min-height: auto;
        align-items: center;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 14px;
    }

    .service-card {
        border-radius: 18px;
        padding: 16px;
    }

    .service-image img {
        height: 200px;
        border-radius: 14px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

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

/* ===================================
   CONSULTATION SECTION
   =================================== */

.consultation {
    padding: 100px 20px;
    background: var(--gray);
}

.consultation-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.consultation h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.consultation p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.consultation-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #999;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(84, 180, 53, 0.1);
    background: #fafafa;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 130px;
    max-height: 300px;
}

.consultation-form button {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

/* Tablet responsive */
@media (max-width: 768px) {
    .consultation {
        padding: 80px 20px;
    }

    .consultation-content {
        max-width: 100%;
    }

    .consultation h2 {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }

    .consultation p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .consultation-form {
        margin-top: 35px;
        gap: 16px;
    }

    .consultation-form input,
    .consultation-form textarea {
        padding: 13px 16px;
        font-size: 1rem;
    }

    .consultation-form textarea {
        min-height: 120px;
    }

    .consultation-form button {
        padding: 15px 18px;
        font-size: 1rem;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .consultation {
        padding: 60px 15px;
    }

    .consultation-content {
        max-width: 100%;
    }

    .consultation h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .consultation p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .consultation-form {
        margin-top: 30px;
        gap: 14px;
    }

    .consultation-form input,
    .consultation-form textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 6px;
    }

    .consultation-form textarea {
        min-height: 110px;
    }

    .consultation-form button {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .success-message {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}
/* ===================================
   Footer SECTION
   =================================== */

footer {
    background: #000000;
    color: #e2e8f0;
    padding: 60px 40px 30px;
    font-family: 'Poppins', sans-serif;
}

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

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

/* Circular logo */
.footer-logo img{
    height:70px;
    width:70px;
    object-fit:contain;
    background:#fff;
    padding:8px;
    border-radius:50%;
}

/* Contact right side */
.footer-contact{
    display:flex;
    flex-direction:column;   /* stack vertically */
    align-items:flex-end;    /* keep aligned to right side */
    gap:6px;
    font-size:16px;
}


.footer-contact a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
    text-align:right;
}

.footer-contact a:hover{
    color:#90cf4d;
}



/* Columns */
.footer-columns{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-top:40px;
}

/* Links stay left */
.footer-links{
    text-align:left;
}

/* Address pushed to right */
.footer-address{
    text-align:right;
    margin-left:auto;   /* pushes it to the right */
}


.footer-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-link {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #90cf4d;
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: #90cf4d;
}

/* ===== FIXED ADDRESS + VIDEO ALIGNMENT ===== */

.address-video-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.address-text {
    flex: 1;
}

.map-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.map-placeholder video {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
/* Divider */
.footer-divider {
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}



/* Footer Bottom Layout */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    font-size:13px;
    color:#94a3b8;
}

/* Social icons container */
.footer-social{
    display:flex;
    gap:15px;
}

/* Icon style */
.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#cbd5e1;
    font-size:16px;
    transition:0.3s;
}

/* Hover effect */
.footer-social a:hover{
    background:#0f7c3a;
    color:#fff;
    transform:translateY(-3px);
}
.footer-social img{
    width: 70px;
    height:40px;
    object-fit:cover;
}

.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    transition:0.3s;
}

.footer-social a:hover{
    background:#0f7c3a;
    transform:translateY(-3px);
}



/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* ===== TABLET & MOBILE (768px and below) ===== */
@media (max-width: 768px) {
    /* Navbar */
    .custom-navbar {
        width: 95%;
        margin: 10px auto;
        border-radius: 40px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .custom-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        gap: 8px;
    }

    .brand-text {
        flex: 0 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        font-size: 22px !important;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 12px;
        flex-grow: 0;
    }

    .navbar-collapse .navbar-nav {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 22px !important;
    }

    .navbar-collapse .nav-item,
    .navbar-collapse .nav-link {
        width: 100% !important;
        text-align: left !important;
    }

    /* Hero */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-logo-block {
        text-align: center !important;
    }

    .hero-logo-block img {
        height: 120px !important;
        width: auto !important;
    }

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

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* Services */
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-media {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .services-heading h2 {
        font-size: 2rem;
    }

    /* Consultation */
    .consultation h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-address {
        text-align: center;
        margin-left: 0;
    }

    .brand-text {
        font-size: 22px !important;
        flex: 0 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .brand-logo {
        height: 35px;
    }
}

/* Navbar brand */
.navbar-brand {
    font-weight: 900;
    color: #000 !important;
}

.custom-navbar {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    min-height: 100px !important;
}

.custom-navbar .navbar-brand-text,
.custom-navbar .navbar-brand,
.custom-navbar .navbar-brand-text a {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #000000 !important;
}

.custom-navbar .nav-link {
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
}

.custom-navbar .nav-item + .nav-item {
    margin-left: 3px;
}

.btn-nav {
    font-size: 20px !important;
    padding: 12px 10px !important;
    font-weight: 900 !important;
}

.navbar-toggler::after {
    font-size: 20px !important;
}

.hero-title {
    font-weight: 800;
}



/* ===================================
   REMOVE PURPLE FOCUS HIGHLIGHT
   =================================== */

/* Remove focus outline and tap highlight from navbar links */
.navbar .nav-link,
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar-brand,
.navbar-brand:focus,
.navbar-brand:active,
.btn-nav,
.btn-nav:focus,
.btn-nav:active,
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Remove Bootstrap default focus styles */
.nav-link:focus,
.nav-link:active,
button:focus,
button:active,
a:focus,
a:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Optional: Add subtle focus for keyboard users (accessibility) */
.navbar .nav-link:focus-visible,
.btn-nav:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid rgba(144, 207, 77, 0.5) !important;
    outline-offset: 2px;
}



/* Brand logo styling */
.brand {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 35px;
    }
}

/* Brand text styling */
.brand-text {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
    flex: 0 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.brand-text:hover {
    color: #0f7c3a;
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 22px;
        flex: 0 1 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}


/* ===== Innovation / Sustainability Section ===== */
/* Replace selector names if your classes are different */

.innovation-section {
    background: #f3f3f3;
    padding: 60px 50px;
}

.innovation-section .container,
.innovation-section .innovation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 34% 66%;
    align-items: start;
    gap: 40px;
}

.innovation-section .innovation-content,
.innovation-section .left-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.innovation-section h1,
.innovation-section .section-title,
.innovation-section .innovation-title {
    font-size: 72px;
    line-height: 1.0;
    font-weight: 800;
    color: #67c23a;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}

.innovation-section p,
.innovation-section .section-text,
.innovation-section .innovation-content p {
    font-size: 21px;
    line-height: 1.9;
    color: #4f5b66;
    margin: 0 0 28px 0;
    max-width: 95%;
}

.innovation-section .innovation-image,
.innovation-section .right-image,
.innovation-section .image-box {
    width: 100%;
}

.innovation-section .innovation-image img,
.innovation-section .right-image img,
.innovation-section .image-box img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* ===== Large laptop ===== */
@media (max-width: 1400px) {
    .innovation-section {
        padding: 50px 40px;
    }

    .innovation-section h1,
    .innovation-section .section-title,
    .innovation-section .innovation-title {
        font-size: 62px;
    }

    .innovation-section p,
    .innovation-section .section-text,
    .innovation-section .innovation-content p {
        font-size: 19px;
        line-height: 1.8;
    }

    .innovation-section .innovation-image img,
    .innovation-section .right-image img,
    .innovation-section .image-box img {
        height: 680px;
    }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
    .innovation-section {
        padding: 45px 24px;
    }

    .innovation-section .container,
    .innovation-section .innovation-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .innovation-section h1,
    .innovation-section .section-title,
    .innovation-section .innovation-title {
        font-size: 52px;
        line-height: 1.05;
        margin-bottom: 24px;
    }

    .innovation-section p,
    .innovation-section .section-text,
    .innovation-section .innovation-content p {
        font-size: 18px;
        line-height: 1.75;
        max-width: 100%;
    }

    .innovation-section .innovation-image img,
    .innovation-section .right-image img,
    .innovation-section .image-box img {
        height: 500px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .innovation-section {
        padding: 35px 18px;
    }

    .innovation-section h1,
    .innovation-section .section-title,
    .innovation-section .innovation-title {
        font-size: 40px;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .innovation-section p,
    .innovation-section .section-text,
    .innovation-section .innovation-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .innovation-section .innovation-image img,
    .innovation-section .right-image img,
    .innovation-section .image-box img {
        height: 320px;
    }
}

/* ===== Small mobile ===== */
@media (max-width: 480px) {
    .innovation-section {
        padding: 28px 14px;
    }

    .innovation-section h1,
    .innovation-section .section-title,
    .innovation-section .innovation-title {
        font-size: 32px;
    }

    .innovation-section p,
    .innovation-section .section-text,
    .innovation-section .innovation-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .innovation-section .innovation-image img,
    .innovation-section .right-image img,
    .innovation-section .image-box img {
        height: 250px;
    }
}

/* ===================================
   IMAGE ANIMATIONS - PROFESSIONAL
   =================================== */

/* Base image animation setup */
img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s ease, 
                box-shadow 0.4s ease;
}

/* Image reveal animation on scroll */
.image-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.image-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero slider images - smooth transitions */
.hero-slider .slide {
    transition: opacity 1.2s ease-in-out, transform 6s ease;
}

/* About section image animations */
.about-image img,
.about-image svg {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s ease, 
                box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.about-image.visible img,
.about-image.visible svg {
    opacity: 1;
    transform: translateY(0);
}

.about-image:hover img,
.about-image:hover svg {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service card images */
.service-image {
    overflow: hidden;
    border-radius: 18px;
}

.service-image img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s ease, 
                box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: block;
}

.service-image.visible img {
    opacity: 1;
    transform: translateY(0);
}

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

/* Gallery and card images */
.gallery-image,
.card-image,
.project-image {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image img,
.card-image img,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s ease, 
                box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: block;
}

.gallery-image.visible img,
.card-image.visible img,
.project-image.visible img {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image:hover img,
.card-image:hover img,
.project-image:hover img {
    transform: scale(1.06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer images */
.footer-logo img {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.08);
}

.footer-social img {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-social:hover img {
    transform: scale(1.1);
}

/* Staggered animation delays for multiple images */
.image-reveal:nth-child(1) {
    transition-delay: 0s;
}

.image-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.image-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.image-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.image-reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.image-reveal:nth-child(6) {
    transition-delay: 0.5s;
}

/* Service card staggered animations */
.service-card:nth-child(1) .service-image img {
    transition-delay: 0s;
}

.service-card:nth-child(2) .service-image img {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) .service-image img {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) .service-image img {
    transition-delay: 0.3s;
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    img {
        transition: none;
    }

    .image-reveal {
        opacity: 1;
        transform: none;
    }

    .image-reveal.visible {
        opacity: 1;
        transform: none;
    }

    .about-image img,
    .about-image svg {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-image.visible img,
    .about-image.visible svg {
        opacity: 1;
        transform: none;
    }

    .about-image:hover img,
    .about-image:hover svg {
        transform: none;
        box-shadow: none;
    }

    .service-image img {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service-image.visible img {
        opacity: 1;
        transform: none;
    }

    .service-card:hover .service-image img {
        transform: none;
    }

    .gallery-image img,
    .card-image img,
    .project-image img {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .gallery-image.visible img,
    .card-image.visible img,
    .project-image.visible img {
        opacity: 1;
        transform: none;
    }

    .gallery-image:hover img,
    .card-image:hover img,
    .project-image:hover img {
        transform: none;
        box-shadow: none;
    }

    .footer-logo:hover img,
    .footer-social:hover img {
        transform: none;
    }
}

/* Mobile optimization for animations */
@media (max-width: 768px) {
    img {
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                    opacity 0.5s ease, 
                    box-shadow 0.3s ease;
    }

    .about-image:hover img,
    .about-image:hover svg {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover .service-image img {
        transform: scale(1.03);
    }

    .gallery-image:hover img,
    .card-image:hover img,
    .project-image:hover img {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}