/* Logo */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    letter-spacing: .5px;
}

.brand-text small {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-area.header-sticky .brand-name {
    color: #222;
}

/* Mobile */

@media (max-width:991px) {

    .brand-logo img {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-text small {
        display: none;
    }

}

/* Round all banner images */

.main-banner .thumb {
    overflow: hidden;
    border-radius: 16px;
    /* adjust as needed */
}

/* Main large banner image */
.main-banner .left-content .thumb img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side grid images */
.main-banner .right-first-image .thumb img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: smooth hover feel */
.main-banner .thumb img {
    transition: transform 0.4s ease, border-radius 0.3s ease;
}

/* Round all banner images */

.main-banner .thumb {
    overflow: hidden;
    border-radius: 16px;
    /* adjust as needed */
}

/* Main large banner image */
.main-banner .left-content .thumb img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side grid images */
.main-banner .right-first-image .thumb img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: smooth hover feel */
.main-banner .thumb img {
    transition: transform 0.4s ease, border-radius 0.3s ease;
}

/* About */

#about {
    padding: 0px 0;
}

.lead-text {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

.quote-box {
    display: flex;
    gap: 18px;
    background: #f8f8f8;
    padding: 25px;
    border-left: 5px solid #2a2a2a;
    border-radius: 15px;
    margin: 35px 0;
}

.quote-box i {
    font-size: 32px;
    color: #d39b32;
    margin-top: 5px;
}

.quote-box p {
    margin: 0;
    font-size: 20px;
    font-style: italic;
    color: #222;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
}

.feature-item i {
    color: #d39b32;
    font-size: 18px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    transition: .4s;
}

.about-image img:hover {
    transform: scale(1.02);
}

.image-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 25px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.image-card h4 {
    margin-bottom: 10px;
}

.image-card p {
    margin: 0;
    color: #777;
}


/* =========================
   PROCESS SECTION
========================= */

#process {
    padding: 100px 0;
    background: #f8f9fa;
    /* optional for contrast */
}

/* =========================
   PROCESS CARD
========================= */

.process-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;

    height: 100%;

    padding-top: 70px;
    /* IMPORTANT: space for floating number */
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

/* =========================
   OPTIONAL IMAGE
========================= */

.process-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* =========================
   STEP NUMBER (FIXED POSITION)
========================= */

.step-number {
    position: absolute;
    top: 7px;
    left: 20px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: linear-gradient(135deg, #d39b32, #b8841f);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;

    z-index: 2;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* =========================
   CONTENT
========================= */

.process-content {
    padding: 30px;
    text-align: left;
}

.process-content h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #222;
}

.process-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    #process {
        padding: 80px 0;
    }

    .process-content {
        padding: 25px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 18px;
        top: -18px;
    }
}

.footer-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;

    /* Strong WhatsApp Green */
    background: #25D366;

    color: #fff;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

@keyframes pulseWA {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.footer-whatsapp-cta {
    animation: pulseWA 2.5s infinite;
}

.footer-whatsapp-cta i {
    font-size: 18px;
}

/* Hover effect */
.footer-whatsapp-cta:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;

    height: 44px;
    padding: 0 20px !important;

    background: #25D366 !important;
    color: #fff !important;

    border-radius: 25px;
    font-weight: 600;
    line-height: 44px !important;
    vertical-align: middle;

    transition: all .3s ease;
}

.whatsapp-btn i,
.whatsapp-btn span {
    display: flex;
    align-items: center;
    line-height: normal !important;
    margin: 0;
    padding: 0;
}

.whatsapp-btn:hover,
.whatsapp-btn:hover i,
.whatsapp-btn:hover span {
    color: #000 !important;
}

/* Background spacing for contrast */
.how-section {
    background: #f7f8fc;
    padding: 60px 0;
}

/* Base card */
.how-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Soft glowing border effect */
.how-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.06), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.how-card:hover::before {
    opacity: 1;
}

