:root {
    --primary-color: #f7941d;
    --primary-dark: #e07b00;
    --secondary-color: #2e7d32;
    --secondary-dark: #1b5e20;
    --accent-color: #ffc107;
    --dark-color: #1a1a2e;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-bg: #e9ecef;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark-color); }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
.loader { text-align: center; }
.loader .sun-icon { font-size: 60px; color: var(--primary-color); margin-bottom: 15px; }
.loader p { color: var(--text-light); font-weight: 500; }

/* Top Bar */
.top-bar { background: var(--dark-color); padding: 10px 0; }
.top-info { list-style: none; display: flex; flex-wrap: wrap; gap: 25px; margin: 0; }
.top-info li { color: var(--white); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.top-info li i { color: var(--primary-color); }
.social-links a { color: var(--white); margin-left: 15px; font-size: 14px; }
.social-links a:hover { color: var(--primary-color); }

/* Navbar */
.navbar { background: var(--white); box-shadow: var(--shadow); padding: 15px 0; transition: var(--transition); }
.navbar.scrolled { padding: 10px 0; }
.logo-img { max-height: 70px; width: 300px;}
.navbar-nav .nav-link { color: var(--dark-color); font-weight: 500; padding: 10px 18px; position: relative; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary-color); }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 5px; left: 18px; right: 18px; height: 2px; background: var(--primary-color); transform: scaleX(0); transition: var(--transition); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.get-quote-btn { background: var(--primary-color); border: none; color: var(--white); padding: 10px 25px; border-radius: 50px; font-weight: 600; }
.get-quote-btn:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.navbar-toggler { border: none; padding: 10px; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero Section */
.hero-section { position: relative; }
.hero-slide { min-height: 90vh; display: flex; align-items: center; position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-slide .overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; }
.hero-subtitle { display: inline-block; background: var(--primary-color); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.hero-title { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--white); }
.hero-title .highlight { color: var(--primary-color); }
.hero-text { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev { color: var(--white); background: rgba(255,255,255,0.2); width: 50px; height: 50px; border-radius: 50%; }
.heroSwiper .swiper-button-next::after, .heroSwiper .swiper-button-prev::after { font-size: 18px; }
.heroSwiper .swiper-pagination-bullet { background: var(--white); opacity: 0.5; width: 12px; height: 12px; }
.heroSwiper .swiper-pagination-bullet-active { background: var(--primary-color); opacity: 1; }

/* Section Styling */
.section-padding { padding: 80px 0; }
.section-subtitle { display: inline-block; color: var(--primary-color); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-title { font-size: 2rem; margin-bottom: 15px; }
.section-title .highlight { color: var(--primary-color); }

/* Features Section */
.features-section { background: var(--secondary-color); padding: 30px 0; margin-top: -50px; position: relative; z-index: 10; border-radius: 20px; margin-left: 5%; margin-right: 5%; }
.feature-card { text-align: center; padding: 30px 20px; color: var(--white); }
.feature-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; }
.feature-card h4 { font-size: 18px; margin-bottom: 8px; color: var(--white); }
.feature-card p { font-size: 14px; opacity: 0.9; margin: 0; }

/* About Section */
.about-image-wrapper { position: relative; padding-right: 60px;}
.about-image-wrapper .main-img { border-radius: var(--border-radius); box-shadow: var(--shadow); }
.experience-badge { position: absolute; bottom: 30px; right: -1px; background: var(--primary-color); color: var(--white); padding: 25px 30px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); }
.experience-badge .number { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.experience-badge .text { font-size: 14px; font-weight: 500; }
.floating-card { position: absolute; top: 30px; left: -20px; background: var(--white); padding: 15px 25px; border-radius: 50px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; }
.floating-card i { color: var(--primary-color); font-size: 24px; }
.floating-card span { font-weight: 600; color: var(--dark-color); }
.about-content .lead-text { font-size: 16px; color: var(--text-color); font-weight: 500; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.about-features .feature-item { display: flex; align-items: center; gap: 10px; }
.about-features .feature-item i { color: var(--secondary-color); font-size: 16px; }
.about-features .feature-item span { font-weight: 500; }

/* Service Cards */
.service-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.service-icon { position: relative; height: 200px; overflow: hidden; }
.service-icon img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-icon img { transform: scale(1.1); }
.icon-overlay { position: absolute; bottom: 15px; right: 15px; width: 60px; height: 60px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; }
.service-content { padding: 25px; }
.service-content h4 { font-size: 20px; margin-bottom: 10px; }
.service-content p { color: var(--text-light); margin-bottom: 15px; }
.read-more { color: var(--primary-color); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.read-more:hover { color: var(--primary-dark); gap: 12px; }

/* Parallax Section */
.parallax-section { background-attachment: fixed; background-size: cover; background-position: center; position: relative; padding: 100px 0; }
.parallax-section .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.parallax-section .container { position: relative; z-index: 2; }

/* Why Choose Us */
.custom-accordion .accordion-item { background: rgba(255,255,255,0.1); border: none; margin-bottom: 15px; border-radius: var(--border-radius); overflow: hidden; }
.custom-accordion .accordion-button { background: transparent; color: var(--white); font-weight: 600; padding: 20px 25px; }
.custom-accordion .accordion-button:not(.collapsed) { background: var(--primary-color); }
.custom-accordion .accordion-button::after { filter: brightness(0) invert(1); }
.custom-accordion .accordion-body { color: rgba(255,255,255,0.9); padding: 0 25px 20px; }

/* Stats */
.stat-card { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 30px 20px; border-radius: var(--border-radius); text-align: center; }
.stat-icon { font-size: 40px; color: var(--primary-color); margin-bottom: 15px; }
.stat-number { font-size: 40px; font-weight: 800; color: var(--white); }
.stat-card p { color: var(--white); margin: 0; font-weight: 500; }

/* ========================================
   REDESIGNED PROJECT CARDS - GLASSMORPHISM
======================================== */
.project-card-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.project-card-new .project-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.project-card-new:hover .project-bg {
    transform: scale(1.15);
}

.project-card-new .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    transition: all 0.4s ease;
}

.project-card-new:hover .project-overlay {
    background: linear-gradient(180deg, rgba(247, 148, 29, 0.1) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.95) 100%);
}

.project-card-new .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    transform: translateY(60px);
    transition: all 0.4s ease;
}

.project-card-new:hover .project-content {
    transform: translateY(0);
}

.project-card-new .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(247, 148, 29, 0.4);
}

.project-card-new .category-badge i {
    font-size: 10px;
}

.project-card-new h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-card-new .project-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.project-card-new .project-location i {
    color: var(--primary-color);
}

.project-card-new .project-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.project-card-new:hover .project-meta {
    opacity: 1;
    transform: translateY(0);
}

.project-card-new .meta-item {
    text-align: center;
}

.project-card-new .meta-item span {
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.project-card-new .meta-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
}

.project-card-new .view-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.project-card-new:hover .view-btn {
    opacity: 1;
    transform: scale(1);
}

.project-card-new .view-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Partners Carousel */
.partner-logo { background: var(--white); padding: 30px; border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; min-height: 120px; box-shadow: var(--shadow); }
.partner-logo img { max-height: 60px; transition: var(--transition); }
.partner-logo:hover img { filter: grayscale(0); opacity: 1; }

/* CTA Section */
.cta-title { font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.cta-text { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Savings Cards */
.savings-card { background: var(--white); padding: 35px 25px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border-top: 4px solid var(--primary-color); }
.savings-card:hover { transform: translateY(-10px); }
.savings-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--white); }
.savings-card h4 { font-size: 20px; margin-bottom: 10px; }
.savings-card p { color: var(--text-light); margin: 0; }

/* Page Header */
.page-header { min-height: 350px; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-header-content h1 { font-size: 3rem; color: var(--white); margin-bottom: 15px; }
.page-header .breadcrumb { justify-content: center; margin: 0; }
.page-header .breadcrumb-item a { color: var(--white); }
.page-header .breadcrumb-item.active { color: var(--primary-color); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Mission Vision Cards */
.mission-card, .vision-card { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); height: 100%; }
.mission-card { border-left: 5px solid var(--primary-color); }
.vision-card { border-left: 5px solid var(--secondary-color); }
.card-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); margin-bottom: 20px; }
.mission-list, .vision-list { list-style: none; padding: 0; margin-top: 20px; }
.mission-list li, .vision-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.mission-list li i, .vision-list li i { color: var(--primary-color); }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: var(--primary-color); }
.timeline-item { position: relative; margin-bottom: 50px; width: 50%; padding-right: 50px; }
.timeline-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 50px; }
.timeline-dot { position: absolute; right: -12px; top: 0; width: 24px; height: 24px; background: var(--primary-color); border-radius: 50%; border: 4px solid var(--white); box-shadow: var(--shadow); }
.timeline-item:nth-child(even) .timeline-dot { left: -12px; right: auto; }
.timeline-content { background: var(--white); padding: 25px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.timeline-year { display: inline-block; background: var(--primary-color); color: var(--white); padding: 5px 15px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.timeline-content h4 { margin-bottom: 10px; }
.timeline-content p { color: var(--text-light); margin: 0; }

/* Sector Cards */
.sector-card { background: var(--white); padding: 30px 20px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.sector-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.sector-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--white); }
.sector-card h4 { font-size: 18px; margin-bottom: 8px; }
.sector-card p { color: var(--text-light); margin: 0; font-size: 14px; }

/* Service Detail Cards */
.service-detail-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; transition: var(--transition); }
.service-detail-card:hover { transform: translateY(-10px); }
.service-detail-card .service-image { position: relative; height: 200px; overflow: hidden; }
.service-detail-card .service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-badge { position: absolute; top: 15px; left: 15px; background: var(--primary-color); color: var(--white); padding: 5px 15px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.service-body { padding: 25px; }
.service-body h4 { font-size: 20px; margin-bottom: 10px; }
.service-body p { color: var(--text-light); margin-bottom: 15px; }
.service-features { list-style: none; padding: 0; margin: 0; }
.service-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.service-features li i { color: var(--secondary-color); }

/* Process Timeline */
.process-timeline { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.process-step { flex: 0 0 calc(16.666% - 20px); text-align: center; position: relative; }
.step-number { font-size: 48px; font-weight: 800; color: rgba(247, 148, 29, 0.2); line-height: 1; }
.step-icon { width: 80px; height: 80px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: -20px auto 20px; font-size: 28px; color: var(--white); position: relative; z-index: 2; }
.step-content h4 { font-size: 16px; margin-bottom: 8px; }
.step-content p { color: var(--text-light); font-size: 13px; margin: 0; }

/* Plant Size Table */
.plant-size-table { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); }
.plant-size-table thead { background: var(--primary-color); color: var(--white); }
.plant-size-table th, .plant-size-table td { padding: 15px 20px; text-align: center; vertical-align: middle; }
.plant-size-table tbody tr:hover { background: rgba(247, 148, 29, 0.05); }

/* Support Cards */
.support-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); height: 100%; transition: var(--transition); }
.support-card:hover { transform: translateY(-5px); }
.support-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; color: var(--white); }
.support-card h4 { font-size: 18px; margin-bottom: 10px; }
.support-card p { color: var(--text-light); margin: 0; font-size: 14px; }
.monitoring-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.monitoring-card h4 { color: var(--primary-color); }

