:root {

  --primary-orange: #ff5e00;

  --primary-orange-gradient: linear-gradient(135deg, #ff5e00 0%, #ff3300 100%);

  --bg-dark: #070707;

  --surface-dark: #121212;

  --surface-light: #1a1a1a;

  --text-main: #e0e0e0;

  --text-muted: #999999;

  --white: #ffffff;

  --glow-orange: 0 0 20px rgba(255, 94, 0, 0.4);

  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);

  --box-shadow-3d: 0 10px 30px rgba(0, 0, 0, 0.5);

}



* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }



body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.7; overflow-x: hidden; position: relative; }



/* Global AI Tech Pattern */

.tech-bg-pattern {

    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;

    background-image: linear-gradient(rgba(255, 94, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 94, 0, 0.03) 1px, transparent 1px);

    background-size: 40px 40px; pointer-events: none;

}



/* Typography */

h1, h2, h3, h4, h5 { color: var(--white); }

.section-title { text-align: center; margin-bottom: 60px; }

.section-title h5 { color: var(--primary-orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; text-shadow: var(--glow-orange); }

.section-title h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.5px; }



/* Top Bar Enhancements */

.top-bar { background-color: #000; color: var(--text-muted); padding: 10px 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; border-bottom: 1px solid rgba(255,94,0,0.2); flex-wrap: wrap; gap: 15px; }

.contact-info { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }

.separator { color: rgba(255,255,255,0.2); user-select: none; }

.top-bar a { color: var(--text-main); text-decoration: none !important; transition: color 0.3s; }

.top-bar a:hover { color: var(--primary-orange); text-decoration: none !important; }



.top-bar-right { display: flex; align-items: center; gap: 25px; }

.social-icons-top a { color: var(--text-muted); font-size: 1.1rem; margin-left: 15px; transition: color 0.3s; text-decoration: none !important; }

.social-icons-top a:hover { color: var(--primary-orange); text-decoration: none !important; }



/* Custom Language Widget */

.translate-widget { position: relative; }

.custom-language-selector { cursor: pointer; user-select: none; position: relative; background: var(--surface-light); padding: 6px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; font-size: 0.85rem; color: var(--white); display: flex; align-items: center; }

.selected-language { display: flex; align-items: center; gap: 8px; }

.selected-language img, .language-option img { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; }

.arrow { font-size: 0.7rem; color: #aaa; margin-left: 5px; }

.language-dropdown { display: none; position: absolute; top: 100%; right: 0; background: var(--surface-dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; margin-top: 5px; min-width: 140px; box-shadow: var(--box-shadow-3d); z-index: 1000; overflow: hidden; }

.language-option { display: flex; align-items: center; gap: 10px; padding: 10px 15px; transition: background 0.2s; color: var(--white); }

.language-option:hover { background: rgba(255, 94, 0, 0.2); color: var(--primary-orange); }

.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, .goog-te-gadget-simple, #goog-gt-tt { display: none !important; }



/* Header & Navigation */

header { background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(15px); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }

.logo img { height: 55px; filter: drop-shadow(0 0 5px rgba(255,94,0,0.3)); }



/* Header Right Side Actions (Hamburger + Button) */

.header-actions { display: flex; align-items: center; gap: 20px; }

.menu-toggle { display: none; font-size: 1.8rem; color: var(--white); cursor: pointer; transition: color 0.3s; }

.menu-toggle:hover { color: var(--primary-orange); }



nav { position: static; }

nav ul { list-style: none; display: flex; gap: 30px; align-items: center; margin-right: 10px; }

nav ul li { position: static; }

nav ul li a { color: var(--text-main); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }

nav ul li a i { color: var(--primary-orange); font-size: 1rem; }

nav ul li a:hover { color: var(--white); text-shadow: var(--glow-orange); }



/* Full-Width 5-Column Mega Menu */

.mega-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(15, 15, 15, 0.97); backdrop-filter: blur(25px); border-top: 3px solid var(--primary-orange); border-bottom: 1px solid rgba(255, 94, 0, 0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.8); padding: 40px 5%; grid-template-columns: repeat(5, 1fr); gap: 30px; z-index: 1000; }



@keyframes slideDown { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.mega-menu-col h4 { font-size: 1rem; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }

.mega-menu-col h4 i { color: var(--primary-orange); }

.mega-menu-col ul { display: flex; flex-direction: column; gap: 15px; margin: 0; }

.mega-menu-col ul li { padding: 0; border: none; }

.mega-menu-col ul li a { text-transform: capitalize; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); padding: 5px 0; transition: all 0.2s; }

.mega-menu-col ul li a:hover { color: var(--primary-orange); padding-left: 5px; background: none; }



/* Corrected Buttons with Restored Padding */

.btn-primary { background: var(--primary-orange-gradient); color: var(--white); padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; display: inline-block; border: none; cursor: pointer; text-align: center; box-shadow: var(--glow-orange); font-size: 0.9rem; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 94, 0, 0.6); color: var(--white); }

.btn-secondary { background: transparent; color: var(--white); padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--primary-orange); transition: all 0.3s; display: inline-block; text-align: center; font-size: 0.9rem; }

