/* ============================================
   SR ENTERPRISES - CONSTRUCTION & INTERIOR DESIGN
   Theme: Dark + White + Orange
   Font: Poppins
   ============================================ */

/* Variables */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary: #1a1a2e;
    --dark: #16213e;
    --darker: #0f0f23;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f1c40f;
    --font: 'Poppins', sans-serif;
    --shadow: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: var(--lighter);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; line-height: 1.3; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 42px; color: var(--secondary); margin-bottom: 15px; position: relative; display: inline-block; }
.section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--primary); border-radius: 2px; }
.section-title p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 20px auto 0; }
.btn-primary-custom { background: var(--primary); color: #fff; padding: 12px 35px; border-radius: 50px; font-weight: 600; border: 2px solid var(--primary); display: inline-block; transition: var(--transition); }
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(230,126,34,0.4); }
.btn-outline-custom { background: transparent; color: #fff; padding: 12px 35px; border-radius: 50px; font-weight: 600; border: 2px solid #fff; display: inline-block; transition: var(--transition); }
.btn-outline-custom:hover { background: #fff; color: var(--secondary); transform: translateY(-2px); }
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }

/* Loading Screen */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; }
.loader { text-align: center; }
.loader-icon { font-size: 60px; color: var(--primary); animation: bounce 1s infinite; }
.loader-text { color: #fff; font-size: 28px; font-weight: 700; margin-top: 20px; letter-spacing: 2px; }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.2); margin: 20px auto 0; border-radius: 2px; overflow: hidden; }
.loader-progress { width: 0; height: 100%; background: var(--primary); animation: loading 2s ease-in-out forwards; }
@keyframes loading { 0% { width: 0; } 100% { width: 100%; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Top Header */
.top-header { background: var(--secondary); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-info { display: flex; gap: 25px; flex-wrap: wrap; }
.top-link { color: rgba(255,255,255,0.8); font-size: 13px; transition: var(--transition); }
.top-link:hover { color: var(--primary); }
.top-link i { margin-right: 5px; color: var(--primary); }
.top-social { display: flex; gap: 12px; justify-content: flex-end; }
.top-social a { color: rgba(255,255,255,0.8); font-size: 14px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); }
.top-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Navigation */
.sticky-nav { padding: 15px 0; transition: var(--transition); box-shadow: none; }
.sticky-nav.scrolled { padding: 8px 0; box-shadow: var(--shadow); }
.navbar-brand .brand-text { font-size: 28px; font-weight: 800; color: var(--secondary); }
.navbar-brand .brand-text .text-primary { color: var(--primary); }
.navbar-nav .nav-link { color: var(--secondary) !important; font-weight: 500; font-size: 15px; padding: 8px 15px !important; position: relative; transition: var(--transition); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 15px; right: 15px; height: 3px; background: var(--primary); border-radius: 2px; }
.dropdown-menu { border: none; box-shadow: var(--shadow); border-radius: var(--radius); padding: 10px 0; }
.dropdown-item { padding: 8px 20px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.dropdown-item:hover { background: var(--primary); color: #fff; }

/* Hero Slider */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .carousel-item { height: 85vh; min-height: 500px; }
.hero-slider .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider .carousel-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.6) 100%); z-index: 1; }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; width: 90%; max-width: 800px; }
.hero-content h1 { font-size: 56px; font-weight: 800; color: #fff; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 35px; line-height: 1.6; }
.hero-content .btn-group-hero { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; top: 50%; transform: translateY(-50%); opacity: 0.8; margin: 0 20px; }
.hero-slider .carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; margin: 0 5px; }
.hero-slider .carousel-indicators .active { background: var(--primary); width: 35px; border-radius: 6px; }

/* Small Banners */
.small-banners { padding: 0; margin-top: -80px; position: relative; z-index: 10; }
.small-banners .container { max-width: 1200px; }
.banner-box { background: #fff; border-radius: var(--radius); padding: 35px 25px; text-align: center; box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; overflow: hidden; height: 100%; }
.banner-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); }
.banner-box:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.banner-box .banner-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.banner-box .banner-icon i { font-size: 32px; color: #fff; }
.banner-box h4 { font-size: 20px; color: var(--secondary); margin-bottom: 12px; }
.banner-box p { color: var(--gray); font-size: 14px; margin-bottom: 0; }

/* About Section */
.about-section { background: #fff; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.about-image .experience-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: #fff; padding: 20px 30px; border-radius: var(--radius); text-align: center; }
.about-image .experience-badge h3 { font-size: 42px; margin-bottom: 0; }
.about-image .experience-badge p { margin-bottom: 0; font-size: 14px; }
.about-content h2 { font-size: 36px; color: var(--secondary); margin-bottom: 20px; }
.about-content p { color: var(--gray); margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }
.about-feature-item { display: flex; align-items: center; gap: 10px; }
.about-feature-item i { color: var(--primary); font-size: 20px; }
.about-feature-item span { font-weight: 500; color: var(--secondary); }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; }
.mv-card { padding: 20px; border-radius: var(--radius); border: 2px solid var(--gray-light); transition: var(--transition); }
.mv-card:hover { border-color: var(--primary); }
.mv-card h5 { color: var(--primary); margin-bottom: 10px; }
.mv-card p { font-size: 14px; color: var(--gray); margin-bottom: 0; }

/* Services Section */
.services-section { background: var(--light); }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: var(--transition); height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .service-img { height: 200px; overflow: hidden; position: relative; }
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-card .service-img::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(transparent, rgba(0,0,0,0.3)); }
.service-card .service-body { padding: 25px; }
.service-card .service-body h5 { font-size: 18px; color: var(--secondary); margin-bottom: 12px; }
.service-card .service-body p { color: var(--gray); font-size: 14px; margin-bottom: 15px; }
.service-card .service-body .service-link { color: var(--primary); font-weight: 600; font-size: 14px; }
.service-card .service-body .service-link:hover { color: var(--primary-dark); }