/* Product Categories */
.product-category { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); margin-bottom: 30px; }
.category-image img { border-radius: var(--border-radius); width: 100%; height: 300px; object-fit: cover; }
.category-content h3 { font-size: 24px; margin-bottom: 15px; color: var(--dark-color); }
.category-content h3 i { color: var(--primary-color); }
.spec-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.spec-item i { color: var(--secondary-color); }

/* Component Cards */
.component-card { background: var(--white); padding: 25px 15px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.component-card:hover { transform: translateY(-5px); background: var(--primary-color); color: var(--white); }
.component-card i { font-size: 32px; color: var(--primary-color); margin-bottom: 10px; display: block; }
.component-card:hover i { color: var(--white); }
.component-card h5 { font-size: 14px; margin: 0; }
.component-card:hover h5 { color: var(--white); }

/* Quality Cards */
.quality-card { background: var(--white); padding: 30px 25px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); height: 100%; transition: var(--transition); }
.quality-card:hover { transform: translateY(-5px); }
.quality-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; color: var(--white); }
.quality-card h4 { font-size: 18px; margin-bottom: 10px; }
.quality-card p { color: var(--text-light); margin: 0; font-size: 14px; }

/* Brand Cards */
.brand-card { background: var(--white); padding: 20px; border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; min-height: 100px; box-shadow: var(--shadow); transition: var(--transition); }
.brand-card:hover { transform: scale(1.05); }
.brand-card img { max-height: 40px; max-width: 100%; }
.additional-brands { padding: 20px; background: var(--light-bg); border-radius: var(--border-radius); }

