.footer-modern {
    background: var(--gt-header);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px;
}

/* Logo */
.footer-logo {
    height: 50px;
}

/* Titles */
.footer-title {
    color: var(--gt-white);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.75) !important;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: var(--gt-theme) !important;
            padding-left: 5px;
        }

/* Contact links */
.footer-text a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

    .footer-text a:hover {
        color: var(--gt-theme);
    }

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
}

/* Social */
.footer-social a {
    color: var(--gt-white);
    margin-left: 15px;
    font-size: 16px;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: var(--gt-theme);
    }


/*section 2*/

/* ==========================================
   MANUFACTURING HERO CARD
========================================== */

.manufacture-hero-card {
    background: linear-gradient( 135deg, rgba(29, 29, 29, 1), rgba(10, 10, 10, 1) );
    border: 1px solid rgba(221, 31, 37, 0.18);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

    /* Red Glow */
    .manufacture-hero-card::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        background: radial-gradient( rgba(221, 31, 37, 0.22), transparent 70% );
        top: -120px;
        right: -80px;
        pointer-events: none;
    }

/* Badge */
.manufacture-badge {
    background: rgba(221, 31, 37, 0.12);
    border: 1px solid rgba(221, 31, 37, 0.25);
    color: var(--gt-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .manufacture-badge i {
        color: var(--gt-theme);
    }

/* Title */
.manufacture-title {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--gt-white);
}

    .manufacture-title span {
        color: var(--gt-theme);
    }

/* Subtitle */
.manufacture-subtitle {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Right Box */
.manufacture-icon-wrapper {
    width: 100%;
    max-width: 220px;
    height: 220px;
    background: linear-gradient( 145deg, rgba(221, 31, 37, 0.12), rgba(255, 255, 255, 0.02) );
    border: 1px solid rgba(221, 31, 37, 0.16);
}

/* Circle */
.manufacture-icon-circle {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(221, 31, 37, 0.14);
    border: 1px solid rgba(221, 31, 37, 0.25);
    color: var(--gt-theme);
    font-size: 2.8rem;
}

/* Responsive */
@media (max-width: 991px) {

    .manufacture-title {
        font-size: 2rem;
    }

    .manufacture-icon-wrapper {
        max-width: 100%;
        height: 180px;
    }

    .manufacture-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
}



/* ==========================================
   MANUFACTURING STATS
========================================== */

.manufacture-stat-card {
    background: linear-gradient( 145deg, rgba(29, 29, 29, 1), rgba(12, 12, 12, 1) );
    border: 1px solid rgba(221, 31, 37, 0.16);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* Glow */
    .manufacture-stat-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(221, 31, 37, 0.08), transparent 60% );
        opacity: 0;
        transition: 0.35s ease;
    }

    /* Hover */
    .manufacture-stat-card:hover {
        transform: translateY(-6px);
        border-color: rgba(221, 31, 37, 0.3);
    }

        .manufacture-stat-card:hover::before {
            opacity: 1;
        }

/* Number */
.manufacture-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gt-theme);
    line-height: 1;
}

/* Label */
.manufacture-stat-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {

    .manufacture-stat-card {
        padding: 1.5rem !important;
    }

    .manufacture-stat-number {
        font-size: 2.2rem;
    }
}

/*plants css section */

/* ==========================================
   MANUFACTURING PLANTS SECTION
========================================== */
.manufacture-plants-section {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.16);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    position: relative;
}

/* Yellow Accent Glow */
.manufacture-plants-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -120px;
    right: -100px;
    background: radial-gradient( rgba(255, 196, 0, 0.14), transparent 70% );
    pointer-events: none;
}

/* ==========================================
   HEADER
========================================== */

