* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C41E3A;
    --dark-red: #8B0000;
    --light-red: #E63946;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --gold: #FFD700;
    --whatsapp-green: #25D366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}
/* Passport Status Section */
.passport-section {
    padding: 90px 20px;
    background: var(--white);
}

.search-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    border-top: 5px solid var(--primary-red);
}

.search-card .card-header {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.search-card .card-header i {
    font-size: 38px;
    color: var(--gold);
}

.search-card .card-header h2 {
    font-size: 24px;
    margin: 0;
}

.card-content {
    padding: 30px 30px 35px;
}

.language-toggle {
    display: inline-flex;
    border-radius: 40px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 18px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.25s ease;
}

.lang-btn.active {
    background: var(--primary-red);
    color: var(--white);
}

.title-container {
    margin-bottom: 20px;
}

.title-container p {
    font-size: 15px;
    color: var(--text-gray);
}

/* Floating label input */
.search-form .input-group {
    position: relative;
    margin-bottom: 20px;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 15px 16px 13px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    background: #fff;
    transition: all 0.25s ease;
}

.search-form input[type="text"]:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196,30,58,0.18);
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
}

.search-form input:not(:placeholder-shown) + .floating-label,
.search-form input:focus + .floating-label {
    top: 4px;
    font-size: 11px;
    color: var(--primary-red);
}

/* Submit button */
.submit-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-red);
    background: var(--gold);
    box-shadow: 0 10px 25px rgba(255,215,0,0.35);
    transition: all 0.25s ease;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(196,30,58,0.3);
}

