/*
  Amrityu Alloys — Mega Industry Style CSS
  Matching: aeonsolutions.com/web/MI/index-4.html
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --orange: #E87A2A;
    --orange-dark: #D06A1E;
    --orange-light: #F5A623;
    --navy: #1B2057;
    --navy-light: #252B6A;
    --navy-dark: #131842;
    --black: #111;
    --white: #fff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #ccc;
    --gray-500: #888;
    --gray-700: #444;
    --body-text: #555;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition: all 0.4s ease;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 6px;
    --radius-lg: 10px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-dark {
    background: var(--navy);
}

.bg-gray {
    background: var(--gray-100);
}

.mt-0 {
    margin-top: 0;
}

.mt-30 {
    margin-top: 30px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* ===== BUTTONS ===== */
.btn-mi {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--orange);
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius);
}

.btn-mi::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-mi:hover {
    color: var(--orange);
}

.btn-mi:hover::before {
    left: 0;
}

.btn-mi-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-mi-outline::before {
    background: var(--orange);
}

.btn-mi-outline:hover {
    color: var(--navy);
    border-color: var(--orange);
}

/* ===== SECTION TITLE ===== */
.section-title {
    margin-bottom: 50px;
}

.section-title h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h4::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--orange);
    vertical-align: middle;
    margin-left: 15px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    color: var(--body-text);
    line-height: 1.8;
}

.section-title.text-center p {
    margin: 0 auto;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 25px;
}

.topbar-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-info span i {
    color: var(--orange);
    font-size: 15px;
}

.topbar-social {
    display: flex;
    gap: 5px;
}

.topbar-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    border-radius: 3px;
    transition: var(--transition);
}

.topbar-social a:hover {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-mi {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar-mi.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 22px;
    margin: 0;
    line-height: 1.1;
}

.nav-logo h2 span {
    color: var(--orange);
}

.nav-logo small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    font-weight: 600;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 28px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--orange);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--navy);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroZoom 18s ease infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 32, 87, 0.88), rgba(19, 24, 66, 0.75));
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-slide-content .hero-tag {
    display: inline-block;
    color: var(--orange);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 2px;
    background: var(--orange);
}

.hero-slide-content h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-slide-content h1 span {
    color: var(--orange);
}

.hero-slide-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
}

/* ============================================
   COMPANY VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--gray-100);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-text p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
}

.vh-item i {
    color: var(--orange);
    font-size: 20px;
}

.video-player-wrap {
    position: relative;
}

.video-player {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: var(--navy);
    aspect-ratio: 16 / 9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 32, 87, 0.5), rgba(27, 32, 87, 0.2));
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.video-player.playing .video-overlay {
    opacity: 0;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(232, 122, 42, 0.5);
    animation: playPulse 2s infinite;
}

.video-play-btn i {
    font-size: 36px;
    color: var(--white);
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--orange-dark);
}

.video-player.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 122, 42, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(232, 122, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 122, 42, 0);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 122, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.service-card:hover .service-icon {
    background: var(--orange);
}

.service-card .service-icon i {
    font-size: 30px;
    color: var(--orange);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--navy);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card h3 a:hover {
    color: var(--orange);
}

.service-card p {
    margin-bottom: 15px;
    font-size: 14px;
}

.service-card .read-more {
    color: var(--navy);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .read-more:hover {
    color: var(--orange);
}

/* ============================================
   HOW WE WORK TABS
   ============================================ */
.hww-section {
    background: var(--gray-100);
}

.hww-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--gray-200);
}

.hww-tab {
    padding: 15px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--gray-500);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: var(--transition);
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.hww-tab:hover,
.hww-tab.active {
    color: var(--navy);
    border-bottom-color: var(--orange);
}

.hww-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.hww-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hww-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.hww-text p {
    line-height: 1.8;
}

.hww-image {
    height: 350px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.hww-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 32, 87, 0.4), transparent);
}

/* ============================================
   COUNTER / FACTS SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(rgba(27, 32, 87, 0.9), rgba(27, 32, 87, 0.9)),
        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920') center/cover fixed;
    padding: 80px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.counter-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.counter-item .counter-icon {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 15px;
}

.counter-item h2 {
    font-size: 50px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-item h2 .counter-suffix {
    font-size: 30px;
}

.counter-item p {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   PROJECTS / PORTFOLIO
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    background: var(--navy);
}

.project-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 32, 87, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(27, 32, 87, 0.95), rgba(27, 32, 87, 0.4));
}

.project-card-overlay h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.project-card-overlay span {
    color: var(--orange);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--gray-100);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--radius-lg);
}

.testimonial-card .quote-icon {
    font-size: 50px;
    color: var(--orange);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-700);
}

.testimonial-card .author {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.testimonial-card .role {
    color: var(--orange);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-item {
    border: 1px solid var(--gray-200);
    margin-bottom: 10px;
    transition: var(--transition);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: none;
    width: 100%;
    border: none;
    text-align: left;
}

.faq-question:hover,
.faq-item.active .faq-question {
    background: var(--orange);
    color: var(--navy);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================
   PAGE BANNER (sub-pages)
   ============================================ */
