:root {
    /* Color Palette */
    --primary-orange: #ff9d00;
    --primary-dark: #1a1a1a;
    --accent-yellow: #fda802;
    --dark-gradient-start: #1a1a1a;
    --dark-gradient-end: #2d2d2d;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 80px;
    --section-padding-lg: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}


.contact-info {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary-orange);
    font-size: 18px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-orange), #ffb732);
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
    color: var(--text-primary);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    filter: brightness(1.2);
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 8s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.53);
    /* bright overlay */
    z-index: 1;
}

section {
    overflow-x: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-transform: uppercase;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.8;
    color: #e5e7eb;
    max-width: 700px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--primary-orange);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 24px rgba(255, 157, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-explore::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-explore:hover::before {
    left: 100%;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 157, 0, 0.5);
    color: var(--text-primary);
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.686);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-explore:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--white);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SERVICES HIGHLIGHT ================= */
.services-highlight {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--section-padding);
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-orange), #ffb732);
}

.service-icon i {
    font-size: 40px;
    color: var(--text-primary);
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-orange), #ffb732);
    color: var(--text-primary);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-icon i {
    font-size: 32px;
    color: var(--white);
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 15px;
    margin-bottom: 28px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}



.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

/* ================= WHO WE ARE ================= */
.who-we-are {
    padding: 0 0 var(--section-padding-lg) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.text-highlight {
    background: linear-gradient(135deg, var(--primary-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
}

/* Image Grid */
.image-grid-wrapper {
    position: relative;
    height: 600px;
}

.image-primary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.image-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-primary:hover img {
    transform: scale(1.05);
}

.image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    border: 8px solid #e5e5e5;
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-secondary:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    min-width: 280px;
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), #ffb732);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 32px;
}

.badge-content h2 {
    font-size: 48px;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-content h2 sup {
    font-size: 24px;
}

.badge-content span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #e5e7eb;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

.stat-item h4 {
    font-size: 36px;
    color: var(--primary-orange);
    margin: 0;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
}

/* Feature Blocks */
.feature-block {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-block:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-orange), #ffb732);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.feature-block:hover .feature-icon i {
    color: var(--white);
}

.feature-content h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Key Metrics */
.key-metrics {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.metric {
    text-align: center;
}

.metric h3 {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-dark-custom {
    background: var(--primary-dark);
    color: var(--white);
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 60, 93, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-custom:hover {
    background: var(--primary-orange);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
}

.btn-dark-custom i {
    transition: transform 0.3s ease;
}

.btn-dark-custom:hover i {
    transform: translateX(4px);
}

/* ================= OUR COMPANY ================= */
.our-company {
    padding: var(--section-padding) 0;
    background: #fff;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 46px;
    color: #ffb400;
    margin-bottom: 20px;
}

.feature-card h5 {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* Company Video */
.company-video {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.company-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ffb400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 180, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: #ffb400;
    font-size: 28px;
    margin-left: 4px;
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 180, 0, 0.25);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ================= INDUSTRY GRID ================= */
.industry-grid {
    background: #000;
}

.industry-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -250px;
    color: #fff;
    transition: all 0.5s ease;
    z-index: 2;
}

.industry-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #dcdcdc;
}

.industry-card:hover .industry-overlay {
    opacity: 1;
}

.industry-card:hover .industry-content {
    bottom: 30px;
}

/* ================= COMPANY HIGHLIGHT ================= */
.company-highlight {
    width: 100%;
    min-height: 520px;
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--section-padding);
}

.highlight-left {
    padding: 90px 80px;
    flex: 0 0 55%;
}

.highlight-left p {
    font-size: 16px;
    max-width: 620px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
    margin-bottom: 20px;
}

.feature-list li {
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #fff;
    background: var(--primary-orange);
    border-radius: 50%;
    font-size: 13px;
    padding: 6px 9px;
    margin-right: 12px;
    flex-shrink: 0;
}

.highlight-right {
    position: relative;
    flex: 0 0 45%;
    background: url("assets/images/overview.jpg") center/cover no-repeat;
    background-attachment: fixed;
}

.stats-box {
    position: absolute;
    top: 60px;
    left: 60px;
    background: #fff;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-box h3 {
    font-size: 48px;
    color: var(--accent-yellow);
    margin-bottom: 6px;
}

.stats-box span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* ================= PROJECTS SECTION ================= */
.projects-section {
    padding: var(--section-padding) 0;
    background: #fff;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.project-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.25));
    transform: translateY(0);
    transition: transform 0.45s ease;
}

.project-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.45s ease;
}

.project-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 10px;
}