/* Why Choose Us */
.why-choose { background: var(--secondary); color: #fff; }
.why-choose .section-title h2 { color: #fff; }
.why-choose .section-title p { color: rgba(255,255,255,0.7); }
.choose-card { text-align: center; padding: 30px 20px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); height: 100%; }
.choose-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px); }
.choose-card .choose-icon { width: 70px; height: 70px; background: rgba(230,126,34,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: var(--transition); }
.choose-card:hover .choose-icon { background: rgba(255,255,255,0.2); }
.choose-card .choose-icon i { font-size: 28px; color: var(--primary); transition: var(--transition); }
.choose-card:hover .choose-icon i { color: #fff; }
.choose-card h5 { font-size: 18px; margin-bottom: 10px; }
.choose-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 0; }
.choose-card:hover p { color: rgba(255,255,255,0.9); }

/* Projects Section */
.projects-section { background: #fff; }
.filter-buttons { text-align: center; margin-bottom: 40px; }
.filter-btn { background: transparent; border: 2px solid var(--gray-light); color: var(--gray); padding: 8px 25px; border-radius: 50px; font-weight: 500; cursor: pointer; transition: var(--transition); margin: 5px; font-family: var(--font); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; cursor: pointer; }
.project-card img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.project-card:hover img { transform: scale(1.1); }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent 40%, rgba(26,26,46,0.9)); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 25px; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h5 { color: #fff; margin-bottom: 5px; }
.project-overlay span { color: var(--primary); font-size: 14px; }

/* Gallery */
.gallery-section { background: var(--light); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; cursor: pointer; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(230,126,34,0.8); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 36px; color: #fff; }

/* Statistics */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 0; position: relative; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat; opacity: 0.3; }
.stat-item { text-align: center; color: #fff; position: relative; z-index: 1; }
.stat-item .stat-icon { font-size: 40px; margin-bottom: 15px; opacity: 0.8; }
.stat-item .stat-number { font-size: 48px; font-weight: 800; margin-bottom: 5px; }
.stat-item .stat-label { font-size: 16px; opacity: 0.9; }

/* Testimonials */
.testimonials-section { background: #fff; }
.testimonial-card { background: var(--light); border-radius: var(--radius); padding: 30px; position: relative; margin: 15px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card .quote-icon { position: absolute; top: 20px; right: 25px; font-size: 40px; color: var(--primary); opacity: 0.2; }
.testimonial-card .stars { color: var(--primary); margin-bottom: 15px; }
.testimonial-card p { color: var(--gray); font-style: italic; margin-bottom: 20px; font-size: 15px; }
.testimonial-card .client-info { display: flex; align-items: center; gap: 15px; }
.testimonial-card .client-info img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.testimonial-card .client-info h6 { margin-bottom: 2px; color: var(--secondary); }
.testimonial-card .client-info span { font-size: 13px; color: var(--gray); }

/* Clients */
.clients-section { background: var(--light); padding: 60px 0; }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 20px; background: #fff; border-radius: var(--radius); height: 120px; transition: var(--transition); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.client-logo:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.client-logo h5 { color: var(--secondary); font-size: 16px; text-align: center; margin: 0; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--secondary), var(--dark)); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: var(--primary); border-radius: 50%; opacity: 0.1; }
.cta-section h2 { color: #fff; font-size: 38px; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Contact Section */
.contact-section { background: #fff; }
.contact-info-card { background: var(--light); border-radius: var(--radius); padding: 30px; text-align: center; height: 100%; transition: var(--transition); border-bottom: 3px solid transparent; }
.contact-info-card:hover { border-bottom-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-info-card i { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.contact-info-card h5 { color: var(--secondary); margin-bottom: 10px; }
.contact-info-card p { color: var(--gray); font-size: 14px; margin-bottom: 0; }
.contact-form { background: var(--light); border-radius: var(--radius); padding: 40px; }
.contact-form .form-control { border: 2px solid var(--gray-light); border-radius: 8px; padding: 12px 15px; font-family: var(--font); font-size: 14px; transition: var(--transition); }
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,126,34,0.1); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* Page Banner */
.page-banner { background: linear-gradient(135deg, var(--secondary), var(--dark)); padding: 120px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover; opacity: 0.15; }
.page-banner h1 { color: #fff; font-size: 42px; margin-bottom: 15px; position: relative; z-index: 1; }
.page-banner .breadcrumb { justify-content: center; position: relative; z-index: 1; }
.page-banner .breadcrumb-item a { color: var(--primary); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Blog Cards */
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img { height: 220px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.1); }
.blog-card .blog-body { padding: 25px; }
.blog-card .blog-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 13px; color: var(--gray); }
.blog-card .blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-card h5 { color: var(--secondary); margin-bottom: 12px; }
.blog-card p { color: var(--gray); font-size: 14px; }

/* Footer */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding-top: 80px; }
.footer-title { color: #fff; font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-title span { color: var(--primary); }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a i { font-size: 10px; margin-right: 8px; color: var(--primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; }
.footer-contact li i { color: var(--primary); margin-top: 4px; min-width: 20px; }
.footer-contact li a { color: rgba(255,255,255,0.7); }
.footer-contact li a:hover { color: var(--primary); }
.footer-gst { background: rgba(230,126,34,0.1); border: 1px solid rgba(230,126,34,0.3); padding: 8px 15px; border-radius: 8px; font-size: 13px; color: var(--primary); display: inline-block; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 50px; }
.footer-bottom p { margin-bottom: 0; font-size: 14px; color: rgba(255,255,255,0.6); }

/* Floating Buttons */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: var(--transition); animation: pulse 2s infinite; }
.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--primary); }
.float-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); } 50% { box-shadow: 0 4px 25px rgba(0,0,0,0.5); } }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 45px; height: 45px; background: var(--secondary); color: #fff; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Dark Mode */
body.dark-mode { background: var(--darker); color: #e0e0e0; }
body.dark-mode .bg-white, body.dark-mode .sticky-nav { background: var(--secondary) !important; }
body.dark-mode .navbar-nav .nav-link { color: #e0e0e0 !important; }
body.dark-mode .service-card, body.dark-mode .blog-card, body.dark-mode .testimonial-card { background: var(--dark); }
body.dark-mode .service-card .service-body h5, body.dark-mode .blog-card h5, body.dark-mode .section-title h2 { color: #fff; }
body.dark-mode .services-section, body.dark-mode .gallery-section, body.dark-mode .clients-section { background: var(--darker); }
body.dark-mode .contact-form, body.dark-mode .contact-info-card { background: var(--dark); }
body.dark-mode .footer-bottom { border-top-color: rgba(255,255,255,0.05); }

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .hero-slider .carousel-item { height: 60vh; }
    .section-title h2 { font-size: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .mission-vision { grid-template-columns: 1fr; }
    .top-info { gap: 15px; }
    .top-header .row > div:last-child { display: none; }
}
@media (max-width: 767px) {
    .hero-content h1 { font-size: 28px; }
    .hero-slider .carousel-item { height: 50vh; min-height: 350px; }
    .small-banners { margin-top: -40px; }
    .banner-box { padding: 25px 15px; margin-bottom: 15px; }
    .section-padding { padding: 50px 0; }
    .section-title h2 { font-size: 28px; }
    .stat-item .stat-number { font-size: 36px; }
    .page-banner h1 { font-size: 32px; }
    .floating-buttons { bottom: 20px; right: 15px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }
    .back-to-top { left: 15px; bottom: 20px; width: 40px; height: 40px; }
    .cta-section h2 { font-size: 28px; }
}
@media (max-width: 575px) {
    .hero-content h1 { font-size: 24px; }
    .hero-content p { font-size: 14px; }
    .hero-content .btn-primary-custom, .hero-content .btn-outline-custom { padding: 10px 25px; font-size: 14px; }
}