.manufacture-section-title {
    color: var(--gt-theme);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

    .manufacture-section-title::after {
        content: "";
        display: block;
        width: 90px;
        height: 4px;
        margin-top: 1rem;
        border-radius: 10px;
        background:  var(--gt-theme);
    }

.manufacture-section-subtitle {
    color: rgba(0, 0, 0, 0.72);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ==========================================
   NAVIGATION
========================================== */

.manufacture-slider-nav {
    z-index: 2;
}

.manufacture-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 196, 0, 0.15);
    background: linear-gradient( 145deg, rgba(221, 31, 37, 0.1), rgba(255, 196, 0, 0.05) );
    color: rgba(0, 0, 0, 0.72);
    transition: 0.3s ease;
    cursor: pointer;
}

    .manufacture-nav-btn:hover {
        background: linear-gradient( 145deg, var(--gt-theme), #ffc400 );
        border-color: transparent;
        transform: translateY(-3px);
    }

/* ==========================================
   SWIPER
========================================== */
.manufacturePlantSwiper {
    overflow: hidden;
}

    .manufacturePlantSwiper .swiper-slide {
        height: auto;
    }

/* ==========================================
   PLANT CARD
========================================== */

.plant-card {
    background: #121212;
    border: 1px solid rgba(221, 31, 37, 0.18);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .plant-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gt-theme);
        z-index: 2;
    }

    .plant-card:hover {
        border-color: rgba(255, 196, 0, 0.45);
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }

/* ==========================================
   IMAGE
========================================== */

.plant-image {
    position: relative;
    height: 50vh;
    overflow: hidden;
    background: #000;
}

    .plant-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s ease;
    }

.plant-card:hover .plant-image img {
    transform: scale(1.06);
}

.plant-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12), transparent );
}

/* ==========================================
   VIEW IMAGE BUTTON
========================================== */

.plant-image-view-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 196, 0, 0.25);
    padding: 0.85rem 1.2rem;
    background: #ffc400;
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s ease;
}

    .plant-image-view-btn:hover {
        background: #ffd84d;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 196, 0, 0.28);
    }

/* ==========================================
   CONTENT
========================================== */

.plant-content {
    background: #151515;
    position: relative;
}

    .plant-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 196, 0, 0.08);
    }

.plant-title {
    color: var(--gt-white);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-left: 16px;
}

    .plant-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 5px;
        height: calc(100% - 8px);
        border-radius: 10px;
        background: var(--gt-theme);
    }

/* ==========================================
   DETAIL CARD
========================================== */

.plant-detail-card {
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

    .plant-detail-card:hover {
        border-color: rgba(255, 196, 0, 0.22);
        transform: translateY(-2px);
    }

.plant-detail-label {
    display: inline-block;
    color: #ffc400;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.plant-detail-value {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================
   CAPACITY
========================================== */

.plant-capacity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.capacity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.96rem;
}

    .capacity-item i {
        color: #ffc400;
        font-size: 0.5rem;
        margin-top: 0.7rem;
        flex-shrink: 0;
    }

/* ==========================================
   MODAL
========================================== */

.plant-image-modal-content {
    background: #111;
    border: 1px solid rgba(255, 196, 0, 0.18);
    overflow: hidden;
}

.plant-modal-title {
    color: var(--gt-white);
    font-weight: 600;
}

#plantModalImage {
    max-height: 82vh;
    object-fit: cover;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .plant-image {
        height: 340px;
    }

    .plant-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {

    .manufacture-nav-btn {
        width: 42px;
        height: 42px;
    }

    .plant-image {
        height: 260px;
    }

    .plant-image-view-btn {
        padding: 0.7rem 1rem;
        font-size: 0.82rem;
    }
}


/*facilities section*/


/* ==========================================
   SECTION
========================================== */

.manufacture-facilities-section {
    background: #111;
    border: 1px solid rgba(221, 31, 37, 0.16);
    position: relative;
    overflow: hidden;
}

    .manufacture-facilities-section::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        top: -120px;
        right: -80px;
        background: radial-gradient( rgba(255, 196, 0, 0.12), transparent 70% );
        pointer-events: none;
    }

/* ==========================================
   HEADER
========================================== */

.facilities-section-title {
    color: var(--gt-white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
}

    .facilities-section-title::after {
        content: "";
        display: block;
        width: 90px;
        height: 4px;
        margin-top: 1rem;
        border-radius: 10px;
        background: var(--gt-theme);
    }

.facilities-section-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ==========================================
   CARD
========================================== */

.facility-card {
    background: #171717;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.35s ease;
    position: relative;
}

    .facility-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gt-theme);
        z-index: 2;
    }

    .facility-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 196, 0, 0.35);
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }

/* ==========================================
   IMAGE
========================================== */