.page-banner-mi {
    background: linear-gradient(rgba(27, 32, 87, 0.9), rgba(27, 32, 87, 0.9)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920') center/cover;
    padding: 100px 0 80px;
    text-align: center;
}

.page-banner-mi h1 {
    font-size: 48px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-banner-mi .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-banner-mi .breadcrumb a {
    color: var(--orange);
}

.page-banner-mi .breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   ABOUT PAGE — VISION GRID
   ============================================ */
.about-grid-mi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-mi .vision-quote {
    background: var(--gray-100);
    border-left: 4px solid var(--orange);
    padding: 20px 25px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin: 25px 0;
    color: var(--gray-700);
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.about-feature .af-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    border-radius: var(--radius);
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
}

.about-img-mi {
    position: relative;
    height: 450px;
    background: var(--navy);
    overflow: hidden;
}

.about-img-mi .exp-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--orange);
    padding: 25px 30px;
    text-align: center;
}

.about-img-mi .exp-badge h3 {
    font-size: 40px;
    line-height: 1;
    color: var(--navy);
}

.about-img-mi .exp-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 700;
}

/* Quality Cards */
.quality-grid-mi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quality-card-mi {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.quality-card-mi:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.quality-card-mi i {
    font-size: 45px;
    color: var(--orange);
    margin-bottom: 20px;
    display: block;
}

.quality-card-mi h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.quality-card-mi p {
    font-size: 14px;
}

/* ============================================
   FACILITIES — TIMELINE CARDS
   ============================================ */
.facility-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.facility-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.facility-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.facility-card-head {
    background: var(--navy);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.facility-card-head .fc-num {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.facility-card-head h3 {
    color: var(--white);
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.facility-card-body {
    padding: 25px;
}

.facility-card-body .fc-desc {
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.fc-list li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px dashed var(--gray-200);
}

.fc-list li:last-child {
    border-bottom: 0;
}

.fc-list li i {
    color: var(--orange);
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Furnace highlight */
.furnace-highlight {
    background: var(--navy);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.furnace-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 122, 42, 0.15), transparent 70%);
}

.furnace-highlight h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.furnace-highlight .cap {
    color: var(--orange);
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.furnace-highlight p {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* ============================================
   GROUP COMPANIES
   ============================================ */
.companies-grid-mi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gc-card {
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.gc-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.gc-card-header {
    background: var(--navy);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gc-logo {
    width: 65px;
    height: 65px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 18px;
    color: var(--navy);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.gc-card-header h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 4px;
}

.gc-card-header .gc-cert {
    display: inline-block;
    background: rgba(232, 122, 42, 0.2);
    color: var(--orange);
    padding: 3px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.gc-card-body {
    padding: 30px;
}

.gc-tagline {
    color: var(--orange-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
}

.gc-stat {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--gray-100);
}

.gc-stat strong {
    font-size: 26px;
    color: var(--navy);
    display: block;
    font-family: var(--font-primary);
}

.gc-stat small {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gc-equipment li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--body-text);
    position: relative;
    padding-left: 16px;
    border-bottom: 1px dashed var(--gray-200);
}

.gc-equipment li:last-child {
    border-bottom: 0;
}

.gc-equipment li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.gc-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-500);
}

.gc-address i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 2px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid-mi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.cc-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.cc-item:hover {
    border-color: var(--orange);
}

.cc-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    border-radius: var(--radius);
}

.cc-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cc-item p {
    font-size: 14px;
    line-height: 1.7;
}

.contact-form-mi {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.contact-form-mi h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.cf-group {
    margin-bottom: 15px;
}

.cf-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cf-group input,
.cf-group textarea,
.cf-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-200);
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--navy);
    transition: var(--transition);
    background: var(--white);
    outline: none;
    border-radius: var(--radius);
}

.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 42, 0.15);
}

.cf-group textarea {
    min-height: 130px;
    resize: vertical;
}

