﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}


body {
    background: #000;
    color: #fff;
}

a,
a:visited {
    color: inherit;
    text-decoration: none;
}


.navbar {
    position:absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 64px;
    background: rgba(60,60,60,0.4);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
}

.logo {
    height: 36px;
}

.nav-center {
    display: flex;
    gap: 30px;
    margin-left: 90px;
    flex: 1;
}

    .nav-center a {
        cursor: pointer;
        margin-left:20px;
        
    }
/*        .nav-center a:hover {
            color: #fff;
            background-color: #a0e398;
            border-radius:120px;
            height:30px;
        }*/

.dropdown {
    position: relative;
}

.drop-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    color: #000;
    border-radius: 10px;
    width: 300px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

    .drop-menu i {
        color: #a0e398;
    }

    .drop-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 20px;
        transition: background 0.2s;
    }

        .drop-menu a:hover {
            color: #a0e398;
        }

.dropdown:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
 
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 15px;
}

.dropdown {
    position: relative;
}

    .dropdown:hover .drop-menu,
    .dropdown:focus-within .drop-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    
    .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 25px;
    }


.contact-btn {
    background: #87a94b;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    color: #fff;
}

.contact-btn:hover{
    background:#fff;
    color:#000;
    transform:scale(1.1);
    transition:0.9s;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
   
}

.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 5s ease;
}

    .bg.active {
        opacity: 4;
    }

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    top: 30%;
    left: 20%;
}

.slide {
    display: none;
}

    .slide.active {
        display: block;
    }

h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 30px;
    font-size:17px;
}

.hero-btn {
    background: #87a94b;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .hero-btn span {
        display: block;
        transition: all 0.4s ease;
    }

    
    .hero-btn .text-default {
        transform: translateY(0);
        opacity: 1;
    }

    
    .hero-btn .text-hover {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 120%);
        opacity: 0;
    }

    
    .hero-btn:hover {
        background: #fff;
        color: #000;
    }

       
        .hero-btn:hover .text-default {
            transform: translateY(-120%);
            opacity: 0;
        }

        .hero-btn:hover .text-hover {
            transform: translate(-50%, -50%);
            opacity: 1;
        }

.slide {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease-out;
}

    .slide.show {
        opacity: 1;
        transform: translateX(0);
    }

    .slide h1,
    .slide p,
    .slide .hero-btn {
        opacity: 0;
        transform: translateX(-60px);
        transition: all 0.8s ease-out;
    }

    .slide.show h1 {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .slide.show p {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .slide.show .hero-btn {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.6s;
    }



.social {
    position: absolute;
    left: 20px;
    top: 15%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
    align-items: center;
}

    
    .social::before {
        content: "";
        width: 1px;
        height: 190px;
        background: #f5c400;
        margin-bottom: 15px;
    }

    
    .social::after {
        content: "";
        width: 1px;
        height: 190px;
        background: #f5c400;
        margin-top: 15px;
    }

    .social span {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .social span:hover {
            background: #7dbb42;
            color: #000;
            transform: scale(1.1);
            transition: 0.3s;
        }



.arrows {
    position: absolute;
    right: 30px;
    top: 50%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}

    .arrows button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #fff;
        background: transparent;
        color: #fff;
        font-size: 22px;
    }

        .arrows button:hover {
            background: #fff;
            color:#000;
            transform:scale(1.1);
            transition:0.3s;
        }


.about {
    padding: 140px 100px 80px;
    background:#fff;
}

.about-head {
    text-align: center;
    margin-bottom: 60px;
}

    .about-head img {
        height: 30px;
        margin-left:-170px;
        margin-bottom:-26px;
    }

    .about-head span {
        display: block;
        color: #9bbb59;
        letter-spacing: 2px;
        font-weight: 700;
        font-size:20px;
    }

    .about-head h1 {
        font-size: 44px;
        margin-top: 16px;
        color:#0f172b;
    }

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-top:-30px;
}

.about-image {
    position: relative;
    margin-left: -20px;
}

    .about-image img {
        width: 580px;
        border-radius: 30px;
       
    }

.circle-badge {
    position: absolute;
    top: 40px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #f2c34d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

    .circle-badge:hover {
        background: #6fb34c;
    }

    .circle-badge svg {
        position: absolute;
        width: 160px;
        height: 160px;
        fill: #1f2f4f;
        font-size: 12px;
        letter-spacing: 3px;
    }

    .circle-badge img {
        width: 60px !important;
        z-index: 2;

    }

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4c5b73;
    margin-bottom: 18px;
    bottom:-20px;
    margin-right:-60px;
}

.story-btn {
    background: #243a5e;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
}

.story-btn:hover{
    background:#7dbb42;
    color:#fff;
    transform:scale(1.1);
    transition:0.9s;

}


.product-section {
    width: 100%;
    padding: 80px 60px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.slider-controls {
    display: flex;
    gap: 10px;
    margin-left:500px;
    
}

    .slider-controls button {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 2px solid #1f2f4d;
        background: transparent;
        font-size: 18px;
        cursor: pointer;
        transition: 0.3s;

    }

        .slider-controls button:hover {
            background: #7dbb42;
            color: #fff;
            border-color: #7dbb42;
        }

.tree-icon {
    width: 40px;
}

.section-header h2 {
    font-size: 38px;
    color: #1f2f4d;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 40px;
    transition: transform 1s ease;
}

.card {
    min-width: 320px;
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s;
}

.bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100px;
    object-fit: cover;
    border-radius: 0 25px 0 25px;
    opacity: 1;
    transition: 0.4s;
}

.icon {
    width: 60px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.card h3 {
    font-size: 20px;
    color: #1f2f4d;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.card button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #1f2f4d;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.card * {
    position: relative;
    z-index: 2;
}

.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.card:hover .bg-img {
    opacity: 1;
}

.card:hover::before {
    opacity: 1;
}

.icon {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 12px;
    transition: 0.4s;
}

.card:hover .icon {
    background: #7dbb42;
}

.card button {
    background: #1f2f4d;
    transition: 0.4s;
}

.card:hover button {
    background: #7dbb42;
}

.card h3,
.card p {
    transition: 0.4s;
}

.card:hover h3,
.card:hover p {
    color: #fff;
}

.card {
    transition: 0.4s;
}


.industries-section {
    width: 100%;
    padding: 80px 30px;
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color:#fff;
   
}

.industries-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    position: relative;
    margin-bottom:5px;
}

.industry-tree {
    width: 45px;
    margin-bottom: -30px;
    margin-left:-220px;
}

.industry-tag {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #7dbb42;
    margin-bottom: 15px;
    margin-right:-50px;
}

.industries-header h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #1f2f4d;
    margin-bottom: 15px;
}

