/* ========================================
   style.css - HUECTECH METALLIC BLUE THEME
   Realistic Fluffy Clouds · Premium Cards
   ======================================== */

/* ----- Google Font ----- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ----- Variables ----- */
:root {
    --bg-deep: #0b121f;
    --bg-soft: #162335;
    --bg-card: rgba(25, 40, 60, 0.8);
    --bg-card-hover: rgba(35, 55, 80, 0.95);
    --text-light: #e8f0fe;
    --text-muted: #b0c8e0;
    --accent-1: #3a7bd5;
    --accent-2: #5f9eff;
    --accent-3: #8ab9ff;
    --gradient-metallic: linear-gradient(145deg, #3a7bd5, #5f9eff, #8ab9ff);
    --cloud-base: rgba(220, 240, 255, 0.3);
    --cloud-highlight: rgba(255, 255, 255, 0.5);
    --cloud-shadow: rgba(130, 170, 230, 0.25);
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.7);
    --glow-blue: 0 0 30px rgba(90, 160, 255, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ========== CLOUDS (realistic, fluffy) ========== */
.clouds-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 40%, #132130, #050a14);
}

.cloud {
    position: absolute;
    filter: blur(4px);
    animation: moveClouds linear infinite;
}

.cloud-piece {
    position: absolute;
    background: var(--cloud-base);
    border-radius: 60% 40% 50% 50%;
    box-shadow: 0 15px 30px var(--cloud-shadow),
                inset 15px 15px 40px var(--cloud-highlight);
    backdrop-filter: blur(2px);
}

/* Cloud 1 */
.cloud-1 { top: 5%; left: -600px; width: 700px; height: 260px; animation-duration: 280s; }
.cloud-1 .piece-1 { width: 320px; height: 220px; top: 0; left: 0; }
.cloud-1 .piece-2 { width: 300px; height: 240px; top: -40px; left: 180px; background: var(--cloud-highlight); }
.cloud-1 .piece-3 { width: 280px; height: 200px; top: 10px; left: 350px; }
.cloud-1 .piece-4 { width: 220px; height: 170px; top: 40px; left: 480px; background: var(--cloud-shadow); }

/* Cloud 2 */
.cloud-2 { top: 25%; left: -800px; width: 900px; height: 300px; animation-duration: 320s; }
.cloud-2 .piece-1 { width: 400px; height: 250px; top: 0; left: 0; }
.cloud-2 .piece-2 { width: 380px; height: 280px; top: -50px; left: 220px; background: var(--cloud-highlight); }
.cloud-2 .piece-3 { width: 350px; height: 230px; top: 10px; left: 430px; }
.cloud-2 .piece-4 { width: 300px; height: 200px; top: 40px; left: 620px; background: var(--cloud-shadow); }
.cloud-2 .piece-5 { width: 220px; height: 160px; top: 80px; left: 750px; }

/* Cloud 3 */
.cloud-3 { top: 45%; left: -700px; width: 800px; height: 280px; animation-duration: 300s; }
.cloud-3 .piece-1 { width: 360px; height: 230px; top: 0; left: 0; }
.cloud-3 .piece-2 { width: 340px; height: 250px; top: -40px; left: 200px; background: var(--cloud-highlight); }
.cloud-3 .piece-3 { width: 300px; height: 210px; top: 20px; left: 390px; }
.cloud-3 .piece-4 { width: 250px; height: 180px; top: 50px; left: 540px; background: var(--cloud-shadow); }

/* Cloud 4 */
.cloud-4 { top: 65%; left: -900px; width: 950px; height: 300px; animation-duration: 350s; }
.cloud-4 .piece-1 { width: 420px; height: 260px; top: 0; left: 0; }
.cloud-4 .piece-2 { width: 400px; height: 280px; top: -50px; left: 240px; background: var(--cloud-highlight); }
.cloud-4 .piece-3 { width: 360px; height: 240px; top: 10px; left: 460px; }
.cloud-4 .piece-4 { width: 300px; height: 200px; top: 50px; left: 650px; background: var(--cloud-shadow); }
.cloud-4 .piece-5 { width: 220px; height: 150px; top: 90px; left: 800px; }

/* Cloud 5 */
.cloud-5 { top: 85%; left: -500px; width: 600px; height: 200px; animation-duration: 250s; }
.cloud-5 .piece-1 { width: 280px; height: 170px; top: 0; left: 0; }
.cloud-5 .piece-2 { width: 250px; height: 190px; top: -30px; left: 140px; background: var(--cloud-highlight); }
.cloud-5 .piece-3 { width: 220px; height: 150px; top: 10px; left: 300px; }
.cloud-5 .piece-4 { width: 170px; height: 120px; top: 40px; left: 400px; background: var(--cloud-shadow); }

@keyframes moveClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(2000px); }
}

