a[href^="tel"] { color: inherit; text-decoration: none; }

/* --- 1. CORE VARIABLES --- */
:root {
    --orange: #FF8C00;
    --blue: #0047AB;
    --green: #32CD32;
    --gold: #FFD700;
    --red: #FF4444;
    --purple: #9C27B0;
    --cyan: #00BCD4;
    --teal: #009688;
    --dark: #050505;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; /* Magic Cursor Active */ }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* --- 2. PRELOADER CSS --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease;
}
.loader-content { text-align: center; }
.loader-logo { 
    width: 180px; /* Big Logo */
    border-radius: 50%; 
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.4);
    animation: pulse 1.5s infinite; margin-bottom: 30px;
}
.loading-bar { width: 200px; height: 4px; background: #222; border-radius: 4px; overflow: hidden; margin: 0 auto; }
.bar-fill { width: 0%; height: 100%; background: var(--orange); animation: loadFill 2.5s ease-in-out forwards; }
@keyframes loadFill { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.95); opacity: 0.8; } }

/* --- 3. MAGIC CURSOR --- */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background: var(--orange); }
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
body:hover .cursor-outline { border-color: var(--orange); }

/* --- 4. BACKGROUND --- */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    pointer-events: none; z-index: -1; opacity: 0.5;
}
.bg-mesh { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #020202; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3; animation: float 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1); }
.blob-1 { width: 600px; height: 600px; background: var(--orange); top: -10%; left: -10%; }
.blob-2 { width: 500px; height: 500px; background: var(--blue); bottom: 0%; right: -10%; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: var(--green); top: 40%; left: 30%; animation-delay: -10s; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 50px) scale(1.1); } }

/* --- 5. NAV --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center;
    background: rgba(5, 5, 5, 0.1); backdrop-filter: blur(5px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
    padding: 10px 5%; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { 
    height: 75px; border-radius: 50%; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: spinEntry 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, breathe 4s infinite ease-in-out 1.5s; 
}
nav.scrolled .logo-img { height: 50px; }
@keyframes spinEntry { 0% { transform: rotate(-360deg) scale(0); opacity: 0; } 100% { transform: rotate(0deg) scale(1); opacity: 1; } }
@keyframes breathe { 0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.3)); transform: scale(1); } 50% { filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6)); transform: scale(1.05); } }
.brand-text h2 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; line-height: 1; font-weight: 800; margin: 0; }
.brand-text span { font-size: 0.7rem; color: var(--orange); letter-spacing: 2px; font-weight: 600; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.9rem; transition: 0.3s; position: relative; }
.nav-links a:hover { color: var(--orange); }
.quote-btn {
    padding: 10px 25px; background: linear-gradient(45deg, var(--orange), #ff4500); border-radius: 30px; color: white !important; font-weight: 600; text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4); transition: 0.3s;
}
.quote-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 69, 0, 0.6); }
.mobile-toggle { display: none; font-size: 1.5rem; }

/* --- 6. HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 60px; position: relative; }
.hero-content { max-width: 950px; z-index: 2; animation: fadeUp 1s ease-out; }
.hero-badge {
    display: inline-block; padding: 6px 18px; border: 1px solid var(--blue); border-radius: 20px; font-size: 0.8rem; color: #ccc; margin-bottom: 25px;
    background: rgba(0, 71, 171, 0.15); letter-spacing: 1px; font-weight: 600;
}
.hero h1 {
    font-family: 'Montserrat', sans-serif; font-size: 3.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 35px; line-height: 1.6; max-width: 800px; margin: 0 auto 35px; }
.download-bar { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.glass-btn {
    padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: 0.3s;
    background: var(--glass); border: 1px solid var(--glass-border); color: white; backdrop-filter: blur(5px); display: flex; align-items: center; gap: 8px;
}
.glass-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--orange); transform: translateY(-3px); }
.glass-btn i { color: var(--orange); }

/* --- 7. SECTIONS & REVEAL --- */
.section { padding: 90px 5%; position: relative; }
.section-title { 
    font-family: 'Montserrat', sans-serif; font-size: 2.5rem; text-align: center; margin-bottom: 50px; 
    background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- ABOUT & LEADERSHIP --- */
.leadership-box { text-align: center; margin-bottom: 50px; background: var(--glass); padding: 30px; border-radius: 15px; border: 1px solid var(--glass-border); max-width: 800px; margin: 0 auto 50px; }
.partners-names { font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-top: 10px; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.about-card { background: var(--glass); border: 1px solid var(--glass-border); padding: 30px; border-radius: 20px; backdrop-filter: blur(10px); transition: 0.4s; }
.about-card:hover { transform: translateY(-10px); border-color: var(--orange); background: rgba(255,255,255,0.1); }
.about-icon { font-size: 2rem; margin-bottom: 20px; color: var(--blue); }
.about-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: white; }
.about-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- UPDATED: PERFECT SIZE PHILOSOPHY HEADING --- */
.philosophy-container {
    text-align: center; padding: 60px 20px; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
}

.philo-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; /* Reduced from 3.5rem to 2.2rem */
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3)); 
}
.philo-words { font-size: 1.8rem; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 15px; letter-spacing: 1px; }
.word-people { color: var(--orange); } .word-process { color: var(--blue); } .word-protect { color: var(--green); }

