/* ===== GOOGLE FONTS ===== */
/* ===== GLOBAL RESET & VARIABLES ===== */
:root {
    --primary-orange: #f36f21;
    --brand-orange: #f97316;
    --orange-glow: rgba(243, 111, 33, 0.15);
    --primary-blue: #1e40af;
    --dark-bg: #0b0f1a;
    --dark-card: #111623;
    --dark-border: #1e2438;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-muted: #8892a4;
    --text-subtle: #5a6478;
    --text-dark: #1a1a1a;
    --header-bg: #ffffff;
    --bg-light: #f7f9fc;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--dark-bg); color: var(--text-light); line-height: 1.6; font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; -webkit-font-smoothing: antialiased; }
body.light-page { background-color: var(--bg-light); color: #2c3444; }
h1, h2, h3, h4, h5 { font-family: 'Outfit', 'Segoe UI', sans-serif; line-height: 1.2; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%; }

/* ===== HEADER ===== */
header { width: 100%; background-color: var(--header-bg); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 #e8edf5, 0 4px 20px rgba(0,0,0,0.06); }
nav { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo img { height: 60px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav-links a { text-decoration: none; color: #4a5568; font-size: 15px; font-weight: 500; transition: var(--transition); padding: 6px 14px; border-radius: 8px; font-family: 'DM Sans', sans-serif; }
.nav-links a.active { color: var(--primary-orange) !important; background: rgba(243,111,33,0.08); }
.nav-links a:hover { color: var(--primary-orange); background: rgba(243,111,33,0.06); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: #2c3444; border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: white; padding: 16px 24px 24px; border-top: 1px solid #e8edf5; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.mobile-nav a { display: block; padding: 12px 0; color: #4a5568; text-decoration: none; font-size: 16px; font-weight: 500; border-bottom: 1px solid #f0f4f8; transition: var(--transition); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary-orange); }
.mobile-nav .btn-orange { margin-top: 16px; text-align: center; border-radius: 8px; justify-content: center; }

/* ===== BUTTONS ===== */
.btn { padding: 11px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); font-size: 15px; font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; }
.btn-orange { background: linear-gradient(135deg, #f36f21, #f97316); color: white; box-shadow: 0 4px 14px rgba(243,111,33,0.3); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,111,33,0.4); }
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-outline-dark { border: 2px solid var(--primary-orange); color: var(--primary-orange); background: transparent; }
.btn-outline-dark:hover { background: var(--primary-orange); color: white; }
.btn-block { width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge { background: rgba(243,110,33,0.12); color: var(--primary-orange); padding: 5px 14px; border-radius: 30px; font-size: 11px; font-weight: 700; border: 1px solid rgba(243,111,33,0.3); letter-spacing: 1px; text-transform: uppercase; display: inline-block; }
.badge-alt { background: #e8f0ff; color: #3b5bdb; padding: 5px 14px; border-radius: 30px; font-size: 11px; font-weight: 700; display: inline-block; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== FOOTER ===== */
footer { background: #060910; padding: 80px 0 24px; border-top: 1px solid var(--dark-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
footer h4 { margin-bottom: 20px; font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Outfit', sans-serif; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a, .footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
footer ul li a:hover, .footer-contact a:hover { color: var(--primary-orange); }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.footer-brand .text-orange { color: var(--primary-orange); font-weight: 600; }
.footer-logo { height: 44px; margin-bottom: 14px; }
.footer-contact p { margin-bottom: 12px; font-size: 14px; }
.footer-contact i { color: var(--primary-orange); font-size: 15px; width: 18px; }
.social-icons { display: flex; gap: 8px; margin-top: 20px; }
.social-icons a { width: 36px; height: 36px; background: var(--dark-card); border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); border-radius: 8px; transition: var(--transition); font-size: 14px; }
.social-icons a:hover { background: var(--primary-orange); color: white; border-color: var(--primary-orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--dark-border); font-size: 13px; color: var(--text-subtle); }
.legal-links a { color: var(--text-subtle); text-decoration: none; margin-left: 20px; transition: var(--transition); font-size: 13px; }
.legal-links a:hover { color: var(--primary-orange); }

/* ===== HOME — HERO ===== */
.hero { position: relative; display: flex; align-items: center; background-image: url('/Images/Background.jpg'); background-size: cover; background-position: center; background-attachment: fixed; min-height: 88vh; padding: 80px 0 60px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,9,16,0.9) 0%, rgba(11,15,26,0.85) 60%, rgba(20,30,60,0.78) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 16px 0; line-height: 1.1; font-weight: 800; font-family: 'Outfit', sans-serif; }
.text-orange { color: var(--primary-orange); }
.hero-content > p { margin: 0 auto 32px; max-width: 580px; color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-bottom: 60px; }
.hero-industries-title { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--primary-orange); font-weight: 700; margin-bottom: 16px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; max-width: 960px; }
.stat-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); padding: 18px 20px; border-radius: var(--radius); display: flex; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.stat-icon { font-size: 22px; color: var(--primary-orange); min-width: 28px; }
.stat-info h3 { font-size: 16px; font-weight: 700; }
.stat-info p { margin: 0; font-size: 12px; color: var(--text-muted); }
.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5; }
.mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4); border-radius: 15px; position: relative; }
.mouse::before { content: ''; width: 3px; height: 7px; background: rgba(255,255,255,0.6); position: absolute; top: 6px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ===== HOME — SERVICES OVERVIEW ===== */
.home-services { padding: 100px 0; background: var(--dark-bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 10px 0 14px; font-weight: 800; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.light-page .section-header h2 { color: #1a2035; }
.light-page .section-header p { color: #6b7a99; }
.services-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-overview-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 36px 30px; transition: var(--transition); position: relative; overflow: hidden; }
.service-overview-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-orange), transparent); opacity: 0; transition: var(--transition); }
.service-overview-card:hover { border-color: rgba(243,111,33,0.3); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-overview-card:hover::before { opacity: 1; }
.svc-icon { width: 52px; height: 52px; background: var(--orange-glow); border: 1px solid rgba(243,111,33,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-orange); margin-bottom: 20px; }
.service-overview-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-overview-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.service-overview-card .learn-more { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-overview-card .learn-more:hover { gap: 10px; }

/* ===== HOME — WHY US ===== */
.why-section { padding: 100px 0; background: linear-gradient(180deg, var(--dark-bg), #0d1220); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.why-content > p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 16px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); transition: var(--transition); }
.why-feature:hover { border-color: rgba(243,111,33,0.25); }
.why-feature-icon { width: 40px; height: 40px; background: var(--orange-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-orange); font-size: 16px; flex-shrink: 0; }
.why-feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-feature-text p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.why-stat-card:hover { border-color: rgba(243,111,33,0.3); transform: translateY(-3px); }
.why-stat-number { font-size: 3rem; font-weight: 800; color: var(--primary-orange); font-family: 'Outfit', sans-serif; line-height: 1; display: block; margin-bottom: 8px; }
.why-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ===== HOME — INDUSTRIES ===== */
.industries-section { padding: 100px 0; background: var(--dark-bg); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 0; }
.industry-card { border: 1px solid var(--dark-border); border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.5); }
.industry-card:hover img { transform: scale(1.05); filter: brightness(0.35); }
.industry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,9,16,0.95) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.industry-icon { font-size: 26px; color: var(--primary-orange); margin-bottom: 6px; }
.industry-overlay h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.industry-overlay p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== HOME — PARTNERS ===== */
.partners-section { padding: 60px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.partners-label { text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--text-subtle); font-weight: 700; margin-bottom: 36px; }
.partners-track { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner-logo { height: 38px; width: auto; opacity: 0.45; filter: brightness(0) invert(1); transition: var(--transition); max-width: 120px; object-fit: contain; }
.partner-logo:hover { opacity: 0.8; }

/* ===== HOME — CTA ===== */
.home-cta { padding: 100px 0; background: linear-gradient(135deg, #0d1220, #111829); text-align: center; position: relative; overflow: hidden; }
.home-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(243,111,33,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.home-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; position: relative; }
.home-cta p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; position: relative; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ===== SERVICES PAGE ===== */
.services-header { text-align: center; padding: 80px 0 50px; }
.services-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #0b0f1a; margin-bottom: 12px; font-weight: 800; }
.subtitle { max-width: 680px; margin: 0 auto; color: #6b7a99; line-height: 1.7; font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 80px; }
.service-card { background: #ffffff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #e8edf5; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; height: 220px; width: 100%; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover .card-image img { transform: scale(1.05); }
.card-icon { position: absolute; bottom: 14px; left: 14px; background: linear-gradient(135deg, #f36f21, #f97316); color: white; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 17px; box-shadow: 0 4px 12px rgba(243,111,33,0.4); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.1rem; color: #1a2035; font-weight: 700; }
.card-body p { color: #6b7a99; font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.learn-more { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.learn-more:hover { gap: 10px; }
.vertical-stack { display: flex; flex-direction: column; }
.vertical-stack .card-body { order: -1; }
.vertical-stack .card-image { flex: 1; height: auto; min-height: 220px; width: 100%;}
.slideshow-container { position: relative; overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; position: relative; }
.slideshow-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: background 0.3s; }
.dot.active { background: var(--primary-orange); }
.cta-section { background: linear-gradient(135deg, #1a3db0, #1e40af); color: white; text-align: center; padding: 80px 0; }
.cta-section h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-section p { margin-bottom: 28px; color: rgba(255,255,255,0.75); }

/* ===== ABOUT PAGE ===== */
.about-flex { display: flex; align-items: center; gap: 60px; padding: 80px 0 60px; }
.about-content { flex: 1; }
.about-image { flex: 1; }
.about-content h1 { color: #1a2035; font-size: clamp(2rem, 3vw, 2.8rem); margin: 10px 0 6px; }
.about-content h2.subtitle-heading { color: var(--primary-orange); font-size: 1.05rem; font-weight: 600; margin-bottom: 20px; }
.about-content p { color: #6b7a99; font-size: 1rem; margin-bottom: 16px; line-height: 1.8; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.core-values { padding: 80px 0; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--bg-light); padding: 32px 26px; border-radius: var(--radius-lg); border: 1px solid #e8edf5; transition: var(--transition); border-top: 3px solid var(--primary-orange); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 24px; color: var(--primary-orange); margin-bottom: 12px; }
.value-card h4 { color: #1a2035; margin-bottom: 10px; font-size: 1rem; font-weight: 700; }
.value-card p { color: #6b7a99; font-size: 0.88rem; line-height: 1.65; margin: 0; }
.stats-bar { background: linear-gradient(rgba(10,13,25,0.96), rgba(10,13,25,0.96)), center/cover url('/Images/Evo.png'); padding: 70px 0; text-align: center; }
.stats-bar h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 50px; font-weight: 800; }
.stats-grid { display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 200px; padding: 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-size: 3.5rem; font-weight: 800; color: var(--primary-orange); font-family: 'Outfit', sans-serif; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 6px; display: block; }
.zigzag-details { padding: 80px 0; background: var(--bg-light); }
.zigzag-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.zigzag-row:last-child { margin-bottom: 0; }
.zigzag-row.row-reverse { flex-direction: row-reverse; }
.zigzag-image { flex: 1; width: 100%;}
.zigzag-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.zigzag-text { flex: 1; }
.zigzag-text h3 { font-size: 1.8rem; color: #1a2035; margin-bottom: 16px; font-weight: 800; }
.zigzag-text p { font-size: 1rem; line-height: 1.8; color: #6b7a99; }
.why-choose-section { padding: 60px 0; background: white; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.features-list li { display: flex; align-items: flex-start; gap: 14px; }
.features-list .feat-dot { width: 10px; height: 10px; background: var(--primary-orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.features-list strong { display: block; font-size: 15px; margin-bottom: 3px; color: #1a2035; }
.features-list p { font-size: 13px; color: #6b7a99; margin: 0; line-height: 1.6; }
.about-partners { padding: 80px 0; background: var(--bg-light); border-top: 1px solid #e8edf5; }
.partners-logo-grid { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; margin-top: 40px; }
.partners-logo-grid img { height: 40px; width: auto; max-width: 130px; object-fit: contain; opacity: 0.55; filter: grayscale(100%); transition: var(--transition); }
.partners-logo-grid img:hover { opacity: 1; filter: grayscale(0%); }

/* ===== CONTACT PAGE ===== */
.contact-page-header { text-align: center; padding: 80px 0 40px; }
.contact-page-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #1a2035; font-weight: 800; margin: 10px 0 12px; }
.contact-page-header p { color: #6b7a99; }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.info-card { background: white; border-radius: var(--radius-lg); padding: 28px 22px; border: 1px solid #e8edf5; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.info-icon { width: 52px; height: 52px; background: #fff0e6; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-orange); margin: 0 auto 14px; }
.info-card h4 { font-size: 15px; font-weight: 700; color: #1a2035; margin-bottom: 6px; }
.info-card p { color: #6b7a99; font-size: 14px; line-height: 1.55; margin-bottom: 4px; }
.info-card span { font-size: 12px; color: #9aa5ba; }
.info-card a { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 14px; }
.contact-main { display: grid; grid-template-columns: 1fr 360px; gap: 36px; padding-bottom: 80px; }
/* Swapping Sizes: Making the Map the primary focus and the Message section smaller */
.map-container {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow);
/* Increase height to match the former message section scale */
height: 600px;
width: 100%;
}
.map-container iframe {
display: block;
width: 100%;
height: 100%;
}
.message-section {
background: white;
border-radius: var(--radius-lg);
padding: 24px; /* Reduced padding for a smaller container */
border: 1px solid #e8edf5;
box-shadow: var(--shadow);
}
.message-section h3 {
font-size: 1.2rem; /* Slightly smaller heading */
color: #1a2035;
font-weight: 800;
margin-bottom: 6px;
}
.message-section > p {
color: #6b7a99;
font-size: 13px; /* Slightly smaller text */
margin-bottom: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #2c3444; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e0e7ef; border-radius: 10px; font-size: 14px; transition: var(--transition); font-family: 'DM Sans', sans-serif; background: #fafbfc; color: #1a2035; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-orange); box-shadow: 0 0 0 3px rgba(243,111,33,0.1); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* ===== TESTIMONIALS PAGE ===== */
/* Container for the Under Construction Image */
.construction-container {
    width: 100%;
    /* Adjust '200px' to the combined height of your header + footer */
    min-height: calc(100vh - 200px); 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa; /* Matches a clean construction site look */
    overflow: hidden;
    padding: 20px;
}

.construction-container img {
    width: 100%;
    max-width: 1200px; /* Prevents the image from becoming pixelated on huge screens */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain; /* Ensures the whole image is visible without cropping */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .construction-container {
        min-height: calc(100vh - 150px);
        padding: 10px;
    }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; }
    .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .zigzag-row, .zigzag-row.row-reverse { flex-direction: column; gap: 30px; }
    .zigzag-image { width: 100%; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hamburger { display: flex; }
    .nav-links { display: none; }
    nav > .btn { display: none; }
    h1 { font-size: 2.2rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-flex { flex-direction: column; text-align: center; }
    .services-overview-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .contact-sidebar { display: flex; flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .about-partners .partners-logo-grid { gap: 24px; }
}

@media (max-width: 576px) {
    .hero-stats { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .legal-links a { margin: 0 10px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
}

/* ===== BRANDED HORIZONTAL CHOOSE US ===== */
.horizontal-choose {
    background-color: var(--bg-light); /* Uses your existing light background variable */
    padding: 80px 0;
}

.horizontal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.choose-card {
    background: #ffffff;
    /* Uses your orange for the top border to match value-card style */
    border-top: 3px solid var(--primary-orange); 
    border-left: 1px solid #e8edf5;
    border-right: 1px solid #e8edf5;
    border-bottom: 1px solid #e8edf5;
    border-radius: var(--radius-lg);
    flex: 1 1 calc(25% - 24px);
    min-width: 260px;
    padding: 30px;
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choose-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.choose-header i {
    font-size: 1.2rem;
    color: var(--primary-orange); /* Branded Orange Icons */
}

.choose-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2035; /* Branded Dark Navy */
    margin: 0;
}

.choose-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6b7a99; /* Matching your existing paragraph gray */
    margin: 0;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 1024px) {
    .choose-card { flex: 1 1 calc(50% - 24px); }
}

@media (max-width: 600px) {
    .choose-card { flex: 1 1 100%; }
}

/* Add this to your CSS file */
.mobile-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    z-index: 99;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: flex;
}

/* If using light/dark mode */
body.light-page .mobile-nav {
    background: white;
}

body:not(.light-page) .mobile-nav {
    background: var(--dark-card);
    border-bottom: 1px solid var(--dark-border);
}

body:not(.light-page) .mobile-nav a {
    color: var(--text-light);
}

body:not(.light-page) .mobile-nav a:hover {
    color: var(--primary-orange);
}

/* Our Partners */
/* ===== OUR PARTNERS SECTION ===== */
.partners-slider {
    height: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* 70% transparent overlay on the background image */
    background: linear-gradient(rgba(10, 14, 24, 0.8), rgba(10, 14, 24, 0.8)), 
                url('/Images/OurPartner.jpg') no-repeat center center;
    background-size: cover;
}

.container-partners {
    width: 100%;
    overflow: hidden;
}

.partner-slider-track {
    display: flex;
    width: max-content;
    /* Use 'logoScroll' instead of 'scroll' to avoid mouse icon conflict */
    animation: logoScroll 30s linear infinite; 
}

/* Stops sliding when cursor hovers over any part of the slider */
.partners-slider:hover .partner-slider-track {
    animation-play-state: paused;
}

.partner-slide {
    width: 250px; /* Base width for calculation */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.partner-slide img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Removed grayscale so images are visible in color */
    filter: none; 
    transition: transform 0.3s ease;
}

.partner-slide img:hover {
    transform: scale(1.1); /* Slight pop on hover */
}

/* Animation renamed to logoScroll */
@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { 
        /* Moves by exactly half the total width (6 out of 12 logos) */
        transform: translateX(calc(-250px * 6)); 
    }
}

/* Ensure images show up even if background fails */
.partner-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
}