/* ============================ */
/* ===== Navbar  ===== */
/* ============================ */
.navbar {
    z-index: 1000;
    background: white !important;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
}

.navbar-brand {
    color: #00b050 !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: black !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00b050 !important;
}

.contact-number {
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: #007a36;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-text {
        justify-content: center;
        margin-top: 10px;
    }
}


/* ============================ */
/* ===== Footer Section ===== */
/* ============================ */
.footer {
    background-color: #0f0f0f;
    color: #ddd;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

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

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background: #222;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #7fff00;
    color: #000;
}

.footer-links h5,
.footer-newsletter h5,
.footer-contact h5 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #7fff00;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 4px 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    background: #348752;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #45a165;
}

.newsletter-btn .iconify {
    color: #fff;
    font-size: 16px;
    line-height: 0;
}

.newsletter-form:focus-within {
    border-color: #348752;
}

/* Contact */
.footer-contact p {
    margin: 8px 0;
}

.footer-contact i {
    color: #7fff00;
    margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links-inline a {
    color: #348752;
    margin-left: 15px;
    text-decoration: none;
}

.footer-links-inline a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-links-inline {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* .newsletter-form {
        flex-direction: column;
    } */

    .newsletter-btn {
        /* width: 100%; */
        margin-top: 5px;
    }
}


/* ================================================================================================================= */
/* =====  Index Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* ===== Hero Slider ===== */
/* ============================ */
.carousel-item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
}

.carousel-content {
    position: absolute;
    top: 40%;
    right: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-align: right;
    max-width: 600px;
}

.carousel-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #00b050;
}

.carousel-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #f1f1f1;
}

.carousel-content .btn {
    /* font-weight: 600; */
    font-size: 16px;
    padding: 5px 8px;
    border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .carousel-content {
        top: 50%;
        right: 5%;
        left: 5%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .carousel-content h2 {
        font-size: 1.8rem;
    }

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


/* ============================ */
/* ===== News Section ===== */
/* ============================ */
.section-title-icon { 
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
    
    object-fit: contain;
}

/* Headings and Text */
.news-section h3 {
    font-size: 1.8rem;
    color: #0a6522;
    margin-top: 20px;
}

.news-section h4 {
    color: #2b2b2b;
    font-size: 1.4rem;
    line-height: 1.4;
}

.news-section p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

/* Buttons */
.news-section .btn-success {
    background-color: #00853f;
    border: none;
    transition: all 0.3s ease;
    padding: 8px 20px;
    font-weight: 500;
}

.news-section .btn-success:hover {
    background-color: #006c34;
}

/* News block layout */
.news-block {
    padding-bottom: 50px;
    padding-top: 20px !important;

}

.bg-light-grey {
    background-color: #f2f2f2;
    width: 100%;
}

/* News Image Styling */
.news-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.4s ease;
    z-index: 5;
    
}

/* Pop out effect */
.news-block .row .news-image {
    transform: translateX(10%);
}

.news-block .row.flex-md-row-reverse .news-image {
    transform: translateX(-10%);
}

/* Image inside */
.news-image img {
    position: relative;
    z-index: 99;
    max-width: 75%;
    height: auto;
    border-radius: 8px;
}

/* Overlay & Shadows */
.news-image::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.15); */
    border-radius: 8px;
    z-index: 1;
}

/* .news-image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 40px;
    left: 7% !important;
    width: 70%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: slideLeftIn 1.5s ease-out forwards;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
} */

/* .news-image .right-shadow {
    position: absolute;
    top: 40px;
    bottom: 0;
    right: 7% !important;
    width: 77%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: slideRightIn 1.5s ease-out forwards;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
} */

/* Animations */
@keyframes slideLeftIn {
    0% { left: -80%; }
    100% { left: 7%; }
}

@keyframes slideRightIn {
    0% { right: -77%; }
    100% { right: 7%; }
}

/* --- RESPONSIVE DESIGN --- */

