:root { --primary: #0056d2; --secondary: #ff9900; --light: #f8f9fa; --dark: #1b1b1b; --radius: 10px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Poppins", sans-serif; color: var(--dark); background: #fff; line-height: 1.6; scroll-behavior: smooth; } a { color: inherit; text-decoration: none; } /* HEADER */ header { position: sticky; top: 0; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); z-index: 100; } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 6%; } .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); } .logo span { color: var(--secondary); } .nav-desktop { display: flex; align-items: center; gap: 2rem; } .nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-links a { font-weight: 500; color: var(--dark); transition: color 0.3s; } .nav-links a:hover { color: var(--primary); } /* Button aligned properly in header */ .btn { background: var(--primary); color: #fff; padding: 0.6rem 1.3rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 3px 10px rgba(0, 86, 210, 0.3); display: flex; align-items: center; } .btn:hover { background: #0040a3; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 86, 210, 0.45); } .btn.secondary { background: #fff; border: 2px solid var(--primary); color: var(--primary); } .btn.secondary:hover { background: var(--primary); color: #fff; } .menu-toggle { display: none; font-size: 2rem; cursor: pointer; color: var(--primary); } /* SIDE MENU */ .side-menu { position: fixed; top: 0; right: -100%; width: 260px; height: 100vh; background: #fff; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); transition: right 0.4s ease; z-index: 200; display: flex; flex-direction: column; justify-content: flex-start; padding: 1.5rem 1.2rem; } .side-menu.active { right: 0; } .side-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; } .side-header .logo { font-size: 1.4rem; font-weight: 700; color: var(--primary); } .side-header .logo span { color: var(--secondary); } .close-btn { font-size: 1.8rem; color: var(--primary); cursor: pointer; transition: 0.3s; } .close-btn:hover { color: var(--secondary); } .side-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; padding-left: 0;  /* FIXED (was 100%) */ } .side-menu ul a { color: var(--dark); font-weight: 500; font-size: 1rem; transition: 0.3s; } .side-menu ul a:hover { color: var(--primary); padding-left: 6px; } /* Mobile CTA Button */ .side-btn { text-align: center; margin-top: 2rem; align-self: center; width: 80%; background: var(--primary); color: #fff; font-size: 1rem; border-radius: 50px; padding: 0.8rem 1.3rem; box-shadow: 0 3px 10px rgba(0, 86, 210, 0.25); } .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.4); opacity: 0; pointer-events: none; transition: 0.3s ease; z-index: 150; } .overlay.active { opacity: 1; pointer-events: all; } /* HERO */ .hero { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 5rem 6%; background: linear-gradient(135deg, var(--primary), #00a8ff); color: #fff; } .hero-content { flex: 1; min-width: 300px; max-width: 500px; } .hero-content h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; } .hero-content p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 2rem; } .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; } .hero-image { flex: 1; text-align: center; margin-top: 2rem; } .hero-image img { width: 380px; max-width: 100%; border-radius: 10px; } /* SERVICES */ .services { padding: 4rem 6%; background: var(--light); text-align: center; } .services h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 2rem; position: relative; } .services h2::after { content: ""; width: 80px; height: 4px; background: var(--secondary); display: block; margin: 0.5rem auto; border-radius: 2px; } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .service-card { background: #fff; padding: 2rem 1.5rem; border-radius: var(--radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); } .service-card h3 { color: var(--secondary); margin-bottom: 0.8rem; } /* QUOTE */ .quote { padding: 4rem 6%; text-align: center; background: #fff; } .quote h2 { color: var(--primary); margin-bottom: 1rem; } .quote-form { max-width: 600px; margin: 2rem auto 0; display: grid; gap: 1rem; } .quote-form input, .quote-form textarea { padding: 0.9rem; border: 1px solid #ccc; border-radius: var(--radius); font-family: inherit; } .quote-form button { background: var(--secondary); color: #fff; border: none; padding: 1rem; border-radius: var(--radius); font-weight: 600; cursor: pointer; transition: 0.3s; } .quote-form button:hover { background: #e68300; } /* CONTACT */ .contact { background: var(--primary); color: #fff; text-align: center; padding: 3rem 6%; } .contact a { color: #fff; font-weight: 600; } /* FOOTER */ footer { background: var(--dark); color: #ccc; text-align: center; padding: 1rem; font-size: 0.9rem; } /* RESPONSIVE */ @media (max-width: 900px) { .nav-desktop { display: none; } .menu-toggle { display: block; } .hero { flex-direction: column; text-align: center; } .hero-content h1 { font-size: 2.2rem; } .hero-buttons { justify-content: center; } } /*nareee*/ body { margin: 0; font-family: 'Poppins', sans-serif; background: #000; /* Black background */ overflow-x: hidden; } /* ===== Marquee Container ===== */ .marquee-container { position: relative; overflow: hidden; white-space: nowrap; width: 100%; background: #000; padding: 6px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; } /* ===== Marquee Text ===== */ .marquee-text { display: inline-block; white-space: nowrap; animation: marquee 160s linear infinite; font-size: 0.85rem; font-weight: 400; color: #0ef; letter-spacing: 0.5px; } @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } } /* ===== Optional Glow Effect ===== */ .glow { text-shadow: 0 0 6px #0ef, 0 0 12px #0ef; } /* Make animation faster on small devices */ @media (max-width: 768px) { .marquee-track { animation-duration: 6s; } }