/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

:root {
    /* Theme Colors (Overridden dynamically by PHP if set) */
    --primary-navy: #002B5B;
    --accent-gold: #FFC000;
    --text-light: #F9F9F9;
    --text-dark: #333333;
    
    /* Modern Backgrounds */
    --bg-light: linear-gradient(135deg, #f5f7fa 0%, #eef2f5 100%);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(0, 43, 91, 0.08);
    --glass-blur: blur(12px);
}

body { 
    background: var(--bg-light); 
    color: var(--text-dark); 
    overflow-x: hidden; /* Prevents horizontal scroll from full-width footer */
    scroll-behavior: smooth;
}

/* ==========================================================================
   2. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(108, 156, 49, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(108, 156, 49, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 156, 49, 0); }
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
header { 
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: sticky; 
    top: 0;
    z-index: 1000; 
    animation: slideInDown 0.6s ease-out;
}

.top-bar { 
    display: flex; justify-content: flex-end; padding: 10px 50px; 
    font-size: 14px; font-weight: 600; color: var(--primary-navy); 
    border-bottom: 1px solid rgba(0, 43, 91, 0.1); gap: 15px; 
}
.top-bar a { color: var(--primary-navy); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: all 0.3s ease; }
.top-bar a:hover { color: var(--accent-gold); transform: translateY(-2px); }

.main-nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 50px; }
.logo img { max-height: 60px; width: auto; transition: transform 0.3s ease; }
.logo img:hover { transform: scale(1.05); }

nav ul { list-style: none; display: flex; align-items: center; gap: 25px; }
nav ul li a { 
    color: var(--primary-navy); text-decoration: none; font-weight: 700; 
    font-size: 15px; position: relative; transition: color 0.3s ease;
}
nav ul li a::after {
    content: ''; position: absolute; width: 0; height: 2px; 
    bottom: -4px; left: 0; background-color: var(--accent-gold); transition: width 0.3s ease;
}
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: var(--accent-gold); }

.contact-btn { 
    background: linear-gradient(135deg, var(--primary-navy), #004488); 
    color: #ffffff !important; padding: 10px 24px; border-radius: 30px; 
    box-shadow: 0 4px 15px rgba(0, 43, 91, 0.2); transition: all 0.3s ease;
}
.contact-btn::after { display: none; }
.contact-btn:hover { 
    background: var(--accent-gold); color: var(--primary-navy) !important; 
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 192, 0, 0.4);
}

/* ==========================================================================
   4. SOCIAL FLOATING SIDEBAR
   ========================================================================== */
.social-sidebar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 2px; }
.social-sidebar a { 
    display: flex; justify-content: center; align-items: center; width: 45px; height: 45px; 
    color: white; font-size: 18px; text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border-radius: 8px 0 0 8px;
}
.social-sidebar a:hover { width: 60px; padding-right: 15px; font-size: 20px; }
.ss-fb { background-color: rgba(59, 89, 152, 0.9); backdrop-filter: blur(5px); }
.ss-in { background-color: rgba(0, 119, 181, 0.9); backdrop-filter: blur(5px); }
.ss-wa { background-color: rgba(37, 211, 102, 0.9); backdrop-filter: blur(5px); }
.ss-ph { background-color: rgba(108, 156, 49, 0.9); backdrop-filter: blur(5px); }

/* ==========================================================================
   5. FULL BACKGROUND SLIDER
   ========================================================================== */
.exact-slider-section {
    position: relative; width: 100%; height: 600px; background-color: #fafbfc; overflow: hidden; display: flex; align-items: center;
}
.exact-slide {
    position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease; z-index: 1; width: 100%;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.exact-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slider-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(250, 251, 252, 0.95) 0%, rgba(250, 251, 252, 0.85) 45%, rgba(250, 251, 252, 0.1) 100%); z-index: 1;
}

.exact-slide-text {
    flex: 1; padding-left: 8%; padding-right: 2%; max-width: 65%; transform: translateX(-30px); transition: transform 0.8s ease; position: relative; z-index: 2; 
}
.exact-slide.active .exact-slide-text { transform: translateX(0); }
.exact-slide-text h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 15px; letter-spacing: -0.5px; }
.text-accent { color: var(--accent-gold); }
.text-primary { color: var(--primary-navy); }