.btn-secondary:hover { background: rgba(255, 94, 0, 0.1); box-shadow: inset 0 0 20px rgba(255, 94, 0, 0.2); }

.header-btn { padding: 10px 20px; } /* Specific padding override for header button */



/* Hero Section */

.hero { background: linear-gradient(135deg, rgba(5,5,5,0.9) 0%, rgba(15,15,15,0.8) 100%), url('assets/hero-bg.jpg') center/cover; min-height: 90vh; display: flex; align-items: center; padding: 60px 5%; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }

.hero-container { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1250px; margin: 0 auto; gap: 50px; }

.hero-content { flex: 1; z-index: 2; }

.glow-text { color: var(--primary-orange); text-shadow: var(--glow-orange); letter-spacing: 3px; font-weight: 600; }

.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; letter-spacing: -1px; }

.hero-content h1 span { color: transparent; -webkit-text-stroke: 1px var(--primary-orange); background: var(--primary-orange-gradient); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 10px rgba(255,94,0,0.3)); }

.hero-content p { font-size: 1.15rem; margin-bottom: 40px; color: var(--text-muted); max-width: 90%; }

.hero-buttons { display: flex; gap: 20px; }

.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; z-index: 2; }

.floating-img { width: 100%; max-width: 550px; border-radius: 15px; animation: float 6s ease-in-out infinite; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(255,94,0,0.1); }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

.tech-box { position: absolute; background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255, 94, 0, 0.3); color: var(--white); padding: 15px 25px; border-radius: 8px; font-weight: 600; box-shadow: 0 10px 20px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 10px; }

.tech-box i { color: var(--primary-orange); font-size: 1.2rem; }

.tech-box-1 { top: 10%; left: -10%; animation: float 5s ease-in-out infinite alternate; }

.tech-box-2 { bottom: 10%; right: -5%; animation: float 7s ease-in-out infinite alternate-reverse; border-color: rgba(255,255,255,0.2); }



/* AI Services Section */

.ai-services { padding: 100px 5%; background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%); position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }

.ai-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1300px; margin: 0 auto; }

.ai-card { background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255, 94, 0, 0.2); backdrop-filter: blur(5px); text-decoration: none; }

.ai-card:hover { border-color: var(--primary-orange); box-shadow: 0 0 30px rgba(255, 94, 0, 0.15); transform: translateY(-10px); }



/* General Services Grid (4 Columns) */

.services { padding: 100px 5%; background-color: var(--surface-dark); border-bottom: 1px solid rgba(255,255,255,0.05); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1300px; margin: 0 auto; }

.service-card { text-decoration: none; display: block; background: var(--surface-light); padding: 40px 30px; border-radius: 10px; text-align: center; transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.03); position: relative; overflow: hidden; }

.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--primary-orange-gradient); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }

.service-card:hover { transform: translateY(-10px); background: #222; box-shadow: var(--box-shadow-3d); }

.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 3rem; margin-bottom: 25px; color: var(--primary-orange); text-shadow: var(--glow-orange); transition: transform 0.3s; }

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--white); }

.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }



/* About Section */

.about { padding: 120px 5%; display: flex; gap: 60px; align-items: center; background-color: var(--bg-dark); }

.about-img { flex: 1; position: relative; border-radius: 10px; z-index: 1; }

.about-img img { width: 100%; height: auto; display: block; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }

.glow-backdrop { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: var(--primary-orange); filter: blur(100px); opacity: 0.15; z-index: -1; }

.about-text { flex: 1; }

.about-text p { margin-bottom: 25px; color: var(--text-muted); font-size: 1.05rem; }



/* Why Choose Us Section */

.why-choose-us { padding: 100px 5%; background: var(--surface-dark); background-image: radial-gradient(circle at 50% 0%, rgba(255,94,0,0.05) 0%, transparent 70%); }