/* Floating particles */
.particles {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(130, 190, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* ========== CONTAINER & LAYOUT ========== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 10; }
section { padding: 100px 0; position: relative; z-index: 10; }

/* ========== METALLIC TYPOGRAPHY ========== */
h1, h2, h3, h4, .section-title, .logo, .footer-col h4 {
    background: var(--gradient-metallic);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-weight: 700; line-height: 1.2;
}
h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
.section-title {
    position: relative; display: inline-block; margin-bottom: 20px;
}
.section-title::after {
    content: ''; position: absolute; bottom: -12px; left: 0;
    width: 80px; height: 4px; background: var(--gradient-metallic); border-radius: 4px;
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 700px; margin: 0 auto 60px; line-height: 1.8; text-align: center;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(10, 20, 35, 0.8); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(90, 160, 255, 0.2); padding: 0 40px;
}
.nav-container {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.logo { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 35px; align-items: center; list-style: none; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 2px; background: var(--gradient-metallic); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-content {
    position: absolute; top: calc(100% + 15px); left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(20, 35, 55, 0.95); backdrop-filter: blur(16px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 16px;
    padding: 10px 0; min-width: 240px;
    opacity: 0; visibility: hidden; transition: all 0.3s;
    box-shadow: var(--shadow-md);
}
.dropdown:hover .dropdown-content {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(5px);
}
.dropdown-content a {
    padding: 10px 20px; display: block; color: var(--text-muted);
}
.dropdown-content a:hover {
    background: rgba(90, 160, 255, 0.15); color: var(--text-light); padding-left: 30px;
}
.nav-btn {
    background: var(--gradient-metallic); color: white !important;
    padding: 10px 28px !important; border-radius: 40px; font-weight: 600;
    box-shadow: 0 8px 20px rgba(30, 70, 150, 0.4); transition: all 0.3s;
}
.nav-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(90, 160, 255, 0.5); }
.nav-btn::after { display: none; }

/* ========== HERO SECTION ========== */
.hero { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 60px; align-items: center; }
.hero-content { animation: fadeInUp 1s ease; }
.hero-content h1 { font-size: 4.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero-content h1 span { display: block; background: var(--gradient-metallic); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 35px; max-width: 550px; }
.hero-buttons { display: flex; gap: 20px; }
.btn-primary {
    background: var(--gradient-metallic); color: white; padding: 14px 38px; border-radius: 50px;
    text-decoration: none; font-weight: 700; transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(30, 70, 150, 0.4);
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(90, 160, 255, 0.5); }
.btn-secondary {
    background: transparent; color: var(--text-light); padding: 14px 38px; border-radius: 50px;
    text-decoration: none; font-weight: 600; border: 2px solid rgba(90, 160, 255, 0.3); transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent-2); background: rgba(90, 160, 255, 0.1); transform: translateY(-3px); }
.hero-image { position: relative; animation: floatImage 6s infinite ease-in-out; }
.hero-image img { width: 100%; border-radius: 30px; box-shadow: var(--shadow-lg); border: 1px solid rgba(90, 160, 255, 0.2); }
@keyframes floatImage { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ========== SERVICE CARDS (used on index) ========== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}
.service-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 30px;
    padding: 40px 30px; transition: all 0.4s cubic-bezier(0.2,0.9,0.3,1);
    box-shadow: var(--shadow-sm);
    opacity: 0; transform: translateY(40px) scale(0.95);
    animation: cardPopIn 0.6s ease forwards;
}
.service-card:nth-child(1) { animation-delay:0.1s; }
.service-card:nth-child(2) { animation-delay:0.2s; }
.service-card:nth-child(3) { animation-delay:0.3s; }
.service-card:nth-child(4) { animation-delay:0.4s; }
.service-card:nth-child(5) { animation-delay:0.5s; }
.service-card:nth-child(6) { animation-delay:0.6s; }
@keyframes cardPopIn {
    0% { opacity:0; transform:translateY(40px) scale(0.95); }
    70% { opacity:1; transform:translateY(-5px) scale(1.02); }
    100% { opacity:1; transform:translateY(0) scale(1); }
}
.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: var(--bg-card-hover); border-color: var(--accent-2);
    box-shadow: var(--shadow-md), var(--glow-blue);
}
.service-icon {
    width: 80px; height: 80px; background: var(--gradient-metallic); border-radius: 20px;
    display: flex; align-items: center; justify-content: center; font-size: 36px;
    color: white; margin-bottom: 25px; transition: all 0.4s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-light); }