.green-dot {
    width: 12px;
    height: 12px;
    background: #7dbb42;
    border-radius: 50%;
    display: inline-block;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.industry-card {
    text-align: center;
    padding: 10px;
}

.industry-img {
    width: 170px;
    height: 170px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

    .industry-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.industry-card h3 {
    font-size: 20px;
    color: #1f2f4d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.industry-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.brand-section {
    width: 100%;
    padding: 70px 60px;
    background: #eef5ef;
}

.brand-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 80px;
    align-items: center;
}

.brand-item {
    height: 80px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.brand-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.9s ease;
}

    .brand-inner img {
        width: 100%;
        height: 80px;
        object-fit: contain;
    }

.brand-item:hover .brand-inner {
    transform: translateY(-80px);
}
.sustainability-section {
    width: 100%;
    padding: 100px 80px;
    background: #fff;
}

.sustainability-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.sustainability-image {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

    .sustainability-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.sustainability-content {
    padding-right: 20px;
}

.sustainability-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .sustainability-tag img {
        width: 35px;
    }

    .sustainability-tag span {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7dbb42;
    }

.sustainability-content h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #1f2f4d;
    margin-bottom: 25px;
}

.sustainability-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.why-choose-section {
    width: 100%;
    padding: 80px 60px;
    background: #e9f4ea;
    position: relative;
    background-color:#fff;
}

.why-choose-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .why-choose-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }

.why-choose-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 1;
    background: rgba(233, 244, 234, 0.8);
    border-radius: 30px;
    padding: 70px 60px;
   
}

.why-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.why-left {
    max-width: 600px;
}

.why-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .why-tag img {
        width: 35px;
    }

    .why-tag span {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #7dbb42;
    }

.why-left h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #1f2f4d;
    margin-bottom: 20px;
}

.why-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.why-right {
    border-radius: 25px;
    overflow: hidden;
    transform: translateX(-80px);
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

    .why-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .why-right.show {
        transform: translateX(0);
        opacity: 1;
    }


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 28px 25px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

    .why-card h4 {
        font-size: 16px;
        color: #1f2f4d;
        margin-bottom: 12px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #555;
    }


.cert-section {
    width: 100%;
    padding: 90px 80px;
    background: #fff;
    text-align: center;
}

.cert-header {
    max-width: 900px;
    margin: 0 auto 70px;
}

.cert-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .cert-tag img {
        width: 35px;
    }

    .cert-tag span {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7dbb42;
    }

.cert-header h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #1f2f4d;
    margin-bottom: 18px;
}


.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    max-width: 1400px;
    margin: auto;
}

.cert-card {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.4s;
}

    .cert-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

    .cert-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

.testimonial-section {
    width: 100%;
    padding: 100px 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    z-index: 0;
}

.testimonial-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.testimonial-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .testimonial-tag img {
        width: 35px;
    }

    .testimonial-tag span {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7dbb42;
    }

.testimonial-header h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #1f2f4d;
}

.testimonial-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.stars {
    font-size: 18px;
    color: #f4b400;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 18px;
    color: #1f2f4d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-logo {
    width: 35px;
    background-color:white;
    
}