/* Filter Buttons */
.filter-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn { background: var(--white); border: 2px solid var(--gray-bg); padding: 10px 25px; border-radius: 50px; font-weight: 500; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); border-color: var(--primary-color); color: var(--white); }

/* Project Gallery - Redesigned */
.project-gallery-card { position: relative; overflow: hidden; border-radius: var(--border-radius); }
.project-gallery-card img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.project-gallery-card:hover img { transform: scale(1.1); }
.project-gallery-card .project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); transform: translateY(100%); transition: var(--transition); }
.project-gallery-card:hover .project-info { transform: translateY(0); }

/* Area Cards */
.area-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); height: 100%; }
.area-icon { width: 60px; height: 60px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); margin-bottom: 15px; }
.area-card h4 { margin-bottom: 15px; }
.branch-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.branch-tag { background: var(--light-bg); padding: 8px 15px; border-radius: 50px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.branch-tag i { color: var(--primary-color); }

/* Contact Info Cards */
.contact-info-card { background: var(--white); padding: 35px 25px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--shadow); height: 100%; transition: var(--transition); }
.contact-info-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.info-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--white); }
.contact-info-card h4 { font-size: 20px; margin-bottom: 10px; }
.contact-info-card p { color: var(--text-light); margin: 0; }
.contact-info-card a { color: var(--primary-color); font-weight: 600; }

