/* Modern Yellow Theme - Completely New Design */
:root {
    --primary: #fbc531;     /* Striking Yellow */
    --primary-dark: #e1b12c;
    --dark: #2f3640;
    --darker: #1e272e;
    --light: #f5f6fa;
    --white: #ffffff;
    --text: #353b48;
    --text-muted: #718093;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--light); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar { background: var(--darker); color: var(--text-muted); padding: 12px 0; font-size: 14px; letter-spacing: 0.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--primary); font-weight: 700; font-size: 16px; }

/* Header */
header { background: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 25px 0; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 32px; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; text-transform: uppercase; font-size: 15px; color: var(--dark); position: relative; }
.nav-links a::after { content: ''; width: 0; height: 3px; background: var(--primary); position: absolute; left: 0; bottom: -5px; transition: 0.3s; }
.nav-links a:hover::after { width: 100%; }

.btn-call { background: var(--primary); color: var(--dark); padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 16px; display: inline-block; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-call:hover { background: var(--dark); color: var(--primary); box-shadow: 0 5px 15px rgba(47, 54, 64, 0.2); }

/* Slider Section */
.slider-container { position: relative; width: 100%; height: 650px; overflow: hidden; background: var(--darker); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg { position: absolute; top:0; left:0; width:100%; height:100%; z-index: -1; }
.slide-content { position: relative; z-index: 2; color: var(--white); max-width: 900px; padding: 0 20px; transform: translateY(30px); transition: 0.8s; }
.slide.active .slide-content { transform: translateY(0); }
.slide h2 { font-size: 56px; color: var(--primary); margin-bottom: 25px; text-transform: uppercase; font-weight: 800; line-height: 1.2; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.slide p { font-size: 20px; margin-bottom: 40px; font-weight: 300; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

.slider-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 15px; }
.dot { width: 15px; height: 15px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active, .dot:hover { background: var(--primary); transform: scale(1.2); }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,0.4); color: var(--white); border: none; font-size: 24px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); color: var(--dark); }
.prev-slide { left: 30px; }
.next-slide { right: 30px; }

/* Sections Common */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 42px; color: var(--darker); display: inline-block; position: relative; font-weight: 800; }
.section-title h2::after { content: ''; width: 80px; height: 5px; background: var(--primary); position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); border-radius: 5px; }

/* About Text */
.about-text { font-size: 20px; color: var(--text-muted); text-align: center; max-width: 900px; margin: 0 auto; line-height: 2; font-weight: 300; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--white); padding: 50px 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--primary); transform: scaleX(0); transition: 0.4s; transform-origin: left; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 24px; margin-bottom: 20px; color: var(--dark); font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 16px; margin-bottom: 25px; }
.service-card a { display: inline-block; color: var(--dark); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; padding: 10px 20px; border-radius: 30px; border: 2px solid var(--primary); }
.service-card a:hover { background: var(--primary); color: var(--dark); }

/* Brands Grid */
.brands-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.brand-item { background: var(--white); padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: 15px; border: 2px solid #eaeaea; transition: 0.3s; color: var(--dark); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.brand-item:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(251, 197, 49, 0.3); }

/* Footer */
footer { background: var(--darker); color: var(--white); padding: 80px 0 20px; }
footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); }
footer h4 { color: var(--primary); font-size: 22px; margin-bottom: 25px; font-weight: 700; }
footer ul li { margin-bottom: 15px; font-size: 16px; color: var(--text-muted); }
footer ul li a { color: var(--text-muted); }
footer ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { text-align: center; font-size: 15px; color: var(--text-muted); font-weight: 300; letter-spacing: 0.5px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .slide h2 { font-size: 36px; }
    .slide p { font-size: 16px; }
    .slider-container { height: 500px; }
    .topbar { text-align: center; }
    .topbar .container { flex-direction: column; gap: 5px; }
}