.why-grid { max-width: 900px; margin: 0 auto; background: rgba(20,20,20,0.8); padding: 50px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); border-left: 4px solid var(--primary-orange); box-shadow: var(--box-shadow-3d); backdrop-filter: blur(10px); }

.check-list { list-style: none; }

.check-list li { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-main); display: flex; align-items: flex-start; gap: 15px; }

.check-list li i { color: var(--primary-orange); font-size: 1.3rem; margin-top: 3px; text-shadow: var(--glow-orange); flex-shrink: 0; }



/* Portfolio CTA */

.portfolio-cta { padding: 100px 5%; background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('assets/hero-bg.jpg') fixed center/cover; text-align: center; border-top: 1px solid rgba(255,94,0,0.3); border-bottom: 1px solid rgba(255,94,0,0.3); }

.cta-content { max-width: 800px; margin: 0 auto; }

.portfolio-cta h2 { font-size: 3rem; margin-bottom: 20px; color: var(--white); text-shadow: var(--glow-orange); }

.portfolio-cta p { font-size: 1.2rem; color: #ccc; margin-bottom: 30px; }



/* Floating WhatsApp Widget */

.floating-wa { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: var(--white); padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 12px; font-weight: bold; text-decoration: none !important; box-shadow: 0 10px 25px rgba(37,211,102,0.4); z-index: 9999; transition: transform 0.3s; border: 1px solid rgba(255,255,255,0.2); }

.floating-wa:hover { transform: scale(1.05) translateY(-5px); color: var(--white); text-decoration: none !important; }

.verified-badge-img { position: absolute; bottom: -6px; right: -8px; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.4); background: #fff; object-fit: contain; }



/* Footer */

footer { background-color: #000; color: var(--text-muted); padding: 70px 5% 20px; border-top: 1px solid rgba(255,255,255,0.05); }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; max-width: 1300px; margin-left: auto; margin-right: auto; }

.footer-social { display: flex; gap: 15px; margin-top: 15px; }

.footer-social a { background: rgba(255,255,255,0.05); color: var(--white); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); text-decoration: none !important; }

.footer-social a:hover { background: var(--primary-orange); border-color: var(--primary-orange); box-shadow: var(--glow-orange); text-decoration: none !important; }

.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; display: inline-block; padding-bottom: 5px; border-bottom: 2px solid var(--primary-orange); }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }

.footer-col ul li i.fa-angle-right { color: var(--primary-orange); margin-top: 5px; font-size: 0.8rem; }

.footer-col ul li a { color: var(--text-muted); text-decoration: none !important; transition: all 0.3s; }

.footer-col ul li a:hover { color: var(--primary-orange); padding-left: 5px; text-decoration: none !important; }

.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }



/* Mobile Scrollbar Styling for Nav */

nav::-webkit-scrollbar { width: 5px; }

nav::-webkit-scrollbar-track { background: transparent; }

nav::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 5px; }



/* Mobile Responsive Adjustments */

@media (max-width: 1350px) {

    .mega-menu { grid-template-columns: repeat(3, 1fr); gap: 20px; }

}

@media (max-width: 1200px) {

    .service-grid, .ai-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 992px) {

    .menu-toggle { display: block; }

    .header-actions { gap: 10px; }

    .header-btn { padding: 8px 12px; font-size: 0.8rem; }

    

    /* Mobile Hamburger Menu Overrides - Scrollable Fix Applied */

    nav { 

        position: absolute; top: 100%; left: 0; width: 100%; 

        background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); 

        border-bottom: 2px solid var(--primary-orange); 

        display: none; 

        max-height: calc(100vh - 85px); /* Allows scrolling if menu is tall */

        overflow-y: auto;

        overflow-x: hidden;

    }

    nav.active { display: block; animation: slideDown 0.3s ease; }

    nav ul { flex-direction: column; width: 100%; padding: 20px 5%; margin: 0; align-items: flex-start; }

    nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0; margin: 0; }

    nav ul li a { font-size: 1.05rem; justify-content: flex-start; }

    

    /* Mobile Mega Menu Logic */

    .has-mega-menu:hover .mega-menu { display: none; }

    .mega-menu { position: static; width: 100%; display: none; box-shadow: none; padding: 15px 10px 0 20px; border: none; background: transparent; grid-template-columns: repeat(2, 1fr); }

    .has-mega-menu.mobile-open .mega-menu { display: grid; animation: slideDown 0.3s ease; }

    .mega-menu-col h4 { font-size: 0.95rem; margin-bottom: 10px; }

    .mega-menu-col ul li { padding: 5px 0; border: none; }

    

    .contact-info { justify-content: center; gap: 10px; }

    .separator { display: none; }

    .hero-container { flex-direction: column; text-align: center; }

    .hero-content p { max-width: 100%; margin: 0 auto 35px; }

    .hero-buttons { justify-content: center; }

    .hero-visual { margin-top: 50px; }

    .tech-box { display: none; }

    .about { flex-direction: column; }

}