.slider-bullets { display: flex; gap: 15px; color: var(--primary-navy); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.slider-desc { font-size: 17px; color: #444; line-height: 1.6; margin-bottom: 30px; max-width: 90%; }
.exact-btn {
    background-color: var(--primary-navy); color: white; padding: 14px 30px; font-size: 16px; 
    font-weight: 600; text-decoration: none; display: inline-block; transition: background 0.3s; border: none; border-radius: 4px;
}
.exact-btn:hover { background-color: var(--accent-gold); color: var(--primary-navy); }

.exact-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 80px;
    background-color: rgba(216, 216, 216, 0.7); color: var(--primary-navy); border: none; cursor: pointer;
    z-index: 10; display: flex; justify-content: center; align-items: center; font-size: 20px; transition: background 0.3s;
}
.exact-arrow:hover { background-color: rgba(176, 176, 176, 0.9); }
.arrow-left { left: 0; }
.arrow-right { right: 0; }

/* ==========================================================================
   6. PREMIUM SERVICES GRID (Slide-up Overlay)
   ========================================================================== */
.premium-services-section { padding: 100px 5%; background-color: #f8fafc; text-align: center; }
.services-header { max-width: 800px; margin: 0 auto 60px; }
.services-header .sub-heading { color: var(--accent-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; display: block; margin-bottom: 15px; }
.services-header .main-heading { font-size: 46px; font-weight: 800; margin-bottom: 20px; }
.services-header .section-desc { color: #64748b; font-size: 17px; line-height: 1.6; }

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1300px; margin: 0 auto;
}
.premium-service-card {
    background: white; border-radius: 12px; padding: 40px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 240px; border: 1px solid rgba(0,0,0,0.02);
}
.premium-service-card .card-content { position: relative; z-index: 2; transition: all 0.4s ease; }
.premium-service-card i { font-size: 50px; color: var(--accent-gold); margin-bottom: 25px; transition: transform 0.4s ease; }
.premium-service-card h3 { font-size: 18px; color: var(--primary-navy); font-weight: 700; margin: 0; line-height: 1.4; }

.premium-service-card .card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-navy), #00152e);
    display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px;
    opacity: 0; visibility: hidden; transform: translateY(100%); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1); z-index: 3;
}
.premium-service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 43, 91, 0.15); }
.premium-service-card:hover .card-content i { transform: scale(0.8); opacity: 0; }
.premium-service-card:hover .card-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
.card-overlay p { color: #e2e8f0; font-size: 14px; line-height: 1.6; margin-bottom: 20px; text-align: center; }
.card-overlay .overlay-link {
    color: var(--primary-navy); background-color: var(--accent-gold); width: 45px; height: 45px; display: flex;
    justify-content: center; align-items: center; border-radius: 50%; font-size: 20px; text-decoration: none; transition: all 0.3s ease;
}
.card-overlay .overlay-link:hover { transform: translateX(5px); background-color: white; }

/* ==========================================================================
   7. ACHIEVEMENTS (STATS)
   ========================================================================== */
.achievements-section {
    background: linear-gradient(135deg, rgba(0, 43, 91, 0.95), rgba(108, 156, 49, 0.85)), url('../image/hero-bg.jpg') center/cover fixed;
    color: white; padding: 80px 5%; text-align: center;
}
.achievements-section h4 { color: var(--accent-gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-size: 14px;}
.achievements-section h2 { font-size: 42px; font-weight: 800; margin-bottom: 50px; }
.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; max-width: 1200px; margin: 0 auto; }
.stat-box { flex: 1; min-width: 200px; padding: 20px; transition: transform 0.3s; }
.stat-box:hover { transform: translateY(-10px); }
.stat-box i { font-size: 50px; color: white; margin-bottom: 20px; display: block; }
.stat-box h3 { font-size: 48px; font-weight: 800; border-bottom: 3px solid var(--accent-gold); display: inline-block; padding-bottom: 10px; margin-bottom: 15px; }
.stat-box p { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   8. INDUSTRIES WE SERVE
   ========================================================================== */
.industries-section { padding: 80px 5%; background-color: #ffffff; text-align: center; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 1200px; margin: 50px auto 0; }
.industry-card { 
    background: #f8fafc; border: 1px solid #e2e8f0; padding: 35px 20px; border-radius: 8px; 
    transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; 
}
.industry-card i { font-size: 40px; color: var(--primary-navy); margin-bottom: 20px; transition: 0.3s; }
.industry-card h3 { font-size: 18px; color: var(--text-dark); margin: 0; transition: 0.3s; }
.industry-card:hover { background: var(--primary-navy); box-shadow: 0 15px 30px rgba(0,43,91,0.15); transform: translateY(-5px); }
.industry-card:hover i, .industry-card:hover h3 { color: white; }

/* ==========================================================================
   9. ABOUT US PAGE COMPONENTS
   ========================================================================== */
.about-hero {
    background: url('../image/hero-bg.jpg') center/cover; position: relative;
    display: flex; align-items: center; justify-content: space-between; padding: 80px 10%; overflow: hidden;
}
.about-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(5px); z-index: 0;
}
.about-hero > div, .about-hero > img { position: relative; z-index: 1; animation: fadeInUp 0.8s ease-out; }
.about-hero h1 { font-size: 48px; color: var(--primary-navy); position: relative; padding-bottom: 15px; }
.about-hero h1::after { content: ''; position: absolute; left: 0; bottom: 0; width: 80px; height: 5px; background-color: var(--accent-gold); border-radius: 5px; }
.about-hero-img { max-width: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); }

.about-main { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; max-width: 1200px; margin: 80px auto; padding: 0 30px; }
.about-text { flex: 1; min-width: 300px; animation: fadeInUp 0.8s ease-out; }
.about-text h2 { font-size: 40px; color: var(--primary-navy); margin-bottom: 25px; font-weight: 800; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 20px; font-size: 16px; }

.btn-outline { 
    display: inline-block; padding: 12px 35px; border: 2px solid var(--primary-navy); 
    color: var(--primary-navy); text-decoration: none; margin-top: 15px; 
    border-radius: 30px; font-weight: 600; transition: all 0.3s ease;
}
.btn-outline:hover { background-color: var(--primary-navy); color: white; box-shadow: 0 10px 20px rgba(0, 43, 91, 0.2); transform: translateY(-3px); }

.about-image-wrapper { flex: 1; min-width: 300px; position: relative; display: flex; justify-content: center; animation: fadeInUp 1s ease-out; }
.circle-img-container { 
    width: 450px; height: 450px; border-radius: 50%; overflow: hidden; 
    border: 8px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform 0.5s ease;
}
.circle-img-container:hover { transform: scale(1.02); }
.circle-img-container img { width: 100%; height: 100%; object-fit: cover; }

.experience-badge { 
    position: absolute; bottom: 10px; left: -10px; background: linear-gradient(135deg, #6c9c31, #4a7020); 
    color: white; width: 170px; height: 170px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; 
    text-align: center; font-size: 26px; font-weight: 800; border: 6px solid white; box-shadow: 0 10px 25px rgba(108, 156, 49, 0.4);
    animation: pulseGlow 2s infinite;
}

.different-section { 
    background: linear-gradient(rgba(0, 43, 91, 0.95), rgba(0, 43, 91, 0.85)), url('../image/hero-bg.jpg') center/cover fixed; 
    padding: 100px 50px; color: white; text-align: center; 
}
.different-section h2 { font-size: 40px; margin-bottom: 60px; color: var(--accent-gold); }
.different-grid { display: flex; justify-content: center; max-width: 1200px; margin: 0 auto; gap: 20px; }
.diff-item { 
    flex: 1; padding: 40px 30px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transition: all 0.3s ease;
}
.diff-item:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.1); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.diff-item i { font-size: 50px; color: var(--accent-gold); margin-bottom: 25px; transition: transform 0.3s ease; }
.diff-item:hover i { transform: scale(1.1); }
.diff-item p { font-size: 15px; line-height: 1.7; color: #e2e8f0; }

/* ==========================================================================
   10. CONTACT PAGE LAYOUT
   ========================================================================== */
.contact-layout { display: flex; flex-wrap: wrap; gap: 50px; max-width: 1200px; margin: 80px auto; padding: 0 30px; }
.contact-left, .contact-right {
    background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow); padding: 50px; border-radius: 20px; animation: fadeInUp 0.8s ease-out;
}
.contact-left { flex: 1; min-width: 300px; }
.contact-right { flex: 1.5; min-width: 300px; }

.contact-left h2, .contact-right h2 { color: var(--primary-navy); font-size: 34px; margin-bottom: 30px; font-weight: 800; }
.contact-left h3 { font-size: 20px; color: #333; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent-gold); display: inline-block;}
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-item i { 
    background: var(--primary-navy); color: white; width: 45px; height: 45px; 
    display: flex; justify-content: center; align-items: center; border-radius: 50%; 
    font-size: 18px; box-shadow: 0 5px 15px rgba(0, 43, 91, 0.2);
}
.contact-item p, .contact-item a { color: #555; line-height: 1.6; text-decoration: none; font-size: 16px; margin-top: 5px; }
.contact-item a:hover { color: var(--accent-gold); }

.form-row { display: flex; gap: 20px; margin-bottom: 25px; }
.form-group { flex: 1; }
.form-control { 
    width: 100%; padding: 18px 20px; background-color: rgba(255, 255, 255, 0.8); border: 1px solid rgba(0, 43, 91, 0.1); 
    border-radius: 8px; font-size: 15px; color: #333; transition: all 0.3s ease; box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}
.form-control:focus { outline: none; border-color: var(--primary-navy); background-color: #fff; box-shadow: 0 0 0 4px rgba(0, 43, 91, 0.1); }
textarea.form-control { min-height: 160px; resize: vertical; }

.phone-input { display: flex; background-color: rgba(255, 255, 255, 0.8); border-radius: 8px; align-items: center; padding-left: 15px; border: 1px solid rgba(0, 43, 91, 0.1); transition: all 0.3s ease; }
.phone-input:focus-within { border-color: var(--primary-navy); background-color: #fff; box-shadow: 0 0 0 4px rgba(0, 43, 91, 0.1); }
.phone-input input { background: transparent; padding-left: 5px; border: none; box-shadow: none; outline: none; width: 100%; }

.submit-btn { 
    background: linear-gradient(135deg, var(--primary-navy), #004488); color: white; padding: 15px 40px; border: none; border-radius: 30px; 
    font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(0, 43, 91, 0.2);
}
.submit-btn:hover { background: var(--accent-gold); color: var(--primary-navy); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 192, 0, 0.3); }

.map-container { width: 100%; height: 500px; margin-bottom: -70px; position: relative; z-index: 1; filter: grayscale(20%); transition: filter 0.3s ease; }
.map-container:hover { filter: grayscale(0%); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ==========================================================================
   11. CLIENT REVIEWS (TESTIMONIALS)
   ========================================================================== */
.reviews-section { padding: 80px 5%; background-color: #f0f4f8; text-align: center; }
.reviews-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1200px; margin: 50px auto 0; }
.review-card { 
    background: white; padding: 40px; border-radius: 12px; width: 350px; text-align: left; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; border-bottom: 4px solid var(--accent-gold); transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-8px); }
.review-card .quote-icon { position: absolute; top: 20px; right: 30px; font-size: 60px; color: #f1f5f9; z-index: 1; }
.review-card p { font-size: 15px; color: #555; line-height: 1.8; font-style: italic; position: relative; z-index: 2; margin-bottom: 25px; }
.review-author { display: flex; align-items: center; gap: 15px; position: relative; z-index: 2; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.review-author i { font-size: 30px; color: var(--primary-navy); }
.review-author h4 { margin: 0; color: var(--primary-navy); font-size: 16px; }
.review-author span { font-size: 13px; color: #888; }

/* ==========================================================================
   12. CLIENTS MARQUEE
   ========================================================================== */
.clients-section { padding: 60px 0; background: white; text-align: center; border-top: 1px solid #eaeaea; overflow: hidden; }
.clients-section h3 { color: var(--primary-navy); margin-bottom: 40px; font-size: 28px; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track { display: inline-block; animation: scrollMarquee 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img { height: 60px; margin: 0 40px; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; vertical-align: middle; }
.marquee-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* ==========================================================================
   13. PREMIUM FULL-WIDTH FOOTER
   ========================================================================== */
.main-footer {
    background-color: #000b18; 
    background-image: radial-gradient(circle at top right, #002B5B 0%, transparent 50%);
    color: #94a3b8; font-size: 15px; padding-top: 80px; border-top: 4px solid var(--accent-gold);
    
    /* Force full screen width regardless of container */
    width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    box-sizing: border-box; overflow-x: hidden;
}

.footer-container {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1.5fr; gap: 45px; max-width: 90%; margin: 0 auto; padding: 0 0 60px;
}

.footer-col h3 {
    color: #ffffff; font-size: 18px; margin-bottom: 30px; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; position: relative; padding-bottom: 12px;
}
.footer-col h3::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background-color: var(--accent-gold); border-radius: 2px;
}

.about-col p { line-height: 1.8; margin-bottom: 25px; color: #cbd5e1; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.05); color: #ffffff; font-size: 16px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-socials a:hover { background: var(--accent-gold); color: var(--primary-navy); transform: translateY(-5px); border-color: var(--accent-gold); }

.contact-col ul { list-style: none; padding: 0; margin: 0; }
.contact-col ul li { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; line-height: 1.6; }
.contact-col ul li i {
    color: var(--accent-gold); font-size: 16px; margin-top: 2px; background: rgba(255, 192, 0, 0.1); padding: 10px; 
    border-radius: 50%; display: flex; justify-content: center; align-items: center; width: 35px; height: 35px;
}
.contact-col ul li a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.contact-col ul li a:hover { color: #ffffff; }

.link-col ul { list-style: none; padding: 0; margin: 0; }
.link-col ul li { margin-bottom: 16px; transition: transform 0.3s ease; }
.link-col ul li a { color: #cbd5e1; text-decoration: none; transition: 0.3s; display: inline-block; position: relative; }
.link-col ul li a::before {
    content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; opacity: 0; 
    color: var(--accent-gold); transition: all 0.3s ease; transform: translateX(-15px);
}
.link-col ul li:hover { transform: translateX(5px); }
.link-col ul li:hover a { color: #ffffff; padding-left: 20px; }
.link-col ul li:hover a::before { opacity: 1; transform: translateX(0); }

.footer-bottom { background: #00050d; padding: 25px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); width: 100%; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; max-width: 90%; margin: 0 auto; font-size: 14px; color: #64748b; }
.legal-links a { color: #64748b; text-decoration: none; transition: 0.3s; margin: 0 12px; font-weight: 600;}
.legal-links a:hover { color: var(--accent-gold); }

/* ==========================================================================
   14. MOBILE RESPONSIVENESS
   ========================================================================== */
@media screen and (max-width: 992px) {
    /* About */
    .about-hero { flex-direction: column; text-align: center; padding: 60px 20px; }
    .about-hero h1::after { left: 50%; transform: translateX(-50%); }
    .about-hero-img { margin-top: 40px; }
    .circle-img-container { width: 350px; height: 350px; }
    .different-grid { flex-direction: column; gap: 20px; }
    .diff-item { padding: 30px; }
    
    /* Footer */
    .footer-container { grid-template-columns: 1fr 1fr; }
    
    /* Slider */
    .exact-slider-section { height: auto; padding: 60px 0; }
    .exact-slide { position: relative; flex-direction: column; text-align: center; opacity: 0; display: none; background-position: center; }
    .exact-slide.active { display: flex; opacity: 1; }
    .slider-overlay { background: rgba(250, 251, 252, 0.85); } 
    .exact-slide-text { padding: 0 8%; max-width: 100%; transform: none; margin-bottom: 30px; }
    .slider-bullets { justify-content: center; flex-wrap: wrap; }
    .exact-arrow { height: 40px; width: 40px; top: auto; bottom: 10px; transform: none; }
    .arrow-left { left: 35%; }
    .arrow-right { right: 35%; }
}

@media screen and (max-width: 768px) {
    /* Header/Nav */
    .top-bar { flex-direction: column; text-align: center; padding: 15px; gap: 10px; }
    .top-bar span { display: none; }
    .main-nav { flex-direction: column; padding: 20px; gap: 20px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    
    /* Services & Stats */
    .services-header .main-heading { font-size: 36px; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 15px; }
    .premium-service-card { min-height: 200px; padding: 25px 15px; }
    .premium-service-card i { font-size: 40px; margin-bottom: 15px; }
    .premium-service-card h3 { font-size: 16px; }
    .stats-grid { flex-direction: column; gap: 20px; }
    
    /* Contact */
    .contact-layout { padding: 0 20px; }
    .contact-left, .contact-right { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 0; }
    
    /* Social Sidebar */
    .social-sidebar { top: auto; bottom: 0; left: 0; flex-direction: row; width: 100%; transform: none; gap: 0;}
    .social-sidebar a { flex: 1; height: 50px; border-radius: 0; }
    .social-sidebar a:hover { width: auto; font-size: 20px; padding: 0; }
    
    /* Footer */
    .footer-container { grid-template-columns: 1fr; padding: 0 30px 50px; }
    .footer-bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
    .legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .legal-links a { margin: 0 5px; }
}