/* Tablets and small desktops */
@media (max-width: 992px) {
    .news-section h3 {
        font-size: 1.6rem;
    }

    .news-section h4 {
        font-size: 1.2rem;
    }

    .news-section p {
        font-size: 0.95rem;
    }

    .news-image {
        margin-top: 20px;
        transform: none !important;
    }

    .news-image img {
        max-width: 90%;
    }

    .news-block {
        margin-bottom: 40px;
    }

    .bg-light-grey {
        height: auto !important;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .news-section h3 {
        font-size: 1.4rem;
    }

    .news-section h4 {
        font-size: 1.1rem;
    }

    .news-section p {
        font-size: 0.9rem;
        text-align: justify;
    }

    .news-image img {
        max-width: 100%;
    }

    .news-block .row {
        flex-direction: column !important;
    }

    .news-image {
        transform: none !important;
        margin: 20px 0;
    }
}

/* Very small devices (≤ 576px) */
@media (max-width: 576px) {
    .news-section h3 {
        font-size: 1.2rem;
    }

    .news-section h4 {
        font-size: 1rem;
    }

    .news-section p {
        font-size: 0.85rem;
    }

    .btn-success {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
.product-info{
margin-bottom: 20px !important}
}



/* ============================ */
/* ===== parallax Section ===== */
/* ============================ */
.parallax-section {
    background-image: url('/frontend/img/index/lead-acid-replacement-batteries.jpg') !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: white;
    z-index: 1;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.about-image img {
    width: 500px !important;
    max-width: 100% !important;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 280px;
}

.info-box {
    background: rgba(0, 0, 0, 0.65);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.8);
}

.info-box .iconify {
    color: #7fff00;
    font-size: 22px;
    margin-top: 4px;
}

/*  Responsive Breakpoints */
/* Large tablets */
@media (max-width: 1200px) {
    .parallax-section {
        padding: 50px 30px;
    }

    .about-image img {
        width: 450px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .info-box {
        text-align: left;
        max-width: 600px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .parallax-section {
        background-attachment: scroll;
        padding: 40px 15px;
    }

    .about-image img {
        width: 100%;
    }

    .info-box {
        flex-direction: row;
        gap: 10px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .info-box .iconify {
        font-size: 18px;
    }
}




/* ============================ */
/* ===== Blog Section ===== */
/* ============================ */
/* ===== Blog Section ===== */
.blog-section {
    background-color: #fff;
}

/* ===== Section Title Icon ===== */
.section-title-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 6px;
    object-fit: contain;
}

/* ===== Blog Card ===== */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid #00a651;
    /* Green bottom border */
}

/* ===== Blog Image ===== */
.blog-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ===== Blog Content ===== */
.blog-content {
    padding: 20px;
    transition: color 0.3s ease;
}

/* ===== Text Hover Effect ===== */
.blog-card:hover .blog-content h5,
.blog-card:hover .blog-content p,
.blog-card:hover .blog-content a {
    color: #00a651 !important;
}

/* ===== Blog Date ===== */
.blog-date {
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}

/* ===== Blog Title ===== */
.blog-content h5 {
    font-size: 1.1rem;
    margin: 10px 0;
    transition: color 0.3s ease;
    color: #000;
}

/* ===== Blog Links ===== */
.blog-content p {
    color: black !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .blog-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-img {
        height: 180px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title-icon {
        width: 22px;
        height: 22px;
    }

    .blog-img {
        height: 160px;
    }
}





/* ================================================================================================================= */
/* =====  About us Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* ===== About us Section ===== */
/* ============================ */
.about-section {
    background-color: #fff;
    margin-top: 10px;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    width: 70%;
    max-width: 550px;
    border-radius: 10px;
    object-fit: cover;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 268px;
    left: 30px;
    background: #1f8a45;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.experience-badge span {
    font-size: 1rem;
    font-weight: 400;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
}

.about-content p {
    line-height: 1.7;
    font-size: 15px;
    /* color: #555; */
    text-align: justify;
}

.about-content ul li {
    color: #444;
    font-size: 14px;
    margin-bottom: 6px;
}

.btn-success {
    background-color: #1f8a45;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #157734;
    transform: translateY(-2px);
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
    .about-image img {
        width: 100%;
        max-width: 100%;
    }

    .about-content {
        text-align: right;
    }

    .about-content ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .experience-badge {
        /* bottom: 15px; */
        left: 15px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column;
    }

    .about-image {
        text-align: center;
        margin-bottom: 20px;
    }

    .about-content {
        text-align: left;
    }

    .about-content p {
        text-align: left;
    }

    .experience-badge h3 {
        font-size: 1.4rem;
    }

    .experience-badge p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        padding: 6px 14px;
    }

    .btn-success {
        width: 100%;
    }

    .about-content {
        text-align: start;
    }

    .about-content p {
        font-size: 14px;
    }
}





/* ============================ */
/* =====  Gallery Section ===== */
/* ============================ */
.gallery-section {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.img-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.img-popup img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #1f8a45;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-img {
        height: 180px;
    }

    .img-popup img {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        height: 150px;
    }

    .close-btn {
        top: 15px;
        right: 25px;
        font-size: 30px;
    }
}


/* ============================ */
/* =====  partners Section ===== */
/* ============================ */
.partners-section {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
}

.partner-card {
    background-color: #f7f8fa;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-card img {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .partner-card {
        padding: 25px 15px;
        height: 110px;
    }

    .partner-card img {
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        height: 100px;
    }

    .partner-card img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        height: 90px;
        padding: 20px 10px;
    }

    .partner-card img {
        max-height: 45px;
    }
}



/* ================================================================================================================= */
/* =====  Product Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Hero Section ===== */
/* ============================ */
.energy-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("assets/img/head-background.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.energy-hero-content {
    max-width: 700px;
}

.energy-hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.energy-hero-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #e2e2e2;
}

.energy-btn-hero {
    display: inline-block;
    background-color: #1f8a45;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.energy-btn-hero:hover {
    background-color: #157734;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .energy-hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .energy-hero-section {
        padding: 100px 15px;
    }

    .energy-hero-section h1 {
        font-size: 1.9rem;
    }

    .energy-hero-section p {
        font-size: 1rem;
    }
}