/* Loader & not found */
.loader {
    display: none;
    margin: 15px auto 0;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.not-found {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff0f0;
    color: #b00020;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.65);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #ffffff;
    margin: auto;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
}

.modal-body {
    padding: 22px;
    background: #f3f4f6;
}

/* Modal inner content */
.poster-image {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.user-details {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 15px;
}

.user-photo {
    flex: 0 0 120px;
}

.passport-photo {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.user-info h3,
.user-info h4 {
    margin: 4px 0;
    color: var(--dark-gray);
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    font-weight: 800;
    color: rgba(180,0,0,0.07);
    pointer-events: none;
    text-transform: uppercase;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
}

.info-table td {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    vertical-align: top;
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.modal .close {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* Language visibility */
body.hi .en-text { display: none; }
body.en .hi-text { display: none; }

/* Responsive */
@media (max-width: 767px) {
    .user-details { flex-direction: column; align-items: flex-start; }
    .user-photo { flex: 0 0 auto; }
}

/* ================================================
   FLOATING ACTION BUTTONS
   ================================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.floating-btn.whatsapp { background: var(--whatsapp-green); }
.floating-btn.call     { background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%); }
.floating-btn:hover    { transform: scale(1.1); box-shadow: 0 6px 30px rgba(0,0,0,0.4); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
    50%       { box-shadow: 0 4px 30px rgba(255,215,0,0.6); }
}

/* ================================================
   MOBILE MENU BUTTON
   ================================================ */
.menu-toggle {
    display: none;
    background: var(--gold);
    border: none;
    color: var(--dark-red);
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.menu-toggle:hover { transform: scale(1.05); }

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
header {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

/* TOP BAR */
.top-bar {
    background: rgba(0,0,0,0.3);
    padding: 12px 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    max-height: 200px;
    overflow: hidden;
}
.top-bar.top-bar-hidden {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.contact-info {
    display: flex;
    gap: 35px;
    color: var(--white);
    font-size: 14px;
    flex-wrap: wrap;
}
.contact-info span { white-space: nowrap; }
.contact-info i    { margin-right: 8px; color: var(--gold); }

.social-top { display: flex; gap: 15px; }
.social-top a { color: var(--white); font-size: 16px; transition: all 0.3s ease; }
.social-top a:hover { color: var(--gold); transform: scale(1.2); }

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo          { display: flex; align-items: center; gap: 15px; }
.logo-content  { display: flex; flex-direction: column; }
.logo img      { height: 65px; width: auto; }
.logo h1       { color: var(--white); font-size: 26px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 3px; }
.logo-subtext  { font-size: 11px; color: rgba(255,255,255,0.9); line-height: 1.4; max-width: 400px; }
.license-number { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 2px; }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active        { color: var(--gold); }

/* ================================================
   PAGE BANNER (inner pages)
   ================================================ */
.page-banner {
    margin-top: 146px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: margin-top 0.4s ease;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    opacity: 0.4;
}
.page-banner h1 {
    font-size: 52px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}
.page-banner p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb { position: relative; z-index: 1; margin-top: 15px; }
.page-banner .breadcrumb a    { color: var(--gold); text-decoration: none; font-size: 15px; }
.page-banner .breadcrumb span { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0 8px; }

/* ================================================
   HERO SLIDER
   ================================================ */
.hero-slider {
    margin-top: 146px;
    position: relative;
    height: 1000px;
    overflow: hidden;
    transition: margin-top 0.4s ease;
}
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; }
.slide img, .slide video { width: 100%; height: 100%; object-fit: cover; }
.slide video { pointer-events: none; }

.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(118deg, rgb(255 230 230 / 45%) 0%, rgb(255 132 153 / 75%) 100%);
    display: flex; align-items: center; justify-content: center;
}
.slide-content { text-align: center; color: var(--white); max-width: 900px; padding: 0 20px; animation: fadeInUp 1.2s ease-out; }
.slide-content h2 { font-size: 62px; margin-bottom: 25px; font-weight: 700; text-shadow: 3px 3px 6px rgba(0,0,0,0.4); line-height: 1.2; }
.slide-content p  { font-size: 24px; margin-bottom: 35px; line-height: 1.8; }

.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-button {
    background: var(--gold);
    color: var(--dark-red);
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
.cta-button:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,215,0,0.5); }
.cta-button-outline { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 14px 43px; }
.cta-button-outline:hover { background: var(--white); color: var(--dark-red); }

.slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 15px; align-items: center; }
.slider-nav-btn {
    background: rgba(255,255,255,0.3);
    border: 2px solid var(--white);
    color: var(--white);
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease; font-size: 18px;
}
.slider-nav-btn:hover { background: var(--gold); color: var(--dark-red); border-color: var(--gold); transform: scale(1.1); }
.slider-dot { width: 15px; height: 15px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s ease; }
.slider-dot.active { background: var(--gold); transform: scale(1.4); }

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 70px 20px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.stats-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.stat-card {
    text-align: center; color: var(--white);
    padding: 30px 20px; border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.stat-card i  { font-size: 50px; color: var(--gold); margin-bottom: 20px; }
.stat-number  { font-size: 48px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.stat-label   { font-size: 18px; font-weight: 500; }

/* ================================================
   CONTAINER & SECTION TITLE
   ================================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; }

.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 {
    font-size: 46px; color: var(--dark-red);
    margin-bottom: 15px; position: relative;
    display: inline-block; font-weight: 700;
}
.section-title h2::after {
    content: ''; position: absolute;
    bottom: -12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 4px;
    background: var(--primary-red); border-radius: 2px;
}
.section-title p { font-size: 19px; color: var(--text-gray); margin-top: 30px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ================================================
   FOUNDER SECTION
   ================================================ */
.founder-section    { padding: 10px 20px; background: var(--light-gray); }
.founder-content    { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder-image      { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.founder-image img  { width: 100%; height: auto; object-fit: cover; }
.founder-message    { padding: 20px; }
.founder-message h3 { font-size: 36px; color: var(--dark-red); margin-bottom: 25px; }
.founder-message p  { font-size: 17px; line-height: 1.9; color: var(--text-gray); margin-bottom: 20px; }
.iqbal-quote {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 30px; border-radius: 15px; margin-top: 30px; border-left: 5px solid var(--gold);
}
.iqbal-quote p { color: var(--white); font-size: 20px; font-style: italic; text-align: center; line-height: 1.8; margin: 0; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section  { padding: 100px 20px; background: var(--white); }
.about-content  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text h3  { font-size: 36px; color: var(--dark-red); margin-bottom: 25px; }
.about-text p   { font-size: 17px; line-height: 1.9; color: var(--text-gray); margin-bottom: 20px; }
.about-image    { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.about-image img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.5s ease; }
.about-image:hover img { transform: scale(1.05); }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; margin-top: 50px; }
.about-card {
    background: var(--light-gray); padding: 45px 35px; border-radius: 20px;
    text-align: center; transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); border-top: 5px solid var(--primary-red);
}
.about-card:hover   { transform: translateY(-12px); box-shadow: 0 15px 40px rgba(196,30,58,0.25); border-top-color: var(--gold); }
.about-card i       { font-size: 55px; color: var(--primary-red); margin-bottom: 25px; transition: all 0.3s ease; }
.about-card:hover i { color: var(--gold); transform: rotateY(360deg); }
.about-card h3      { font-size: 24px; color: var(--dark-red); margin-bottom: 18px; }
.about-card p       { color: var(--text-gray); line-height: 1.8; font-size: 16px; }

/* ================================================
   RECRUITERS SECTION
   ================================================ */
.recruiters-section { padding: 100px 20px; background: var(--white); }
.recruiters-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; }
.recruiter-card {
    background: var(--white); padding: 30px 20px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    min-height: 120px; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease; border: 2px solid transparent; flex-direction: column;
}
.recruiter-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(196,30,58,0.2); border-color: var(--primary-red); }
.recruiter-card img   { max-width: 100%; max-height: 80px; object-fit: contain; }

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section { padding: 100px 20px; background: var(--light-gray); }
.services-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.service-card {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 55px 40px; border-radius: 25px; color: var(--white);
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    transition: all 0.6s ease;
}
.service-card:hover::before { top: -75%; right: -75%; }
.service-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 20px 50px rgba(196,30,58,0.4); }
.service-card i  { font-size: 60px; margin-bottom: 30px; color: var(--gold); position: relative; z-index: 1; }
.service-card h3 { font-size: 28px; margin-bottom: 20px; position: relative; z-index: 1; }
.service-card p  { font-size: 16px; line-height: 1.9; position: relative; z-index: 1; }

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.why-choose-section { padding: 100px 20px; background: var(--white); }
.why-choose-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.why-card {
    background: var(--light-gray); padding: 40px 30px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.3s ease;
    border-left: 5px solid var(--primary-red);
}
.why-card:hover { transform: translateX(10px); box-shadow: 0 15px 40px rgba(196,30,58,0.2); border-left-color: var(--gold); }
.why-card i  { font-size: 50px; color: var(--primary-red); margin-bottom: 20px; }
.why-card h3 { font-size: 24px; color: var(--dark-red); margin-bottom: 15px; }
.why-card p  { color: var(--text-gray); line-height: 1.8; font-size: 16px; }

/* ================================================
   INDUSTRIES SECTION
   ================================================ */
.industries-section { padding: 100px 20px; background: var(--light-gray); }
.industries-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; }
.industry-card {
    background: var(--white); padding: 40px 30px; border-radius: 20px;
    text-align: center; transition: all 0.3s ease; cursor: pointer;
}
.industry-card:hover { background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%); color: var(--white); transform: translateY(-10px); }
.industry-card i       { font-size: 55px; color: var(--primary-red); margin-bottom: 20px; transition: all 0.3s ease; }
.industry-card:hover i { color: var(--gold); }
.industry-card h3      { font-size: 22px; margin-bottom: 10px; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section  { padding: 100px 20px; background: var(--white); }
.process-timeline { max-width: 1200px; margin: 50px auto; position: relative; }
.process-timeline::before {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 100%; background: var(--primary-red);
}
.process-step { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; position: relative; }
.process-step:nth-child(even) .step-content { order: 2; }
.process-step:nth-child(even) .step-number  { order: 1; }
.step-content    { background: var(--light-gray); padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.step-content h3 { font-size: 26px; color: var(--dark-red); margin-bottom: 15px; }
.step-content p  { color: var(--text-gray); line-height: 1.8; }
.step-number     { display: flex; align-items: center; justify-content: center; position: relative; }
.step-circle {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 36px; font-weight: 700; color: var(--white);
    box-shadow: 0 10px 30px rgba(196,30,58,0.3); position: relative; z-index: 2;
}

/* ================================================
   COUNTRIES SECTION
   ================================================ */
.countries-section { padding: 100px 20px; background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%); position: relative; }
.countries-section .section-title h2,
.countries-section .section-title p { color: var(--white); }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; margin-top: 50px; }
.country-card {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    padding: 25px 20px; border-radius: 15px; text-align: center;
    color: var(--white); transition: all 0.3s ease; border: 2px solid rgba(255,255,255,0.2); overflow: hidden;
}
.country-card:hover { background: var(--white); color: var(--dark-red); transform: translateY(-10px); }
.country-flag    { width: 100%; height: 80px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.country-card h3 { font-size: 20px; font-weight: 600; }

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery-section { padding: 100px 20px; background: var(--light-gray); }
.gallery-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 50px; }
.gallery-item {
    position: relative; overflow: hidden; border-radius: 20px;
    height: 350px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; }
.gallery-item:hover img { transform: scale(1.2) rotate(2deg); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(139,0,0,0.9) 0%, rgba(196,30,58,0.85) 100%);
    opacity: 0; transition: all 0.4s ease;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i  { font-size: 55px; color: var(--white); margin-bottom: 15px; }
.gallery-overlay h4 { color: var(--white); font-size: 22px; }

/* ================================================
   CERTIFICATE SECTION
   ================================================ */
.certificate-section   { padding: 100px 20px; background: var(--white); }
.certificate-container {
    max-width: 900px; margin: 50px auto; background: var(--light-gray);
    padding: 50px 40px; border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15); text-align: center; border-top: 5px solid var(--primary-red);
}
.certificate-icon         { font-size: 70px; color: var(--primary-red); margin-bottom: 30px; }
.certificate-container h3 { font-size: 32px; color: var(--dark-red); margin-bottom: 20px; }
.certificate-container p  { font-size: 17px; color: var(--text-gray); margin-bottom: 35px; line-height: 1.8; }
.pdf-viewer {
    width: 100%; height: 600px;
    border: 3px solid var(--primary-red); border-radius: 15px;
    margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.view-pdf-btn {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: var(--white); padding: 16px 45px; text-decoration: none;
    border-radius: 50px; font-weight: 600; font-size: 18px;
    display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(196,30,58,0.4);
}
.view-pdf-btn:hover { background: var(--gold); color: var(--dark-red); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,215,0,0.5); }
.view-pdf-btn i     { margin-right: 10px; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px; opacity: 0.4;
}
.cta-banner h2 { font-size: 48px; color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-banner p  { font-size: 22px; color: var(--white); margin-bottom: 35px; position: relative; z-index: 1; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section { padding: 100px 20px; background: var(--light-gray); }
.contact-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.contact-card {
    background: var(--white); padding: 45px 35px; border-radius: 20px;
    text-align: center; border-left: 6px solid var(--primary-red);
    transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.contact-card:hover   { background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%); color: var(--white); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(196,30,58,0.3); }
.contact-card:hover i { color: var(--gold); transform: scale(1.1); }
.contact-card i       { font-size: 50px; color: var(--primary-red); margin-bottom: 25px; transition: all 0.3s ease; }
.contact-card h3      { font-size: 24px; margin-bottom: 18px; font-weight: 600; }
.contact-card p       { font-size: 16px; line-height: 1.9; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: linear-gradient(135deg, #1a0000 0%, var(--dark-red) 100%); color: var(--white); padding: 80px 30px 30px; }
.footer-content {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px; margin-bottom: 50px;
}
.footer-section h3 { font-size: 24px; margin-bottom: 25px; color: var(--gold); font-weight: 600; }
.footer-section p,
.footer-section a  { color: rgba(255,255,255,0.85); text-decoration: none; line-height: 2.2; display: block; transition: all 0.3s ease; font-size: 15px; }
.footer-section a:hover { color: var(--gold); padding-left: 8px; }

.social-links   { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.social-links a { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all 0.3s ease; padding: 0; }
.social-links a:hover { background: var(--gold); color: var(--dark-red); transform: translateY(-5px) rotate(360deg); }

.footer-bottom { background: linear-gradient(135deg, #3a0000, #6b0000); color: #f5f5f5; padding: 18px 12px; text-align: center; }
.footer-copy   { font-size: 13px; opacity: 0.85; margin-bottom: 10px; }
.footer-dev    { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 13px; opacity: 0.9; }
.footer-dev span { color: #ddd; }
.havi-brand    { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: #facc15; font-weight: 600; letter-spacing: 0.4px; transition: all 0.3s ease; }
.havi-brand img { height: 35px; width: auto; filter: drop-shadow(0 0 4px rgba(250,204,21,0.6)); }
.havi-brand:hover { color: #ffffff; transform: translateY(-1px); }

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: var(--white); border: none; border-radius: 50%; font-size: 24px;
    cursor: pointer; display: none; align-items: center; justify-content: center;
    box-shadow: 0 5px 20px rgba(196,30,58,0.4); z-index: 999; transition: all 0.3s ease;
}
.scroll-top:hover { background: var(--gold); color: var(--dark-red); transform: translateY(-5px); }
.scroll-top.show  { display: flex; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

@media (min-width: 1400px) {
    .container { max-width: 1600px; }
    .slide-content h2 { font-size: 68px; }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .container { padding: 0 25px; }
}

@media (max-width: 1199px) {
    .nav-links { gap: 25px; }
    .nav-links a { font-size: 15px; }
    .slide-content h2 { font-size: 52px; }
    .slide-content p  { font-size: 20px; }
    .section-title h2 { font-size: 40px; }
    .about-text h3    { font-size: 32px; }
}

@media (max-width: 1023px) {
    .process-timeline::before { left: 30px; }
    .process-step { grid-template-columns: 1fr; gap: 30px; }
    .process-step:nth-child(even) .step-content { order: 1; }
    .process-step:nth-child(even) .step-number  { order: 2; }
    .step-number { justify-content: flex-start; margin-left: 30px; }
    .about-content   { grid-template-columns: 1fr; }
    .founder-content { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
    .top-bar-content  { padding: 0 20px; }
    .contact-info     { gap: 20px; font-size: 13px; }
    nav               { padding: 15px 20px; }
    .logo h1          { font-size: 22px; }
    .logo-subtext     { font-size: 10px; }
    .logo img         { height: 55px; }
    .hero-slider      { height: 600px; }
    .slide-content h2 { font-size: 44px; }
    .section-title h2 { font-size: 36px; }
    .stat-number      { font-size: 42px; }
    .page-banner h1   { font-size: 40px; }
}

/* ── MOBILE (≤767px) ── */
@media (max-width: 767px) {
    /* Completely hide top-bar on mobile */
    .top-bar { display: none !important; }

    /* Mobile menu */
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--dark-red); flex-direction: column;
        padding: 20px; gap: 15px; display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .nav-links.active   { display: flex; }
    .nav-links a::after { display: none; }
    .nav-links li       { width: 100%; text-align: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

    .logo-subtext { display: none; }

    /* Page banner & slider sit directly under nav (no top-bar) */
    .page-banner  { margin-top: 85px !important; padding: 55px 20px 40px; }
    .hero-slider  { margin-top: 85px !important; height: 550px; }

    .page-banner h1 { font-size: 30px; line-height: 1.3; }
    .page-banner p  { font-size: 15px; margin-top: 8px; }
    .page-banner .breadcrumb { margin-top: 10px; font-size: 13px; }

    .slide-content h2 { font-size: 38px; }
    .section-title h2 { font-size: 32px; }
    .cta-buttons      { flex-direction: column; gap: 15px; }
    .cta-button, .cta-button-outline { width: 100%; max-width: 300px; }

    .stats-section { padding: 50px 15px; }

    .about-section, .founder-section, .recruiters-section,
    .services-section, .why-choose-section, .industries-section,
    .process-section, .countries-section, .gallery-section,
    .certificate-section, .contact-section { padding: 70px 15px; }

    .about-text h3, .founder-message h3 { font-size: 28px; }
    .about-grid, .services-grid, .why-choose-grid { grid-template-columns: 1fr; }
    .cta-banner h2 { font-size: 32px; }

    .process-timeline::before { display: none; }
    .step-number { margin-left: 0; justify-content: center; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 300px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 575px) {
    .logo h1          { font-size: 18px; }
    .logo img         { height: 45px; }
    .page-banner      { margin-top: 75px !important; padding: 50px 15px 35px; }
    .hero-slider      { margin-top: 75px !important; height: 500px; }
    .page-banner h1   { font-size: 26px; }
    .page-banner p    { font-size: 14px; }
    .slide-content h2 { font-size: 32px; }
    .section-title h2 { font-size: 28px; }
    .stats-container  { grid-template-columns: 1fr; }
    .industries-grid, .countries-grid, .recruiters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 479px) {
    .container    { padding: 0 15px; }
    nav           { padding: 10px 15px; }
    .logo h1      { font-size: 16px; }
    .logo img     { height: 40px; }
    .page-banner  { margin-top: 62px !important; padding: 45px 15px 30px; }
    .hero-slider  { margin-top: 92px !important; height: 450px; }
    .page-banner h1   { font-size: 22px; }
    .slide-content h2 { font-size: 28px; }
    .about-card, .service-card, .why-card,
    .industry-card, .contact-card { padding: 25px 20px; }
    .step-circle  { width: 70px; height: 70px; font-size: 26px; }
    .gallery-item { height: 250px; }
    .pdf-viewer   { height: 400px; }
    footer        { padding: 60px 15px 20px; }
}