.testimonial-user strong {
    display: block;
    font-size: 15px;
    color: #1f2f4d;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}

.contact-section {
    width: 100%;
    padding: 100px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:#fff;
   
}

.contact-wrapper {
    max-width: 1400px;
    margin: auto;
    background: rgba(5, 15, 20, 0.85);
    border-radius: 40px;
    padding: 80px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.contact-left {
    color: #fff;
    max-width: 520px;
   
}

.contact-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .contact-tag img {
        width: 35px;
    }

    .contact-tag span {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7dbb42;
    }

.contact-left h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #d6dde2;
}

.contact-right {
    position: relative;
}

.solar-img {
    position: absolute;
    right: -120px;
    bottom: 40px;
    width: 760px;
    z-index: 1;
}

.contact-form-box {
    background: #d9e7db;
    padding: 45px 40px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

    .contact-form-box form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        width: 100%;
        padding: 15px 18px;
        border-radius: 12px;
        border: none;
        font-size: 15px;
        outline: none;
    }

    .contact-form-box textarea {
        height: 130px;
        resize: none;
    }

        .contact-form-box input::placeholder,
        .contact-form-box textarea::placeholder {
            color: #555;
        }

    .contact-form-box button {
        margin-top: 10px;
        padding: 16px;
        border-radius: 40px;
        border: none;
        background: #a9bf60;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .contact-form-box button:hover {
            background: #92ab4f;
        }


.blog-section {
    width: 100%;
    padding: 90px 80px;
    background: #fff;
}

.blog-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .blog-tag img {
        width: 35px;
    }

    .blog-tag span {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #7dbb42;
    }

.blog-header h2 {
    font-size: 42px;
    color: #1f2f4d;
}

.view-all-btn {
    background: #a9bf60;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .view-all-btn:hover {
        background: #92ab4f;
    }

.blog-layout {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
}

.blog-featured {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.blog-img {
    width: 100%;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #7a8a9a;
    margin-bottom: 12px;
}

.blog-featured h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #1f2f4d;
    margin-bottom: 25px;
}

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.blog-card-img {
    border-radius: 18px;
    overflow: hidden;
}

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-card-content h4 {
    font-size: 18px;
    color: #1f2f4d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.read-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #000!important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

    .read-btn:hover {
        background: #0b111a;
        color: #f8f8f8 !important;
        border-color: #a9bf60;
    }

.site-footer {
    width: 100%;
    background-color: #0b111a;
    background-repeat: repeat;
    background-size: auto;
    color: #cfd6dd;
}

.footer-main {
    max-width: 1500px;
    margin: auto;
    padding: 90px 80px 70px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 25px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #bfc6cd;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #2a303a;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

        .footer-social a:hover {
            background: #a9bf60;
            color: #0b111a;
        }

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

    .footer-col h4::after {
        content: "";
        width: 45px;
        height: 2px;
        background: #a9bf60;
        position: absolute;
        left: 0;
        bottom: -10px;
    }

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 15px;
    }

        .footer-col ul li a {
            color: #cfd6dd;
            text-decoration: none;
            font-size: 15px;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #a9bf60;
                padding-left: 5px;
            }

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #a9bf60;
    color: #0b111a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-contact strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.footer-contact p {
    font-size: 14px;
    color: #cfd6dd;

    
}

.footer-bottom {
    background: #a9bf60;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    height:50px;
}

.footer-bottom p{
    margin-bottom:-4px;
}



.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0f172b, #070b16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 180px;
    margin-bottom: 12px;
}

.loader-text {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .loader-dots span {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid #a9bf60;
        animation: pulse 1.5s infinite ease-in-out;
    }

        .loader-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.hamburger {
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0b111a;
    z-index: 999;
    padding: 25px 20px;
    transition: 0.4s ease;
    overflow-y: auto;
}

    .mobile-nav.active {
        right: 0;
    }

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

    .mobile-header img {
        height: 34px;
    }

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
}

    .mobile-links a {
        color: #fff;
        font-size: 16px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

.mobile-contact {
    background: #87a94b;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    margin-top: 25px;
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-drop-btn {
    color: #fff;
    font-size: 16px;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .mobile-drop-btn span {
        font-size: 20px;
    }

.mobile-drop-menu {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding-left: 15px;
}

    .mobile-drop-menu a {
        font-size: 15px;
        padding: 10px 0;
        color: #cfd6dd;
        border: none;
    }

.mobile-dropdown.active .mobile-drop-menu {
    max-height: 500px;
}

.mobile-dropdown.active .mobile-drop-btn span {
    transform: rotate(45deg);
}

.mobile-drop-menu {
    background: rgba(255,255,255,0.04);
    margin: 8px 0 12px;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mobile-drop-menu a {
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 14px;
        color: #dfe6ec;
        transition: 0.3s;
    }

        .mobile-drop-menu a:hover {
            background: #87a94b;
            color: #0b111a;
            padding-left: 18px;
        }

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

    #backToTop svg {
        position: absolute;
        inset: 0;
        transform: rotate(-90deg);
    }

    #backToTop circle {
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
        transition: stroke-dashoffset 0.15s linear;
    }

    #backToTop span {
        position: relative;
        font-size: 22px;
        color: #a9bf60;
        font-weight: bold;
    }

    #backToTop.show {
        display: flex;
    }