/* --- QUALITY --- */
.pillars-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.compliance-table { width: 100%; border-collapse: collapse; background: var(--glass); border-radius: 15px; overflow: hidden; border: 1px solid var(--glass-border); }
.compliance-table th, .compliance-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.compliance-table th { background: rgba(0, 71, 171, 0.2); color: white; font-weight: 600; }
.compliance-table td { color: #ccc; font-size: 0.9rem; }
.iso-seal {
    width: 180px; height: 180px; margin: 0 auto; border-radius: 50%;
    background: radial-gradient(ellipse at center, #fcfbe3 0%,#d6bb4e 100%);
    border: 4px solid #b58d14; box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #5e4b0b; font-weight: bold; text-transform: uppercase; position: relative;
    animation: pulseSeal 3s infinite;
}
.seal-text-main { font-size: 1.8rem; font-weight: 900; line-height: 1; border-bottom: 2px solid #5e4b0b; }
@keyframes pulseSeal { 0% { transform: scale(1); } 50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); } 100% { transform: scale(1); } }

/* --- SERVICES (COLOR PATTERNS) --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.service-card { 
    background: var(--glass); border: 1px solid var(--glass-border); padding: 35px 30px; border-radius: 20px; 
    transition: 0.4s; position: relative; overflow: hidden; border-bottom: 3px solid transparent; 
}
.service-card:hover { transform: translateY(-10px); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; transition: 0.3s; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: white; }
.service-card ul li { margin-bottom: 8px; color: #aaa; font-size: 0.85rem; display: flex; align-items: center; }
.service-card ul li::before { content: '✓'; margin-right: 10px; font-weight: bold; }

/* Specific Colors */
.svc-catering { border-color: var(--orange); background: linear-gradient(145deg, rgba(255, 140, 0, 0.1), rgba(0,0,0,0.4)); }
.svc-catering:hover { box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2); } .svc-catering .card-icon { color: var(--orange); } .svc-catering ul li::before { color: var(--orange); }
.svc-security { border-color: var(--blue); background: linear-gradient(145deg, rgba(0, 71, 171, 0.1), rgba(0,0,0,0.4)); }
.svc-security:hover { box-shadow: 0 10px 30px rgba(0, 71, 171, 0.2); } .svc-security .card-icon { color: var(--blue); } .svc-security ul li::before { color: var(--blue); }
.svc-fm { border-color: var(--teal); background: linear-gradient(145deg, rgba(0, 150, 136, 0.1), rgba(0,0,0,0.4)); }
.svc-fm:hover { box-shadow: 0 10px 30px rgba(0, 150, 136, 0.2); } .svc-fm .card-icon { color: var(--teal); } .svc-fm ul li::before { color: var(--teal); }
.svc-manpower { border-color: var(--gold); background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(0,0,0,0.4)); }
.svc-manpower:hover { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2); } .svc-manpower .card-icon { color: var(--gold); } .svc-manpower ul li::before { color: var(--gold); }
.svc-hort { border-color: var(--green); background: linear-gradient(145deg, rgba(50, 205, 50, 0.1), rgba(0,0,0,0.4)); }
.svc-hort:hover { box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2); } .svc-hort .card-icon { color: var(--green); } .svc-hort ul li::before { color: var(--green); }
.svc-pest { border-color: var(--red); background: linear-gradient(145deg, rgba(255, 68, 68, 0.1), rgba(0,0,0,0.4)); }
.svc-pest:hover { box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2); } .svc-pest .card-icon { color: var(--red); } .svc-pest ul li::before { color: var(--red); }
.svc-laundry { border-color: var(--cyan); background: linear-gradient(145deg, rgba(0, 188, 212, 0.1), rgba(0,0,0,0.4)); }
.svc-laundry:hover { box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2); } .svc-laundry .card-icon { color: var(--cyan); } .svc-laundry ul li::before { color: var(--cyan); }
.svc-electro { border-color: var(--purple); background: linear-gradient(145deg, rgba(156, 39, 176, 0.1), rgba(0,0,0,0.4)); }
.svc-electro:hover { box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2); } .svc-electro .card-icon { color: var(--purple); } .svc-electro ul li::before { color: var(--purple); }