/* Hover lift */
.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.how-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #111, #444);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Headings */
.how-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.how-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* STEP COLOR ACCENTS (makes each card feel unique) */
.step-1 .how-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.step-2 .how-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.step-3 .how-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.step-4 .how-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Base Card */
.contact-card {
    background: #ffffff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Hover lift */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon container */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Typography */
.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* CTA Button */
.contact-card a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* =========================
   UNIQUE BRAND GRADIENTS
========================= */

/* WhatsApp */
.contact-whatsapp .contact-icon {
    background: linear-gradient(135deg, #0c0c0c, #0c0c0c);
}

.contact-whatsapp a {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.contact-whatsapp a:hover {
    background: #0c0c0c;
    color: #fff;
}

/* Email */
.contact-email .contact-icon {
    background: linear-gradient(135deg, #0c0c0c, #0c0c0c);
}

.contact-email a {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.contact-email a:hover {
    background: #4facfe;
    color: #fff;
}

/* Call */
.contact-call .contact-icon {
    background: linear-gradient(135deg, #0c0c0c, #0c0c0c);
}

.contact-call a {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.contact-call a:hover {
    background: #f7971e;
    color: #fff;
}

/* Consultation */
.contact-meeting .contact-icon {
    background: linear-gradient(135deg, #0c0c0c, #0c0c0c);
}

.contact-meeting a {
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.contact-meeting a:hover {
    background: #667eea;
    color: #fff;
}

.industry-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    /* Base lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
    position: relative;
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.industry-card .thumb img {
    width: 100%;
    height: 220px;
    /* Same image height for all cards */
    object-fit: cover;
}

.industry-card .down-content {
    padding: 20px;
    flex: 1;
    /* Makes all content areas equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.industry-card h4 {
    min-height: 50px;
    /* Keeps headings aligned */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card span {
    color: #666;
    line-height: 1.6;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-brand-text h3 {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.footer-brand-text span {
    color: #bdbdbd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #cfcfcf;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact i {
    width: 22px;
    color: #d39b32;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: .3s;
}

.footer-links a:hover {
    color: #d39b32;
    padding-left: 6px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    color: #ccc;
    transition: .3s;
}

.footer-social i {
    width: 25px;
    color: #d39b32;
}

.footer-social a:hover {
    color: #fff;
    padding-left: 6px;
}

.under-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.under-footer p {
    color: #ddd;
    margin-bottom: 5px;
}

.under-footer small {
    color: #999;
}

.footer-social-text {
    color: #cfcfcf !important;
    line-height: 1.8;
    margin-bottom: 20px;
}


/*=========================
PRODUCT SECTION
==========================*/

#products {
    padding: 80px 0;
    background: #fafafa;
}

.product-card {

    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: all .35s ease;

    position: relative;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.product-card .thumb {

    position: relative;
    overflow: hidden;
    height: 260px;

}

.product-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}

.product-card:hover img {

    transform: scale(1.12);

}

/*=========================
OVERLAY
==========================*/

.product-overlay {

    position: absolute;
    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .25));

    opacity: 0;

    transition: .35s;

}

.product-card:hover .product-overlay {

    opacity: 1;

}

.overlay-content {

    text-align: center;

    color: #fff;

    transform: translateY(20px);

    transition: .35s;

}

/* #products .section-heading {
    text-align: left;
}

#products .section-heading h2,
#products .section-heading span {
    text-align: left;
}

#products .section-heading span {
    display: block;
    max-width: 650px;
} */

.product-card:hover .overlay-content {

    transform: translateY(0);

}

.product-badge {

    display: inline-block;

    padding: 6px 15px;

    background: #ffc107;

    color: #222;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;

}

.overlay-content h5 {

    font-weight: 700;

    margin-bottom: 10px;

}

/*=========================
CONTENT
==========================*/

.down-content {

    padding: 22px;

    text-align: center;

}

.down-content h4 {

    font-size: 22px;

    margin-bottom: 12px;

    font-weight: 700;

}

.down-content span {

    display: block;

    color: #777;

    line-height: 1.7;

}

/*=========================
BUTTON
==========================*/

.overlay-content .btn {

    border-radius: 30px;

    padding: 10px 22px;

    font-weight: 600;

}

/*=========================
MODAL
==========================*/

.modal-content {

    border: none;

    border-radius: 18px;

}

.modal-header {

    border-bottom: none;

}

.modal-body {

    max-height: 75vh;

    overflow-y: auto;

}

.gallery-image {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 12px;

    transition: .3s;

}

.gallery-image:hover {

    transform: scale(1.04);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

}

.gallery-card {

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px) {

    .product-card .thumb {

        height: 220px;

    }

}

@media(max-width:768px) {

    .product-card .thumb {

        height: 200px;

    }

}

@media(max-width:576px) {

    .product-card .thumb {

        height: 180px;

    }

}


/* Products & Industries */

#products,
#industry {
    padding: 0px 0;
}

#products .section-heading,
#industry .section-heading {
    margin-bottom: 15px;
    text-align: left;
}

#products .section-heading h2,
#industry .section-heading h2 {
    margin-bottom: 15px;
    font-weight: 700;
}

#products .section-heading p,
#industry .section-heading p,
#products .section-heading span,
#industry .section-heading span {
    display: block;
    max-width: 700px;
    color: #666;
    line-height: 1.8;
}

#product-card {
    margin-top: 10px;
}


.gallery-slide-img {
    max-height: 90vh;
    max-width: 100%;
    width: auto;
    height: auto;

    margin: auto;
    display: block;

    object-fit: contain;
}

.modal-content {
    background: #000;
}

.carousel-inner {
    height: 100vh;
    display: flex;
    align-items: center;
}