.map-wrap {
    margin-top: 60px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.map-wrap iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ============================================
   CTA / CALL TO ACTION BANNER
   ============================================ */
.cta-mi {
    background: var(--orange);
    padding: 60px 0;
    text-align: center;
}

.cta-mi h2 {
    font-size: 36px;
    color: var(--navy);
    text-transform: uppercase;
}

.cta-mi h2 span {
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-mi {
    background: var(--navy);
    padding-top: 80px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '›';
    color: var(--orange);
    font-weight: bold;
    font-size: 16px;
}

.footer-links li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom-mi {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

.d6 {
    transition-delay: 0.6s;
}

.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   PARTNER BANNER
   ============================================ */
.partner-banner {
    display: flex;
    gap: 0;
    margin-bottom: 35px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 25px;
}

.partner-item {
    flex: 1;
    position: relative;
    padding: 0 25px;
}

.partner-item:first-child {
    padding-left: 0;
    border-right: 2px solid var(--orange);
}

.partner-item:last-child {
    padding-right: 0;
}

.partner-avatar {
    display: none;
}

.partner-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.partner-info span {
    font-size: 12px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--orange);
    padding: 3px 12px;
    border-radius: 3px;
    display: inline-block;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-category {
    margin-bottom: 50px;
}

.gallery-category h3 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.gallery-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 32, 87, 0.9) 0%, rgba(27, 32, 87, 0.4) 50%, rgba(27, 32, 87, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(232, 122, 42, 0.95) 0%, rgba(27, 32, 87, 0.5) 100%);
}

.gallery-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
    .hero-slide-content h1 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-grid-mi,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .companies-grid-mi {
        grid-template-columns: 1fr;
    }

    .contact-grid-mi {
        grid-template-columns: 1fr;
    }

    .partner-banner {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quality-grid-mi {
        grid-template-columns: 1fr 1fr;
    }

    .facility-cards {
        grid-template-columns: 1fr;
    }

    .hww-content.active {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .page-banner-mi h1 {
        font-size: 36px;
    }

    .pt-100 {
        padding-top: 70px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {

    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        z-index: 9999;
        overflow-y: auto;
        padding-bottom: 30px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 16px 25px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 15px;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-logo-img {
        height: 55px;
    }

    .nav-inner {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    /* Topbar */
    .topbar {
        display: none;
    }

    /* Hero */
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .hero-slide-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .hero-slide-content p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .hero-tag {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        padding-left: 40px !important;
    }

    .hero-tag::before {
        width: 30px !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn-mi {
        text-align: center;
        padding: 12px 25px;
        font-size: 13px;
    }

    .hero-dots {
        bottom: 20px;
    }

    /* Section paddings */
    .pt-100 {
        padding-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .pt-80 {
        padding-top: 40px;
    }

    .pb-80 {
        padding-bottom: 40px;
    }

    /* Section titles */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title h4 {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-title h4::after {
        width: 30px;
        margin-left: 10px;
    }

    /* Video section */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 28px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* How We Work */
    .hww-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 5px;
    }

    .hww-tab {
        padding: 12px 20px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        margin-bottom: 0;
        text-align: center;
    }

    .hww-tab.active {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

    .hww-content.active {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hww-image {
        height: 250px;
        border-radius: var(--radius-lg);
    }

    .hww-text h3 {
        font-size: 20px;
    }

    /* Counter section */
    .counter-section {
        padding: 50px 0;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .counter-item {
        padding: 20px 10px;
    }

    .counter-item h2 {
        font-size: 28px;
    }

    .counter-item .counter-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 18px;
    }

    /* About page */
    .about-grid-mi {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-mi {
        height: 280px;
    }

    .about-feature {
        padding: 15px;
    }

    .vision-quote {
        font-size: 15px;
    }

    /* Quality cards */
    .quality-grid-mi {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact */
    .contact-grid-mi {
        grid-template-columns: 1fr;
    }

    .contact-form-mi {
        padding: 25px 20px;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }

    .cc-item {
        padding: 15px;
    }

    /* Facility cards */
    .facility-cards {
        grid-template-columns: 1fr;
    }

    .facility-card {
        padding: 25px 20px;
    }

    .furnace-highlight {
        padding: 25px 20px;
    }

    .furnace-highlight h3 {
        font-size: 20px;
    }

    /* Companies */
    .companies-grid-mi {
        grid-template-columns: 1fr;
    }

    .gc-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .gc-stats {
        flex-direction: column;
        gap: 10px;
    }

    /* CTA */
    .cta-mi {
        padding: 40px 0;
    }

    .cta-mi h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    /* Page Banner */
    .page-banner-mi {
        padding: 60px 0 40px;
    }

    .page-banner-mi h1 {
        font-size: 26px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-mi {
        padding: 40px 0 0;
    }

    /* Buttons */
    .btn-mi {
        padding: 12px 25px;
        font-size: 13px;
    }

    /* Map */
    .map-wrap iframe {
        height: 250px;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 25px 20px;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }

    .hero-slide-content h1 {
        font-size: 22px;
    }

    .hero-slide-content p {
        font-size: 13px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .counter-item h2 {
        font-size: 22px;
    }

    .counter-item p {
        font-size: 12px;
    }

    .cta-mi h2 {
        font-size: 18px;
    }

    .page-banner-mi h1 {
        font-size: 22px;
    }

    .gc-equipment {
        font-size: 13px;
    }

    .fc-list li {
        font-size: 13px;
    }
}