/* --- CLIENTS & BRANCHES --- */
.marquee-section { padding: 40px 0; background: rgba(0,0,0,0.5); border-top: 1px solid var(--glass-border); overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: scroll 35s linear infinite; }
.client-name { display: inline-block; font-size: 1.2rem; font-weight: 700; color: #666; margin: 0 30px; }
.client-name.highlight { color: var(--text); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.branch-card { background: var(--glass); padding: 25px; border-radius: 15px; border: 1px solid var(--glass-border); transition: 0.3s; }
.branch-card:hover { border-color: var(--green); background: rgba(50, 205, 50, 0.05); }
.city { font-size: 1.2rem; font-weight: 700; color: white; display: flex; justify-content: space-between; }
.tag { font-size: 0.7rem; background: var(--blue); padding: 2px 8px; border-radius: 4px; }
.addr { font-size: 0.85rem; color: #bbb; margin: 15px 0; min-height: 60px; line-height: 1.5; }
.map-btn { color: var(--orange); font-size: 0.85rem; text-decoration: none; border: 1px solid var(--orange); padding: 5px 15px; border-radius: 20px; display: inline-block; transition: 0.3s; }
.map-btn:hover { background: var(--orange); color: white; }

/* --- CONTACT & FOOTER --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: rgba(255,255,255,0.02); padding: 50px; border-radius: 20px; border: 1px solid var(--glass-border); }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { width: 100%; padding: 15px; margin-bottom: 15px; background: rgba(0,0,0,0.5); border: 1px solid #333; color: white; border-radius: 10px; font-family: 'Poppins', sans-serif; }
.enquiry-form select option { background: #000; color: white; }
.enquiry-form button { width: 100%; padding: 15px; background: var(--blue); color: white; border: none; border-radius: 10px; font-weight: 600; transition: 0.3s; }
.enquiry-form button:hover { background: #003380; }
.email-link { color: var(--orange); text-decoration: none; }
footer { background: #000; padding: 60px 5% 20px; border-top: 1px solid #222; margin-top: 50px; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #888; text-decoration: none; }
.social-icons a { color: #fff; font-size: 1.2rem; margin-right: 15px; transition: 0.3s; }
.social-icons a:hover { color: var(--orange); }

/* --- DISCLAIMER & CREDITS --- */
.disclaimer {
    margin-top: 20px;
    font-size: 0.7rem;
    color: #555;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
    line-height: 1.5;
}

.credits {
    color: var(--orange);
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .pillars-grid, .contact-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; color: white; }
    .cursor-dot, .cursor-outline { display: none; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }