/**
 * Home page section styles - Akhilam Industries
 */

/* ========== Banner / Hero ========== */
.banner-section { background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #fff 100%); }
.banner-heading { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: #2F4F7C; line-height: 1.3; }
.banner-subheading { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; color: var(--logo-orange, #ea580c); }
.banner-text {
  font-size: 18px;
  color: #607B9E;
  line-height: 1.6;
  padding: 0px 44px 0px 0px;
}
.btn-banner-primary { background: #2F4F7C; color: #fff; border: none; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 500; }
.btn-banner-primary:hover { background: #243a5c; color: #fff; }
.btn-banner-outline { background: #fff; color: #2F4F7C; border: 2px solid #2F4F7C; padding: 0.5rem 1.4rem; border-radius: 8px; font-weight: 500; }
.btn-banner-outline:hover { background: #2F4F7C; color: #fff; }
.banner-slider-wrap { min-height: 320px; }
.banner-slide-img { min-height: 320px; object-fit: cover; }
.banner-logo-overlay { z-index: 2; pointer-events: none; }
.banner-overlay-logo { height: 36px; width: auto; max-width: 140px; object-fit: contain; display: block; }
#bannerCarousel .carousel-control-prev,
#bannerCarousel .carousel-control-next { z-index: 3; width: 40px; opacity: 0.8; }

/* ========== Shared section title pattern ========== */
.section-subtitle { font-size: 0.85rem; font-weight: 500; color: #4a5568; letter-spacing: 0.02em; }
.section-heading { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700; color: #2d3748; }
.section-heading-accent {
    color: var(--logo-orange, #ea580c);
    position: relative;
    display: inline-block;
}
.section-heading-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--logo-orange, #ea580c);
    border-radius: 2px;
}

/* ========== About Us ========== */
.about-section { background: #fff; }
.about-image-wrap { min-height: 340px; position: relative; }
.about-image-wrap .about-img { width: 100%; object-fit: cover; }
.about-img-placeholder { width: 100%; height: 340px; background: linear-gradient(135deg, #e8eef5 0%, #d1dae6 100%); }
.about-experience-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    min-width: 140px;
    padding: 1.25rem 1rem;
    background: #1a4c8c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-experience-number { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; line-height: 1; display: block; }
.about-experience-label { font-size: 0.8rem; margin-top: 0.25rem; opacity: 0.95; }
.about-us-heading { font-size: 0.85rem; font-weight: 600; color: #1a4c8c; letter-spacing: 0.08em; }
.about-title-line1 { font-size: clamp(1.35rem, 2.8vw, 1.75rem); font-weight: 700; color: #2d3748; }
.about-title-line2 { font-size: clamp(1.35rem, 2.8vw, 1.75rem); font-weight: 700; color: var(--logo-orange, #ea580c); }
.about-divider { width: 60px; height: 4px; background: var(--logo-orange, #ea580c); border-radius: 2px; }
.about-body-text { font-size: 1rem; color: #4a5568; line-height: 1.7; }
.about-body-text p { margin-bottom: 1rem; }
.about-body-text p:last-child { margin-bottom: 0; }
.btn-know-more { background: var(--logo-orange, #ea580c); color: #fff; border: none; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; }
.btn-know-more:hover { background: #c44a0a; color: #fff; }

/* ========== Vision Mission Values - separate section with icons ========== */
.vmv-section { background: #f2f5f9; }
.vmv-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.75rem 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(10, 78, 158, 0.08);
}
.vmv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 12px 32px rgba(10, 78, 158, 0.08);
}
.vmv-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: #fff;
}
.vmv-icon-vision { background: linear-gradient(135deg, #0A4E9E 0%, #1a6bc7 100%); }
.vmv-icon-mission { background: linear-gradient(135deg, var(--logo-orange, #ea580c) 0%, #f97316 100%); }
.vmv-icon-values { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); }
.vmv-card-title { font-size: 1.2rem; font-weight: 700; color: #0A4E9E; margin-bottom: 0.75rem; }
.vmv-card-text { font-size: 0.95rem; color: #6C757D; line-height: 1.65; }
.vmv-card-text p { margin-bottom: 0.5rem; }
.vmv-card-text p:last-child { margin-bottom: 0; }
.why-choose-card { background: #fff; }
.why-choose-title { font-size: 1.25rem; font-weight: 600; color: #2F4F7C; }
.why-choose-list li { font-size: 1rem; color: #4a5568; padding: 0.35rem 0; }
.btn-why-choose { background: #2F4F7C; color: #fff; border: none; padding: 0.6rem 2rem; border-radius: 8px; font-weight: 500; box-shadow: 0 2px 8px rgba(47,79,124,0.3); }
.btn-why-choose:hover { background: #243a5c; color: #fff; }

/* ========== Products ========== */
.products-section { background: #fff; }
.product-card {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.product-card-img-wrap {
    background: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}
.product-card-img1 { width: 100%; height: 300px; object-fit: cover; }
.product-card-placeholder { width: 100%; height: 300px; background: #d1dae6; }
.product-card-label {
    background: #224a87;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 0.5rem;
    line-height: 1.3;
}

/* ========== Gallery ========== */
.gallery-section { background: #f2f5f9; }
.gallery-card {
    background: #e8eef5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.gallery-card-img-wrap { background: #e8eef5; min-height: 300px; overflow: hidden; }
.gallery-card-img { width: 100%; height: 300px; object-fit: cover; }
.gallery-card-placeholder { width: 100%; height: 300px; background: #d1dae6; }
.gallery-card-label {
    background: #224a87;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 0.5rem;
    line-height: 1.3;
    border-radius: 0 0 8px 8px;
}

/* ========== Stats ========== */
.stats-section { background: var(--logo-dark, #1e3a5f); }
.stats-box {
    border: 2px solid var(--logo-orange, #ea580c);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    color: #fff;
}
.stats-number { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.35rem; }
.stats-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.95; }

/* ========== Industries ========== */
.industries-section { background: #f2f5f9; }
.industry-card { background: #fff; }
.industry-card-img-wrap {
    min-height: 300px;
    overflow: hidden;
    background: #e8eef5;
}
.industry-card-img { width: 100%; height: 300px; object-fit: cover; }
.industry-card-placeholder { width: 100%; height: 300px; background: #d1dae6; }
.industry-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    padding: 0.75rem 0.5rem;
}

/* ========== Clients marquee ========== */
.clients-section { background: #fff; }
.clients-marquee-wrap { overflow: hidden; width: 100%; }
.clients-marquee {
    display: flex;
    width: max-content;
    animation: clients-scroll 40s linear infinite;
}
.clients-marquee:hover { animation-play-state: paused; }
.clients-marquee-inner { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; flex-shrink: 0; }
.client-logo-card {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.client-logo-img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.85; }
.client-logo-img:hover { filter: grayscale(0%); opacity: 1; }
.client-logo-placeholder {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    line-height: 1.2;
}
@keyframes clients-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== CTA ========== */
.cta-section { background: #173b88; position: relative; }
.cta-subtitle { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.cta-heading { font-size: clamp(1.25rem, 2.8vw, 1.75rem); font-weight: 700; color: #fff; }
.cta-heading-accent { color: #f7941d; position: relative; display: inline-block; }
.cta-heading-accent::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px; background: #f7941d; border-radius: 2px; }
.cta-text { font-size: 1rem; color: #fff; opacity: 0.95; max-width: 640px; line-height: 1.6; }
.btn-cta {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 0.65rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.35);
}
.btn-cta:hover { background: #e08518; color: #fff; }

/* ========== Contact & FAQ ========== */
.contact-section { background: #f2f5f9; }
.contact-form-card,
.faq-card { background: #fff; }
.contact-form-title,
.faq-title { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; color: #1a4c8c; }
.btn-contact-submit { background: #2F4F7C; color: #fff; border: none; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 500; }
.btn-contact-submit:hover { background: #243a5c; color: #fff; }
.accordion-faq .accordion-button { font-size: 0.95rem; font-weight: 600; color: #2d3748; }
.accordion-faq .accordion-button:not(.collapsed) { color: #1a4c8c; box-shadow: none; }
.accordion-faq .accordion-button::after { margin-left: auto; }
.accordion-faq .accordion-body { font-size: 0.9rem; line-height: 1.6; }

/* ========== Scroll-down animations ========== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate-delay-1 { transition-delay: 0.1s; }
.scroll-animate-delay-2 { transition-delay: 0.2s; }
.scroll-animate-delay-3 { transition-delay: 0.3s; }
.scroll-animate-delay-4 { transition-delay: 0.4s; }
.scroll-animate-from-left { transform: translateX(-40px) translateY(0); }
.scroll-animate-from-left.animated { transform: translateX(0) translateY(0); }
.scroll-animate-from-right { transform: translateX(40px) translateY(0); }
.scroll-animate-from-right.animated { transform: translateX(0) translateY(0); }
.scroll-animate-fade { transform: none; }
.scroll-animate-fade.animated { transform: none; }
.page-header-section{ padding: 50px 0px !important; }