.project-line {
    width: 50px;
    height: 2px;
    background: #ffb400;
    margin-top: 10px;
}

.project-card:hover .project-overlay {
    transform: translateY(450px);
}

.project-card:hover .project-content {
    transform: translateY(200px);
}

/* ================= FOOTER ================= */
.footer {
    /* background:
        linear-gradient(to bottom, #0000003c 0%, #000000 100%),
        url("assets/images/footer-back.webp"); */

    background:
        linear-gradient(to bottom, #ffffffd8 0%, #ffffffcb 100%),
        url("assets/images/footer-back5.png");


    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.footer-main {
    padding: var(--section-padding-sm) 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
}

.footer-logo img {
    width: 200px;
   
    /* filter: brightness(0) invert(1); */
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: black;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    /* font-weight: 700; */
    color: var(--primary-orange);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: black;
}

.footer-contact i {
    color: var(--primary-orange);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.footer-copyright strong {
    color: var(--primary-orange);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding-lg: 90px;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 120px 0 80px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .image-grid-wrapper {
        height: 500px;
        margin-bottom: 60px;
    }

    .services-highlight {
        margin-top: 0;
        padding-top: 80px;
    }

    .key-metrics {
        gap: 20px;
    }

    .metric h3 {
        font-size: 32px;
    }

    .company-highlight {
        flex-direction: column;
    }

    .highlight-left,
    .highlight-right {
        flex: 0 0 100%;
    }

    .highlight-left {
        padding: 60px 30px;
    }

    .stats-box {
        top: 30px;
        left: 30px;
    }

    .industry-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-explore,
    .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }

    .slider-controls {
        bottom: 20px;
    }

    .image-grid-wrapper {
        height: 450px;
    }

    .image-primary {
        width: 85%;
        height: 400px;
    }

    .image-secondary {
        width: 70%;
        height: 300px;
    }

    .experience-badge {
        min-width: 240px;
        padding: 24px;
    }



    .key-metrics {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 70px;
        --section-padding-sm: 60px;
    }

    .hero {
        padding: 0px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .service-card,
    .cta-card {
        padding: 40px 30px;
    }

    .who-we-are {
        padding: var(--section-padding-sm) 0;
    }

    .image-grid-wrapper {
        height: 400px;
    }

    .experience-badge {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .industry-card,
    .project-card {
        height: 360px;
    }

    .footer-main {
        padding: var(--section-padding-sm) 0 30px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ================= SCROLL TO TOP BUTTON ================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(11, 60, 93, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}



/* about us */
/* ================= PAGE HEADER ================= */
.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgb(0 0 0 / 35%)), url(assets/images/page-header.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 100;
    margin-bottom: 16px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.page-header .breadcrumb-item {
    color: #e5e7eb;
}

.page-header .breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

.page-header .breadcrumb-item a::after {
    content: "/";
    margin-left: 5px;
}

.page-header .breadcrumb-item.active {
    color: var(--white);
    margin-right: -10px;
}

/* ================= COMPANY STORY ================= */
.company-story {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-date {
    flex: 0 0 150px;
}

.timeline-date h3 {
    font-size: 36px;
    color: var(--primary-orange);
}

.timeline-date span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.timeline-line {
    flex: 0 0 4px;
    background: linear-gradient(180deg,
            var(--primary-orange),
            var(--accent-yellow));
    position: relative;
    border-radius: 2px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 4px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    flex: 1;
    padding: 20px 0;
}

.timeline-content h4 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ================= WHY CHOOSE US ================= */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.choose-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.choose-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
            var(--primary-orange),
            var(--accent-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.choose-icon i {
    font-size: 32px;
    color: var(--white);
}

.choose-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.choose-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ================= CORE VALUES ================= */
.core-values {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.value-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.value-item:hover {
    background: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ================= CTA ================= */
.cta-section {
    padding: var(--section-padding-sm) 0;
    background: linear-gradient(135deg,
            var(--primary-orange),
            var(--accent-yellow));
    text-align: center;
}

.btn-cta-large {
    background: var(--white);
    color: var(--text-primary);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* ================= ANIMATION ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
.timeline-date {
    flex: 0 0 0px;
}
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

/* ================= PREMIUM PRODUCT SECTION ================= */
.product-section {
    padding: var(--section-padding-lg) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.product-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.3), transparent);
}

.product-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(255, 157, 0, 0.1);
}

.product-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-main:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 50px;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 157, 0, 0.4);
}

.product-thumbnails {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.product-thumb {
    flex: 1;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 12px 30px rgba(255, 157, 0, 0.25);
}

.product-thumb:hover::before {
    opacity: 1;
}

.product-thumb.active {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 35px rgba(255, 157, 0, 0.35);
}

.product-details h2 {
    font-size: clamp(38px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-details p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 28px;
}

.spec-list {
    margin-top: 32px;
    padding: 0;
    list-style: none;
}

.spec-list li {
    margin-bottom: 14px;
    font-size: 16px;
    color: #374151;
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li:hover {
    padding-left: 10px;
    color: var(--primary-orange);
}

/* ================= PREMIUM PRODUCT CONTENT ================= */
.product-content-section {
    padding: var(--section-padding-lg) 0;
    background: var(--white);
}

.product-content {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-content h2 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 28px;

    letter-spacing: -0.5px;
}

.product-content h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 50px;

    letter-spacing: -0.3px;
}

.product-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 24px;
}

.text-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================= PREMIUM ADVANTAGES ================= */
.advantages-section {
    padding: var(--section-padding-lg) 0;
    background: rgb(240, 239, 239);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.15), rgba(255, 208, 0, 0.15));
    color: var(--primary-orange);
    padding: 10px 28px;
    border-radius: 50px;

    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 157, 0, 0.2);
    display: none;
}

.section-title {
    font-size: clamp(30px, 5vw, 52px);

    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;

}

.advantage-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.advantage-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 157, 0, 0.2);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.advantage-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(-5deg);
}

.advantage-card:hover .advantage-icon::before {
    opacity: 0.6;
}

.advantage-icon i {
    font-size: 40px;
    color: var(--white);
}

.advantage-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-primary);

    letter-spacing: -0.2px;
}