.service-card p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.7; }
.service-card a { color: var(--accent-2); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.service-card a:hover { gap: 15px; color: var(--text-light); }

/* ========== FEATURE CARDS (used on service pages) ========== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 60px 0;
}
.feature-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 20px;
    padding: 40px 30px; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-10px); border-color: var(--accent-2);
    box-shadow: var(--shadow-md), var(--glow-blue);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-light); }
.feature-card p { color: var(--text-muted); line-height: 1.6; }

/* ========== ACHIEVEMENT CARDS ========== */
.achievement-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; margin-top: 50px;
}
.achievement-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 24px;
    padding: 40px 20px; text-align: center; transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    opacity: 0; transform: scale(0.9); animation: scaleIn 0.6s ease forwards;
}
.achievement-card:nth-child(1) { animation-delay:0.1s; }
.achievement-card:nth-child(2) { animation-delay:0.2s; }
.achievement-card:nth-child(3) { animation-delay:0.3s; }
.achievement-card:nth-child(4) { animation-delay:0.4s; }
.achievement-card:nth-child(5) { animation-delay:0.5s; }
@keyframes scaleIn { to { opacity:1; transform:scale(1); } }
.achievement-card:hover {
    transform: translateY(-10px) scale(1.05); border-color: var(--accent-2);
    box-shadow: var(--shadow-md), var(--glow-blue);
}
.achievement-card h3 {
    font-size: 3rem; font-weight: 800; margin-bottom: 10px;
    background: var(--gradient-metallic); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.achievement-card p { color: var(--text-muted); font-weight: 600; }

/* ========== JOB CARDS ========== */
.jobs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px;
}
.job-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 24px;
    padding: 35px 30px; transition: all 0.4s cubic-bezier(0.2,0.9,0.3,1);
    box-shadow: var(--shadow-sm);
    opacity: 0; transform: translateX(-30px); animation: slideInLeft 0.6s ease forwards;
    position: relative; overflow: hidden;
}
.job-card:nth-child(1) { animation-delay:0.1s; }
.job-card:nth-child(2) { animation-delay:0.2s; }
.job-card:nth-child(3) { animation-delay:0.3s; }
.job-card:nth-child(4) { animation-delay:0.4s; }
.job-card:nth-child(5) { animation-delay:0.5s; }
.job-card:nth-child(6) { animation-delay:0.6s; }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
.job-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: var(--bg-card-hover); border-color: var(--accent-2);
    box-shadow: var(--shadow-lg), var(--glow-blue);
}
.job-card::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(120deg, transparent, rgba(90,160,255,0.2), transparent);
    transform: translateX(-100%); transition: transform 0.6s;
}
.job-card:hover::before { transform: translateX(100%); }
.job-card h3 { font-size:1.4rem; margin-bottom:10px; color:var(--text-light); transition:color 0.3s; }
.job-card:hover h3 { color:var(--accent-2); }
.job-card p { color:var(--text-muted); margin-bottom:8px; font-size:0.95rem; }
.job-card .skills {
    display: block; color:var(--accent-2); margin:20px 0; font-weight:600;
    padding:10px 0; border-top:1px dashed rgba(90,160,255,0.3);
    border-bottom:1px dashed rgba(90,160,255,0.3); transition:all 0.3s;
}
.job-card:hover .skills { border-color:var(--accent-2); letter-spacing:0.5px; }
.job-card .apply-btn {
    display: inline-block; background:transparent; color:var(--accent-2);
    border:2px solid var(--accent-2); padding:10px 24px; border-radius:40px;
    text-decoration:none; font-weight:600; transition:all 0.3s;
    position: relative; overflow: hidden; z-index:1;
}
.job-card .apply-btn::before {
    content: ''; position: absolute; top:0; left:-100%; width:100%; height:100%;
    background: var(--gradient-metallic); transition:left 0.3s; z-index:-1;
}
.job-card .apply-btn:hover { color:white; border-color:transparent; transform:translateY(-3px); box-shadow:0 10px 20px rgba(90,160,255,0.3); }
.job-card .apply-btn:hover::before { left:0; }