.facility-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #000;
}

    .facility-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
    }

.facility-card:hover .facility-image img {
    transform: scale(1.06);
}

.facility-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08), transparent );
}

/* ==========================================
   BUTTON
========================================== */

.facility-image-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 3;
    border: 0;
    background: #ffc400;
    color: #000;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    transition: 0.3s ease;
}

    .facility-image-btn:hover {
        background: #ffd84d;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 196, 0, 0.3);
    }

/* ==========================================
   CONTENT
========================================== */

.facility-content {
    background: #171717;
}

.facility-title {
    color: var(--gt-white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    padding-left: 14px;
}

    .facility-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 4px;
        height: calc(100% - 8px);
        border-radius: 10px;
        background: var(--gt-theme);
    }

/* ==========================================
   FEATURES
========================================== */

.facility-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-size: 0.95rem;
}

    .facility-feature-item i {
        color: #ffc400;
        font-size: 0.45rem;
        margin-top: 0.72rem;
        flex-shrink: 0;
    }

/* ==========================================
   MODAL
========================================== */

.facility-modal-content {
    background: #111;
    border: 1px solid rgba(255,196,0,0.16);
    overflow: hidden;
}

.facility-modal-title {
    color: var(--gt-white);
    font-weight: 600;
}

#facilityModalImage {
    max-height: 82vh;
    object-fit: cover;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .facility-image {
        height: 240px;
    }
}

@media (max-width: 767px) {

    .facility-image {
        height: 220px;
    }

    .facility-title {
        font-size: 1.05rem;
    }
}



/* research label section*/

/* ==========================================
   RESEARCH LAB SECTION
========================================== */

.research-lab-section {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* ==========================================
   HEADING CARD
========================================== */

.research-heading-card {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.2);
    position: relative;
    overflow: hidden;
}



.research-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: rgba(221, 31, 37, 1);
    border: 1px solid rgba(221, 31, 37, 1);
    background: rgba(255, 196, 0, 0.5);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
}

.research-title {
    color: var(--gt-theme);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.research-subtitle {
    max-width: 850px;
    margin-inline: auto;
    color: rgba(0,0,0,0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ==========================================
   SWIPER
========================================== */

.researchLabSwiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

    .researchLabSwiper .swiper-slide {
        height: auto;
    }

/* ==========================================
   CARD
========================================== */

.research-card {
    background: #181818;
    border: 1px solid rgba(221, 31, 37, 0.14);
    transition: 0.35s ease;
    height: 100%;
}

    .research-card:hover {
        transform: translateY(-6px);
        border-color: #ffc400;
        box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    }

/* ==========================================
   IMAGE
========================================== */

.research-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .research-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.45s ease;
    }

.research-card:hover .research-image img {
    transform: scale(1.05);
}

.research-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%);
}

/* ==========================================
   VIEW BUTTON
========================================== */

.research-view-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    border: none;
    padding: 0.75rem 1rem;
    background: #dd1f25;
    color: var(--gt-white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

    .research-view-btn:hover {
        background: #ffc400;
        color: #000;
        transform: translateY(-2px);
    }

/* ==========================================
   CONTENT
========================================== */

.research-content {
    background: #181818;
}

.research-card-title {
    color: var(--gt-white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.research-card-text {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.96rem;
}

/* ==========================================
   NAVIGATION
========================================== */

.research-nav-btn {
    width: 52px;
    height: 52px;
    background: #ffc400;
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

    .research-nav-btn:hover {
        background: #dd1f25;
        color: #000;
    }

.research-prev {
    left: 0px;
}

.research-next {
    right: 0px;
}

/* ==========================================
   MODAL
========================================== */

.research-modal-content {
    background: #141414;
    border: 1px solid rgba(255, 196, 0, 0.15);
}

.research-modal-title {
    color: var(--gt-white);
    font-weight: 600;
}

#researchModalImage {
    max-height: 82vh;
    object-fit: contain;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .research-image {
        height: 240px;
    }

    .research-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .research-nav-btn {
        width: 42px;
        height: 42px;
    }

    .research-image {
        height: 220px;
    }

    .research-card-title {
        font-size: 1.05rem;
    }

    .research-subtitle {
        font-size: 0.95rem;
    }
}