.advantage-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ================= PREMIUM APPLICATIONS ================= */
.applications-section {
    padding: var(--section-padding-lg) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.applications-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 157, 0, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 208, 0, 0.08), transparent 40%);
    pointer-events: none;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.application-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.application-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.application-item:hover::before {
    transform: scaleY(1);
}

.application-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.application-item:hover .application-icon {
    transform: rotate(10deg) scale(1.1);
}

.application-icon i {
    font-size: 32px;
    color: var(--white);
}

.application-content h4 {
    font-size: 22px;
    margin-bottom: 6px;

    color: var(--white);
}

.application-content p {
    font-size: 15px;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ================= PREMIUM SPECIFICATIONS ================= */
.specifications-section {
    padding: var(--section-padding-lg) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.spec-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-table table {
    width: 100%;
    margin: 0;
}

.spec-table th {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    color: var(--text-primary);
    padding: 24px 28px;

    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.spec-table td {
    padding: 22px 28px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 16px;
}

.spec-table td strong {
    color: var(--text-primary);

}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:hover {
    background: #f9fafb;
}

.spec-highlight {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 157, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.spec-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.spec-highlight h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-primary);

}

.spec-highlight p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

/* ================= PREMIUM RELATED PRODUCTS ================= */
.related-products {
    padding: var(--section-padding-lg) 0;
    background: var(--white);
}

.related-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
}

.related-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.related-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.related-card:hover .related-image::before {
    opacity: 1;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-image img {
    transform: scale(1.15);
}

.related-content {
    padding: 35px;
}

.related-content h4 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-primary);

    letter-spacing: -0.3px;
}

