:root {
    --primary: #1a56db;
    --primary-dark: #1640a0;
    --secondary: #0d9488;
    --accent: #f59e0b;
    --dark: #0f172a;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-600: #64748b;
    --gray-800: #334155;
    --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --gradient-2: linear-gradient(135deg, #1a56db 0%, #0d9488 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: var(--gray-800); overflow-x: hidden; line-height: 1.7; }

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; transition: var(--transition); color: var(--primary); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.text-gradient { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section { padding: 80px 0; position: relative; }
.section-badge { display: inline-block; background: rgba(26,86,219,.1); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 15px; }
.section-title { font-size: 2.2rem; margin-bottom: 15px; }
.section-desc { font-size: 1.1rem; color: var(--gray-600); line-height: 1.8; }

.btn { font-weight: 600; padding: 12px 28px; border-radius: 8px; transition: var(--transition); }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(26,86,219,.3); }
.btn-success { background: #25d366; border-color: #25d366; }
.btn-success:hover { background: #1da851; transform: translateY(-2px); }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* Navbar */
.navbar { padding: 12px 0; background: rgba(255,255,255,.95) !important; backdrop-filter: blur(10px); }
.navbar-brand { font-weight: 800; font-size: 1.5rem; }
.brand-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; }
.nav-link { font-weight: 500; color: var(--gray-800) !important; padding: 8px 16px !important; border-radius: 8px; margin: 0 2px; }
.nav-link:hover, .nav-link.active { background: rgba(26,86,219,.08); color: var(--primary) !important; }
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 8px; }
.dropdown-item { border-radius: 8px; padding: 8px 16px; }
.dropdown-item:hover { background: rgba(26,86,219,.08); }

/* Hero Section */
.hero-section { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.95) 0%, rgba(30,58,95,.85) 50%, rgba(14,165,233,.4) 100%); z-index: 1; }
.hero-bg-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; }
.hero-text { padding-top: 60px; }
.hero-badge { display: inline-block; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3); color: #f59e0b; padding: 8px 20px; border-radius: 50px; font-size: .9rem; font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(10px); }
.hero-title { font-size: 3.2rem; color: #fff; margin-bottom: 15px; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,.8); margin-bottom: 25px; max-width: 600px; }
.hero-stats { display: flex; gap: 25px; margin-bottom: 30px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-label { display: block; font-size: .85rem; color: rgba(255,255,255,.7); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero { border-radius: 50px; }
.btn-wa { background: #25d366; border-color: #25d366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; }
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; text-align: center; }
.hero-machine { filter: drop-shadow(0 20px 60px rgba(0,0,0,.3)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
.floating-badge { position: absolute; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); padding: 10px 18px; border-radius: 12px; font-size: .85rem; font-weight: 600; color: var(--dark); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px; }
.floating-badge i { color: var(--primary); }
.badge-1 { top: 10%; right: 0; animation: float 5s ease-in-out infinite 1s; }
.badge-2 { bottom: 25%; left: -10px; animation: float 5s ease-in-out infinite 2s; }
.badge-3 { bottom: 5%; right: 10%; animation: float 5s ease-in-out infinite .5s; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Trusted Section */
.trusted-section { background: #fff; border-bottom: 1px solid var(--gray-200); }
.trusted-logos .badge { font-size: .9rem; font-weight: 500; border: 1px solid var(--gray-200); border-radius: 50px; }

/* About Section */
.about-image-wrapper { position: relative; }
.about-experience-badge { position: absolute; bottom: 30px; left: 30px; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.exp-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.exp-text { font-size: .85rem; color: var(--gray-600); }
.about-features { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.about-feature { display: flex; gap: 15px; align-items: flex-start; padding: 12px 15px; background: var(--gray-100); border-radius: var(--radius); }
.about-feature i { font-size: 1.5rem; color: var(--primary); min-width: 40px; padding-top: 4px; }
.about-feature h6 { margin-bottom: 2px; font-size: .95rem; }
.about-feature p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* Why Cards */
.why-card { background: #fff; padding: 30px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-icon { width: 70px; height: 70px; background: rgba(26,86,219,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.8rem; color: var(--primary); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* Product Cards */
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; z-index: 2; }
.product-img { width: 100%; height: 200px; object-fit: contain; padding: 15px; background: var(--gray-100); }
.product-info { padding: 18px; }
.product-info h5 { font-size: 1rem; margin-bottom: 6px; }
.product-info p { font-size: .85rem; color: var(--gray-600); margin-bottom: 10px; }
.product-meta { display: flex; gap: 15px; font-size: .8rem; color: var(--gray-600); margin-bottom: 12px; }
.product-meta i { color: var(--primary); }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; }
.product-actions .btn-sm { padding: 8px 12px; font-size: .8rem; }

/* Capacity Cards */
.capacity-card { background: #fff; border-radius: var(--radius); padding: 30px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.capacity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.capacity-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.capacity-label { font-size: .95rem; color: var(--gray-600); }
.capacity-type { display: inline-block; background: rgba(26,86,219,.1); color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600; margin-top: 8px; }

/* Process Cards */
.process-card { text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; position: relative; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.process-step { width: 40px; height: 40px; background: var(--gradient-2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 12px; }
.process-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; }
.process-card h5 { font-size: 1rem; margin-bottom: 8px; }
.process-card p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* Feature Cards */
.feature-card { text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.feature-card h5 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* Specs Table */
.specs-table { border-radius: var(--radius); overflow: hidden; }
.specs-table th { background: var(--dark); color: #fff; font-weight: 600; }
.specs-table td { padding: 12px 16px; }

/* Industry Cards */
.industry-card { text-align: center; padding: 25px 15px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--primary); color: #fff; }
.industry-card i { font-size: 2rem; margin-bottom: 10px; color: var(--primary); }
.industry-card:hover i { color: #fff; }
.industry-card h6 { font-size: .9rem; margin: 0; }

/* Testimonials */
.testimonial-card { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); height: 100%; }
.testimonial-stars { margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--gray-600); font-size: .95rem; line-height: 1.7; margin-bottom: 15px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h6 { margin-bottom: 2px; font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: var(--gray-600); }

/* Gallery */
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; }
.gallery-overlay h6 { margin: 0; font-size: .9rem; }

/* Blog Cards */
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-date { font-size: .8rem; color: var(--gray-600); margin-bottom: 8px; }
.blog-card-body h5 { font-size: 1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: .85rem; color: var(--gray-600); margin-bottom: 10px; }

/* FAQ */
.accordion-item { border: 1px solid var(--gray-200); margin-bottom: 8px; border-radius: var(--radius) !important; overflow: hidden; }
.accordion-button { font-weight: 600; color: var(--dark); padding: 16px 20px; }
.accordion-button:not(.collapsed) { background: rgba(26,86,219,.05); color: var(--primary); }
.accordion-body { padding: 16px 20px; color: var(--gray-600); }

/* State Links */
.state-link { display: block; padding: 10px 16px; background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; color: var(--gray-800); font-size: .9rem; transition: var(--transition); font-weight: 500; }
.state-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* CTA Section */
.cta-section { background: var(--gradient-2); padding: 60px 0; }
.cta-box { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); padding: 50px; border-radius: var(--radius-lg); color: #fff; }
.cta-box h2 { font-size: 2.2rem; margin-bottom: 12px; }
.cta-box p { font-size: 1.1rem; opacity: .9; margin-bottom: 25px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { border-radius: 50px; }

/* Contact */
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-item i { font-size: 1.5rem; color: var(--primary); min-width: 40px; }
.contact-item h6 { margin-bottom: 2px; }
.contact-item p { margin: 0; color: var(--gray-600); }
.contact-item a { color: var(--gray-600); }
.contact-item a:hover { color: var(--primary); }
.enquiry-form-wrapper { background: #fff; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.enquiry-form-wrapper h4 { margin-bottom: 20px; }
.form-control, .form-select { padding: 12px 16px; border-radius: 8px; border: 1px solid var(--gray-200); }
.form-control:focus, .form-select:focus { box-shadow: none; border-color: var(--primary); }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.footer-about { font-size: .9rem; line-height: 1.7; margin-bottom: 15px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border-radius: 50%; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-main h5 { color: #fff; font-size: 1.1rem; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; align-items: flex-start; }
.footer-contact li i { margin-top: 4px; color: var(--primary); }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* Sticky Buttons */
.sticky-whatsapp, .sticky-call { position: fixed; z-index: 999; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: var(--shadow-lg); transition: var(--transition); cursor: pointer; }
.sticky-whatsapp { bottom: 100px; right: 20px; background: #25d366; }
.sticky-call { bottom: 35px; right: 20px; background: var(--primary); }
.sticky-whatsapp:hover, .sticky-call:hover { transform: scale(1.1); color: #fff; }
.sticky-whatsapp a, .sticky-call a { color: #fff; }

/* Scroll Top */
.scroll-top-btn { position: fixed; bottom: 35px; left: 20px; z-index: 999; width: 45px; height: 45px; border-radius: 50%; background: var(--dark); color: #fff; border: none; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-lg); transition: var(--transition); }
.scroll-top-btn.show { display: flex; }
.scroll-top-btn:hover { background: var(--primary); transform: translateY(-3px); }

/* Page Header */
.page-header { background: var(--gradient-1); padding: 100px 0 60px; color: #fff; text-align: center; position: relative; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { font-size: 1.1rem; opacity: .8; max-width: 600px; margin: 0 auto; }
.page-header .breadcrumb { background: transparent; justify-content: center; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-header .breadcrumb-item.active { color: #fff; }
.page-header .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* Product Detail Page */
.product-detail-section { padding: 60px 0; }
.product-gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--gray-100); padding: 30px; text-align: center; }
.product-gallery-main img { max-height: 400px; object-fit: contain; }
.product-thumbs { display: flex; gap: 10px; margin-top: 15px; }
.product-thumbs img { width: 80px; height: 80px; object-fit: contain; border-radius: 8px; border: 2px solid var(--gray-200); cursor: pointer; padding: 5px; background: #fff; }
.product-thumbs img.active { border-color: var(--primary); }
.product-detail h1 { font-size: 1.8rem; margin-bottom: 10px; }
.product-price { font-size: 1.3rem; color: var(--primary); font-weight: 700; margin-bottom: 15px; }
.product-detail .nav-tabs .nav-link { color: var(--gray-800); font-weight: 600; border: none; padding: 12px 20px; }
.product-detail .nav-tabs .nav-link.active { color: var(--primary); border-bottom: 3px solid var(--primary); background: transparent; }
.tab-content { padding: 25px 0; }

/* Location Page */
.city-list { columns: 4; column-gap: 20px; }
.city-list a { display: block; padding: 8px 12px; background: var(--gray-100); border-radius: 8px; margin-bottom: 10px; font-size: .9rem; color: var(--gray-800); transition: var(--transition); break-inside: avoid; }
.city-list a:hover { background: var(--primary); color: #fff; }

/* Blog Detail */
.blog-content { font-size: 1.05rem; line-height: 1.9; color: var(--gray-800); }
.blog-content h2 { font-size: 1.6rem; margin: 30px 0 15px; }
.blog-content h3 { font-size: 1.3rem; margin: 25px 0 12px; }
.blog-content p { margin-bottom: 15px; }
.blog-content ul, .blog-content ol { margin-bottom: 15px; padding-left: 20px; }
.blog-content li { margin-bottom: 8px; }
.blog-content img { border-radius: var(--radius); margin: 20px 0; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.blog-content td, .blog-content th { border: 1px solid var(--gray-200); padding: 10px 14px; }
.blog-content th { background: var(--dark); color: #fff; }

/* Pagination */
.pagination .page-link { border: none; padding: 10px 18px; color: var(--gray-800); border-radius: 8px; margin: 0 3px; }
.pagination .page-item.active .page-link { background: var(--primary); }
.pagination .page-link:hover { background: rgba(26,86,219,.1); }

/* Responsive */
@media (max-width: 1199px) {
    .hero-title { font-size: 2.8rem; }
    .city-list { columns: 3; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 15px; }
    .stat-number { font-size: 1.4rem; }
    .section-title { font-size: 1.8rem; }
    .section { padding: 60px 0; }
    .city-list { columns: 2; }
    .hero-section { min-height: auto; padding: 120px 0 60px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta .btn { font-size: .85rem; padding: 10px 20px; }
    .section-title { font-size: 1.5rem; }
    .section { padding: 40px 0; }
    .floating-badge { display: none; }
    .city-list { columns: 1; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 80px 0 40px; }
    .cta-box { padding: 30px 20px; }
    .cta-box h2 { font-size: 1.5rem; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 1.5rem; }
    .hero-stats { gap: 10px; justify-content: center; }
    .stat-number { font-size: 1.2rem; }
    .product-actions { flex-direction: column; }
}