/* ========== PARTNERS STRIP ========== */
.partners-strip {
    background: rgba(10,20,35,0.5); backdrop-filter:blur(10px);
    border-top:1px solid rgba(90,160,255,0.15); border-bottom:1px solid rgba(90,160,255,0.15);
    padding:60px 0; overflow:hidden;
}
.partners-wrapper {
    display: flex; align-items:center; gap:60px;
    animation: scrollPartners 30s linear infinite;
}
.partners-wrapper img {
    height:40px; filter:brightness(0) invert(0.6);
    transition:all 0.3s; opacity:0.7;
}
.partners-wrapper img:hover { filter:brightness(0) invert(1); opacity:1; transform:scale(1.1); }
@keyframes scrollPartners { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========== CONTACT FORM ========== */
.contact-form {
    max-width:700px; margin:0 auto;
    background:var(--bg-card); backdrop-filter:blur(10px);
    border:1px solid rgba(90,160,255,0.2); border-radius:30px;
    padding:50px; box-shadow:var(--shadow-md);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width:100%; padding:16px 20px;
    background:rgba(0,0,0,0.3); border:1px solid rgba(90,160,255,0.2);
    border-radius:16px; color:var(--text-light); font-size:1rem; transition:all 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline:none; border-color:var(--accent-2);
    background:rgba(90,160,255,0.1); box-shadow:0 0 0 4px rgba(90,160,255,0.15);
}
.contact-form button {
    width:100%; padding:18px; background:var(--gradient-metallic); color:white;
    border:none; border-radius:50px; font-weight:700; font-size:1.1rem;
    cursor:pointer; transition:all 0.3s; margin-top:20px;
}
.contact-form button:hover { transform:translateY(-3px); box-shadow:0 15px 30px rgba(90,160,255,0.4); }

/* ========== LOCATIONS ========== */
.locations-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}
.location-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 160, 255, 0.2); border-radius: 24px;
    padding: 40px 30px; text-align: center; transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    opacity: 0; transform: translateY(30px); animation: fadeUp 0.6s ease forwards;
}
.location-card:nth-child(1) { animation-delay:0.1s; }
.location-card:nth-child(2) { animation-delay:0.2s; }
.location-card:nth-child(3) { animation-delay:0.3s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.location-card:hover {
    transform: translateY(-10px) scale(1.05); border-color: var(--accent-2);
    box-shadow: var(--shadow-md), var(--glow-blue);
}
.location-icon { font-size: 3rem; margin-bottom: 20px; filter: drop-shadow(0 0 15px rgba(90,160,255,0.3)); }
.location-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-light); }
.location-card p { color: var(--text-muted); line-height: 1.7; }

/* ========== FOOTER ========== */
.footer {
    background: rgba(5,12,22,0.9); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(90,160,255,0.15); padding: 70px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 50px;
}
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; }
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px;
    transition: all 0.3s;
}
.footer-col a:hover {
    background: var(--gradient-metallic); -webkit-background-clip: text; background-clip: text;
    color: transparent; transform: translateX(5px);
}
.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid rgba(90,160,255,0.15);
    color: var(--text-muted); font-size: 0.9rem;
}

/* ========== SERVICE PAGES UTILITIES ========== */
.service-page { padding: 80px 0; min-height: 70vh; }
.service-header { text-align: center; margin-bottom: 60px; }
.service-header h1 { font-size: 3.5rem; margin-bottom: 20px; }
.service-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }
.back-button {
    display: inline-block; margin: 40px 0; padding: 12px 30px;
    background: var(--gradient-metallic); color: white; text-decoration: none;
    border-radius: 50px; font-weight: 600; transition: all 0.3s;
}
.back-button:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(90,160,255,0.4); }

/* ========== RESPONSIVE ========== */
@media (max-width:1200px) {
    .services-grid, .jobs-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
    .achievement-grid { grid-template-columns: repeat(3,1fr); }
    .hero .container { grid-template-columns:1fr; text-align:center; }
    .hero-content p { margin:0 auto 40px; }
    .hero-buttons { justify-content:center; }
}
@media (max-width:992px) {
    .navbar { padding:0 30px; }
    .nav-links { gap:25px; }
    .hero-content h1 { font-size:3rem; }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .container { padding:0 30px; }
    section { padding:70px 0; }
    .nav-links { display:none; } /* mobile menu would go here */
    .hero-content h1 { font-size:2.5rem; }
    .services-grid, .jobs-grid, .locations-grid, .achievement-grid,
    .footer-grid, .features-grid { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }
    .contact-form { padding:30px; }
}
@media (max-width:576px) {
    .container { padding:0 20px; }
    .hero-content h1 { font-size:2rem; }
    .hero-buttons { flex-direction:column; }
    .btn-primary, .btn-secondary { width:100%; text-align:center; }
    .partners-wrapper { gap:30px; }
    .partners-wrapper img { height:30px; }
}
/* ===== NAVBAR LOGO WITH BACKGROUND ICON ===== */

/* ===== CLEAN NAVBAR LOGO FIX ===== */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;        /* smaller size */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;      /* white text */
    letter-spacing: 1px;
}

.logo span {
    background: linear-gradient(90deg, #d4af37, #5f9eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* floating animation */
@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}