@media (max-width: 768px) {

    .top-bar { flex-direction: column; text-align: center; justify-content: center; padding: 15px; }

    .top-bar-right { flex-direction: column; }

    .mega-menu { grid-template-columns: 1fr; }

    .hero h1 { font-size: 3rem; }

    .service-grid, .ai-grid { grid-template-columns: 1fr; }

    

    /* Perfect Left Alignment for Why Choose Us on Mobile */

    .why-grid { padding: 30px 20px; border-left: none; border-top: 4px solid var(--primary-orange); }

    .check-list li { align-items: flex-start; text-align: left; font-size: 1rem; }

    .why-choose-us .section-title h5, .why-choose-us .section-title h2 { text-align: center; }

    

    .floating-wa { bottom: 15px; right: 15px; padding: 12px; }

    .floating-wa span { display: none; }

}



/* =========================================

   INTERNAL PAGES STYLING

========================================= */



/* Internal Hero Banner */

.internal-hero { background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(20,20,20,0.9) 100%), url('assets/hero-bg.jpg') center/cover; padding: 120px 5% 60px; text-align: center; border-bottom: 1px solid rgba(255,94,0,0.3); }

.internal-hero h1 { font-size: 3.5rem; margin-bottom: 15px; color: var(--white); text-shadow: var(--glow-orange); }

.internal-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

.breadcrumb { margin-top: 20px; font-size: 0.9rem; color: #888; }

.breadcrumb a { color: var(--primary-orange); text-decoration: none; }



/* Service Content Layout */

.service-content { padding: 80px 5%; background: var(--bg-dark); }

.service-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; flex-wrap: wrap; }

.service-main { flex: 2; min-width: 300px; }

.service-main h2 { margin-bottom: 25px; font-size: 2.2rem; color: var(--white); border-bottom: 2px solid rgba(255,255,255,0.05); padding-bottom: 10px; }

.service-main p { margin-bottom: 20px; font-size: 1.05rem; color: #ccc; }

.service-sidebar { flex: 1; min-width: 300px; background: var(--surface-dark); padding: 30px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); height: fit-content; position: sticky; top: 100px; }

.service-sidebar h3 { margin-bottom: 20px; color: var(--primary-orange); }

.service-sidebar ul { list-style: none; }

.service-sidebar ul li { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }

.service-sidebar ul li a { color: var(--text-main); text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 10px; }

.service-sidebar ul li a:hover { color: var(--primary-orange); padding-left: 5px; }



/* FAQ Accordion Styling */

.faq-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }

.faq-item { background: var(--surface-light); margin-bottom: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }

.faq-question { padding: 20px; width: 100%; text-align: left; background: none; border: none; color: var(--white); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

.faq-question:hover { color: var(--primary-orange); }

.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--text-muted); }

.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }

.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-orange); transition: 0.3s; }



/* Contact Page Layout */

.contact-wrapper { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 80px auto; gap: 40px; padding: 0 5%; }

.contact-form-box { flex: 1; min-width: 300px; background: var(--surface-dark); padding: 40px; border-radius: 10px; border: 1px solid rgba(255,94,0,0.2); box-shadow: var(--box-shadow-3d); }

.form-group { margin-bottom: 20px; }

.form-group label { display: block; margin-bottom: 8px; color: var(--text-main); font-size: 0.9rem; }

.form-control { width: 100%; padding: 12px 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: var(--white); font-family: inherit; transition: border 0.3s; }

.form-control:focus { outline: none; border-color: var(--primary-orange); box-shadow: 0 0 10px rgba(255,94,0,0.2); }

textarea.form-control { height: 150px; resize: vertical; }



.map-container { flex: 1; min-width: 300px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); min-height: 400px; }

.map-container iframe { width: 100%; height: 100%; border: none; }



/* Legal Pages (Privacy / Terms) */

.legal-content { max-width: 900px; margin: 80px auto; padding: 0 5%; color: #ccc; line-height: 1.8; }

.legal-content h2 { color: var(--white); margin: 40px 0 15px; font-size: 1.8rem; }

.legal-content p { margin-bottom: 20px; } 