.related-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.related-link {
    color: var(--primary-orange);

    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.related-link:hover {
    gap: 14px;
    color: var(--accent-yellow);
}

/* ================= ANIMATIONS ================= */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .page-header {
        height: 450px;
        /*margin-top: 70px;*/
    }

    .product-image-main img {
        height: 450px;
    }

    .product-content {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 400px;
    }

    .product-image-main img {
        height: 380px;
    }

    .product-content {
        padding: 40px 30px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .spec-table th,
    .spec-table td {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product-content {
        padding: 35px 25px;
    }

    .product-image-main img {
        height: 320px;
    }

    .product-thumb {
        height: 85px;
    }
}

/* Section Background */
.industries-section {
    background: var(--bg-light);
    padding: var(--section-padding) 0;
}


.section-desc {
    max-width: 700px;
    margin: 10px auto 0;
    color: var(--text-secondary);
    font-size: 16px;
}

/* CTA Card (Reusable) */
.cta-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 22px;
    box-shadow: var(--shadow-md);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Icon */
.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

/* Card Heading */
.cta-card h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Card Text */
.cta-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Button */
.btn-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    color: white;
    border-radius: 0px;
    /* font-weight: 600; */
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* blogs */
/* Blog Section Background */
.blog-section {
    background: var(--bg-light);
    padding: var(--section-padding) 0;
}

/* Title */
.blog-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Subtitle */
.blog-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

/* Card */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: .35s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Image */
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

/* Badge */
.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-dark);
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
    display: none;
}

/* Content */
.blog-content {
    padding: 22px;
}

.blog-filter-tab {
    background: var(--accent-yellow);
    color: var(--white);
    margin: 5px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 40px;
}

/* Meta */
.blog-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Heading */
.blog-heading {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Description */
.blog-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Read More */
.blog-read {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
}

.blog-read:hover {
    color: var(--accent-yellow);
}



/* section */
.feedback-section {
    padding: var(--section-padding);
}


/* swiper fix */
.testimonialSwiper {
    padding-bottom: 70px;
}

/* card */
.testimonial-card {
    background: var(--white);
    padding: 60px 30px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* info */
.testimonial-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #f4b400;
    letter-spacing: 2px;
    font-size: 18px;
}

/* avatar */
.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid var(--accent-yellow);
    position: absolute;
    bottom: 0px;
    right: 30px;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    border: 1px solid #3b7d1e;
    border-radius: 6px;
    color: #3b7d1e;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #3b7d1e;
    color: #fff;
}

/* mobile */
@media(max-width:767px) {
    .feedback-title {
        font-size: 32px;
        text-align: center;
    }

    .feedback-sub {
        display: block;
        text-align: center;
    }
}


.products-section {
    padding: var(--section-padding) 0;
    background: rgb(255, 255, 255);
}

/* .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
} */

/* Section Heading */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
}

/* Product Cards */

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 10px 18px;
    font-size: 15px;
    color: var(--text-primary);
}



/* today */
.end-use .grade-tag {
    display: inline-block;
    font-size: 11px;
    padding: 2px 7px;
    margin: 2px 2px;
    background-color: #fda9021b;
    color: var(--primary-orange);
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #fda802;
}

.end-use thead th {
    background-color: var(--accent-yellow);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    vertical-align: middle;
}

.end-use td {
    vertical-align: top;
    font-size: 13.5px;
}

.end-use td:first-child {
    text-align: center;
    width: 40px;
    color: #6c757d;
    font-size: 13px;
}

.end-use td:nth-child(2) {
    font-weight: 500;
}

.end-use td:last-child {
    color: #495057;
    font-size: 13px;
}

.end-use .table-hover tbody tr:hover {
    background-color: #f0f6ff;
}

.end-use .table> :not(caption)>*>* {
    padding: 10px 12px;
}