/* ============================ */
/* =====  Product Section ===== */
/* ============================ */
.energy-products-section {
    background: #f9fafc;
}

.category-list a.active {
    background: #1a9b4a;
    color: #fff;
}

/* Sidebar */
.category-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: #1a9b4a;
    color: #fff;
}

/* Product cards */
.product-card-alt {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.product-card-alt:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #f7f7f7;
    transition: transform 0.4s ease;
}

.product-card-alt:hover img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    color: #1a6e2b;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .category-sidebar {
        margin-bottom: 30px;
    }

    .product-image img {
        height: 200px;
    }
}




/* ================================================================================================================= */
/* =====  Product Details Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Produtc Detail Section ===== */
/* ============================ */
/* .product-detail-section {
  padding: 50px 0;
} */

/* Thumbnails */
.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: #1a9b4a;
}

/* Main image */
.main-image {
    width: 100%;
    /* height: 400px; */
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Tabs */
.nav-tabs .nav-link {
    font-weight: 600;
    color: #333;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #1a9b4a;
    color: #1a9b4a;
}

.table th {
    width: 40%;
    font-weight: 500;
}

.table td,
.table th {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}



/* ============================ */
/* =====  Inquiry Popup Form ===== */
/* ============================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-form {
    background: #fff;
    padding: 30px 25px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popupShow 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

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

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

/* Form Inputs */
.popup-form .form-control {
    border-radius: 6px;
    background: #f8f9fa;
}

/* Submit Button */
.popup-form .btn-success {
    background: #1a9b4a;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.popup-form .btn-success:hover {
    background: #14853d;
}

/* Small screen */
@media (max-width: 576px) {
    .popup-form {
        padding: 20px;
    }
}



/* ================================================================================================================= */
/* =====  Contact Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Contact Section ===== */
/* ============================ */
.contact-hero-section {
    background: url('assets/img/contact.png') center/cover no-repeat;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.contact-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-hero-section h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
}

.contact-info-section {
    position: relative;
    z-index: 5;
    margin-top: -90px;
    padding-bottom: 30px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 220px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon i {
    font-size: 38px;
    color: #1a9b4a;
}

.contact-card p {
    margin-top: 8px;
    font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-info-section {
        margin-top: -100px;
    }

    .contact-card {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 40vh;
    }

    .contact-info-section {
        margin-top: -80px;
    }

    .contact-card {
        height: 160px;
    }
}



/* ============================ */
/* =====  Contact form Section ===== */
/* ============================ */
.contact-form-section {
    background-color: #ffffff;
}

.contact-form {
    max-width: 750px;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #1a9b4a;
    box-shadow: 0 0 0 0.15rem rgba(26, 155, 74, 0.25);
}

.contact-form label {
    color: #333;
    font-weight: 500;
}

.btn-success {
    background-color: #1a9b4a;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #157d3d;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
        padding: 0 10px;
    }

    .contact-form .form-control {
        font-size: 14px;
    }

    .btn-success {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-section h2 {
        font-size: 1.6rem;
    }

    .contact-form label {
        font-size: 14px;
    }

    .btn-success {
        padding: 10px;
    }
}




/* ================================================================================================================= */
/* =====  BLOG DETAIL PAGE ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Blog Section ===== */
/* ============================ */
.blog-detail #blogContainer img {
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
}

.blog-detail h2 {
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.blog-detail p.text-muted {
    font-size: 15px;
    color: #666;
}

.blog-detail div.text-start {
    line-height: 1.8;
    color: #333;
    font-size: 17px;
}

.blog-detail h4,
.blog-detail h5 {
    margin-top: 24px;
    color: #004aad;
    font-weight: 600;
}

.related-blogs {
    background: #fff;
    border: 1px solid #eee;
}

.related-blogs .related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
}

.related-blogs .related-item:hover {
    transform: translateX(5px);
    color: #004aad;
}

.related-blogs .related-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-blogs .related-item h6 {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.related-blogs .related-item span {
    font-size: 13px;
    color: #888;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .related-blogs {
        margin-top: 30px;
    }
}


/* ================================================================================================================= */
/* =====  Career Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Job Section ===== */
/* ============================ */
.job-card {
    border: 1px solid #ddd;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.application-form {
    max-width: 600px;
    margin: 60px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.application-form h4 {
    color: #198754;
}








/* ================================================================================================================= */
/* =====  Privacy Page ===== */
/* ================================================================================================================== */

/* ============================ */
/* =====  Privacy Section ===== */
/* ============================ */
.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    margin: 0 auto;
    background: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

.privacy-content h2 {
    color: #0d6efd;
}

.privacy-content h3 {
    margin-top: 40px;
    color: #333;
}

.privacy-content h4 {
    margin-top: 20px;
    color: #444;
}

.privacy-content p,
.privacy-content li {
    line-height: 1.7;
}

.privacy-content a {
    color: #0d6efd;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}