/* Contact Form */
.contact-form-wrapper { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { font-weight: 500; margin-bottom: 8px; display: block; }
.contact-form .form-control { padding: 12px 15px; border: 2px solid var(--gray-bg); border-radius: 8px; transition: var(--transition); }
.contact-form .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1); }

/* Map */
.map-wrapper { background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--shadow); height: 100%; }
.map-container { margin-bottom: 10px; }
.bank-details { background: var(--light-bg); padding: 20px; border-radius: var(--border-radius); }
.bank-details h5 { color: var(--primary-color); margin-bottom: 15px; }
.bank-info p { margin-bottom: 8px; font-size: 14px; }

/* FAQ Accordion */
.faq-accordion .accordion-item { border: none; margin-bottom: 15px; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-accordion .accordion-button { font-weight: 600; padding: 20px 25px; background: var(--white); }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--primary-color); color: var(--white); }
.faq-accordion .accordion-body { padding: 20px 25px; }

/* Footer */
.footer { background: var(--dark-color); color: var(--white); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { max-height: 75px; margin-bottom: 20px; }
.footer-widget h4 { font-size: 20px; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 15px; }
.footer-widget h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); }
.footer-widget p { color: rgba(255,255,255,0.7); }
.footer-social a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; align-items: center; justify-content: center; color: var(--white); margin-right: 10px; }
.footer-social a:hover { background: var(--primary-color); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 15px; color: rgba(255,255,255,0.7); }
.footer-contact li i { color: var(--primary-color); margin-top: 5px; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.6); font-size: 14px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-5px); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 100px; right: 30px; width: 60px; height: 60px; background: #25d366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); z-index: 999; animation: pulse 2s infinite; }
.whatsapp-float:hover { background: #128c7e; color: var(--white); transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Buttons */
.btn-primary { background: var(--primary-color); border-color: var(--primary-color); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-success { background: #25d366; border-color: #25d366; }
.btn-success:hover { background: #128c7e; border-color: #128c7e; }

/* Founder Section */
.founder-image { position: relative; }
.founder-image img { border-radius: var(--border-radius); box-shadow: var(--shadow); }
.founder-badge { position: absolute; top: 20px; right: 20px; width: 60px; height: 60px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); }
.founder-quote { font-size: 20px; font-style: italic; color: var(--text-color); padding: 20px; border-left: 4px solid var(--primary-color); background: var(--light-bg); margin: 20px 0; border-radius: 0 var(--border-radius) var(--border-radius) 0; }
.founder-signature h5 { margin: 0; color: var(--dark-color); }
.founder-signature span { color: var(--text-light); font-size: 14px; }

/* Info Box */
.info-box { display: flex; align-items: center; gap: 10px; padding: 10px 15px; background: var(--light-bg); border-radius: 8px; }
.info-box i { color: var(--secondary-color); }
.info-box span { font-weight: 500; font-size: 14px; }

/* ========================================
   PRODUCT PORTFOLIO CARDS WITH UNSPLASH
======================================== */
.portfolio-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-media img {
    transform: scale(1.1);
}

.portfolio-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.portfolio-body {
    padding: 28px;
}

.portfolio-body h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.portfolio-body p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.portfolio-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.portfolio-brands span {
    background: var(--light-bg);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.portfolio-brands span:hover {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-brands .more {
    color: var(--primary-color);
    background: rgba(247, 148, 29, 0.1);
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-features li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    padding: 8px 0;
    color: var(--text-color);
}

.portfolio-features li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* ========================================
   REDESIGNED SAFETY SECTION - NO CARDS
======================================== */
.safety-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.safety-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.safety-container {
    position: relative;
    z-index: 2;
}

.safety-header {
    text-align: center;
    margin-bottom: 60px;
}

.safety-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.safety-header .section-subtitle i {
    font-size: 16px;
}

.safety-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.safety-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    transform: translateY(-50%);
    z-index: 0;
}

.safety-item {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    z-index: 1;
}

.safety-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
}

.safety-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.safety-item:hover .safety-icon-wrap::before {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(247, 148, 29, 0.3);
}

.safety-icon-wrap i {
    position: relative;
    z-index: 2;
    font-size: 40px;
    color: var(--white);
    line-height: 100px;
}

.safety-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.safety-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.safety-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(247, 148, 29, 0.08);
    font-family: 'Montserrat', sans-serif;
}

/* Safety Features List */
.safety-features-list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.safety-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 18px 28px;
    border-radius: 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.safety-feature-tag:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(247, 148, 29, 0.15);
}

.safety-feature-tag i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.safety-feature-tag span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

/* Detailed Components */
.component-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 22px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.component-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.component-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.component-pill {
    display: inline-block;
    background: var(--light-bg);
    color: var(--dark-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.component-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 148, 29, 0.12);
    color: var(--primary-color);
    font-size: 20px;
}

.component-info-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.component-info-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 14px;
}

.component-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-info-list li {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.5;
}

.component-info-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .process-step { flex: 0 0 calc(33.333% - 20px); margin-bottom: 30px; }
    .safety-flow { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .top-bar { display: none; }
    .hero-slide { min-height: 70vh; }
    .hero-title { font-size: 2.2rem; }
    .features-section { margin: 0; border-radius: 0; }
    .experience-badge { right: 10px; bottom: 10px; padding: 15px 20px; }
    .experience-badge .number { font-size: 36px; }
    .floating-card { left: 10px; top: 10px; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; padding-left: 60px; padding-right: 0; margin-left: 0; }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 8px; right: auto; }
    .process-step { flex: 0 0 calc(50% - 20px); }
    .safety-flow { grid-template-columns: repeat(2, 1fr); }
    .safety-flow::before { display: none; }
    .project-card-new { height: 340px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .cta-title { font-size: 2rem; }
    .page-header-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .about-image-wrapper { margin-bottom: 40px; }
    .process-step { flex: 0 0 100%; }
    .stat-card { margin-bottom: 15px; }
    .stat-number { font-size: 36px; }
    .filter-btns { gap: 5px; }
    .filter-btn { padding: 8px 15px; font-size: 13px; }
    .safety-flow { grid-template-columns: 1fr; }
    .safety-item { padding: 30px 20px; }
    .safety-icon-wrap { width: 80px; height: 80px; }
    .safety-icon-wrap i { font-size: 32px; line-height: 80px; }
    .safety-feature-tag { padding: 14px 20px; }
    .project-card-new { height: 320px; }
    .project-card-new h4 { font-size: 18px; }
}

@media (max-width: 575px) {
    .section-padding { padding: 50px 0; }
    .hero-slide { min-height: 60vh; }
    .hero-subtitle { font-size: 12px; padding: 6px 15px; }
    .contact-form-wrapper, .map-wrapper { padding: 25px; }
    .product-category { padding: 25px; }
    .mission-card, .vision-card { padding: 25px; }
}
