/* =========================================
   1. GLOBAL SETTINGS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --dark-blue: #0a192f;
    --primary-blue: #003366;
    --gold: #ffc107;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-dark: #333;
    --light-bg: #f9f9f9;
}

body {
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* =========================================
   2. TOP BAR
   ========================================= */
.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span { margin-right: 20px; }
.contact-info i, .social-icons i { color: var(--gold); margin-right: 5px; }
.social-icons a { color: #fff; margin-left: 15px; transition: 0.3s; }
.social-icons a:hover { color: var(--gold); }

/* =========================================
   3. HEADER & MENU
   ========================================= */
header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}
/* =========================================
   3.1. DROPDOWN MENU STYLES (New)
   ========================================= */

/* Parent Link (Services) */
.menu li {
    position: relative; /* Zaruri hai taaki baccha (dropdown) iske sath chipka rahe */
}

/* Dropdown Box (Jo chupa rahega) */
.dropdown-menu {
    display: none; /* By default gayab */
    position: absolute;
    top: 100%; /* Parent ke thik niche */
    left: 0;
    background: #fff;
    min-width: 220px; /* Thoda chauda */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
    border-top: 3px solid var(--gold);
}

/* Hover Karne Par Dikhega */
.menu li:hover .dropdown-menu {
    display: block;
    animation: slideUp 0.3s ease;
}

/* Dropdown ke Links */
.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333 !important; /* Black text */
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: var(--primary-blue) !important;
    padding-left: 25px; /* Hover par thoda aage khiskega */
}

/* Mobile Fix for Dropdown (Links dikhane ke liye) */
@media (max-width: 768px) {
    .menu li:hover .dropdown-menu {
        position: static; /* Mobile par list ke beech me aayega */
        box-shadow: none;
        border-top: none;
        background: rgba(255,255,255,0.05);
        display: block; /* Mobile par hamesha dikhaye ya click par */
    }
    .dropdown-menu li a { color: #fff !important; padding-left: 30px; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.logo h1 { color: #fff; font-size: 24px; font-weight: 700; }
.logo span { color: var(--gold); }

.menu { display: flex; list-style: none; }
.menu li { margin: 0 15px; }

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    opacity: 0.8;
    transition: 0.3s;
}
.menu a:hover, .menu a.active { opacity: 1; color: var(--gold); }

.badge {
    background: red;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    vertical-align: super;
}

.btn-login {
    background: #fff;
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.btn-login:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(255,255,255,0.5); }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text { flex: 1; color: #fff; padding-right: 50px; }

.tagline {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.hero-text h1 { font-size: 60px; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.gradient-text {
    background: linear-gradient(to right, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p { font-size: 18px; color: #ccc; margin-bottom: 30px; max-width: 500px; }

.btn-glow {
    text-decoration: none;
    background: linear-gradient(45deg, #ffc107, #ff8c00);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    margin-right: 15px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    display: inline-block;
}
.btn-outline {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: inline-block;
}
.btn-outline i { margin-right: 10px; background: #fff; color: #000; padding: 10px; border-radius: 50%; }

/* Floating Card */
.hero-card { flex: 1; display: flex; justify-content: flex-end; }
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.icon-box { font-size: 40px; color: var(--gold); margin-bottom: 10px; }
.glass-card h3 { font-size: 40px; margin-bottom: 5px; }
.avatars span {
    display: inline-block; width: 30px; height: 30px; background: #fff;
    color: #000; border-radius: 50%; line-height: 30px; margin-right: -10px; font-size: 12px;
}
.avatars small { margin-left: 15px; font-size: 12px; color: var(--gold); }

/* Wave Shape */
.custom-shape-divider-bottom-1680000000 {
    position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
}
.custom-shape-divider-bottom-1680000000 svg { position: relative; display: block; width: calc(100% + 1.3px); height: 100px; }
.custom-shape-divider-bottom-1680000000 .shape-fill { fill: #fff; }

/* =========================================
   5. CLIENT SLIDER
   ========================================= */
.clients-section { padding: 60px 0; background: #fff; text-align: center; overflow: hidden; }
.section-title p { color: var(--gold); letter-spacing: 2px; font-size: 14px; font-weight: 600; }
.section-title h2 { color: var(--dark-blue); font-size: 32px; margin-bottom: 40px; font-weight: 700; }
.slider { height: 100px; margin: auto; overflow: hidden; position: relative; width: 100%; }
.slide-track { display: flex; width: calc(250px * 10); animation: scroll 20s linear infinite; }
.slide { height: 100px; width: 250px; display: flex; align-items: center; justify-content: center; padding: 15px; }
.slide img { width: 100%; max-width: 150px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; mix-blend-mode: multiply; }
.slide img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }

/* =========================================
   6. ABOUT SECTION (Desktop View)
   ========================================= */
.about-section { padding: 80px 0; background-color: #f9f9f9; }
.about-container { display: flex; align-items: center; gap: 50px; }

.about-images { flex: 1; position: relative; height: 400px; }
.img-1 { width: 65%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: absolute; top: 0; left: 0; }
.img-2 { width: 55%; border-radius: 10px; border: 5px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.2); position: absolute; bottom: 0; right: 0; }
.exp-badge {
    background: var(--primary-blue); color: #fff; padding: 20px; border-radius: 10px;
    position: absolute; bottom: 30px; left: 10px; text-align: center;
    box-shadow: 0 5px 20px rgba(0,51,102,0.4); animation: float 4s ease-in-out infinite;
}
.exp-badge h3 { font-size: 30px; color: var(--gold); }

.about-text { flex: 1; }
.section-subtitle { color: var(--gold); font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; }
.about-text h2 { font-size: 36px; color: var(--dark-blue); margin-bottom: 20px; line-height: 1.2; }
.features-list { list-style: none; margin-bottom: 30px; }
.features-list li { margin-bottom: 10px; font-weight: 500; color: #333; }
.features-list i { color: var(--gold); margin-right: 10px; }
.stats-box { display: flex; gap: 30px; margin-bottom: 30px; border-top: 1px solid #ddd; padding-top: 20px; }
.stat h3 { font-size: 32px; color: var(--primary-blue); display: inline-block; }
.stat span { font-size: 32px; color: var(--gold); font-weight: 700; }

/* Entry Animation */
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.hero-text h1, .hero-text p, .hero-buttons { opacity: 0; animation: slideUp 1s ease-out forwards; }
.hero-text h1 { animation-delay: 0.2s; }
.hero-text p { animation-delay: 0.4s; }
.hero-buttons { animation-delay: 0.6s; }

/* =========================================
   7. MOBILE RESPONSIVE (Fixed Version)
   ========================================= */
   /* =========================================
   8. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* Grid System (Automatic Mobile Responsive) */
.services-grid {
    display: grid;
    /* Ye line Jadoo hai: Screen ke hisab se 3, 2 ya 1 box dikhayega */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Halka shadow */
    transition: 0.3s;
    border-bottom: 3px solid transparent; /* Niche line chupayi hui hai */
    position: relative;
    top: 0;
}

/* Hover Effect (Mouse lane par) */
.service-box:hover {
    transform: translateY(-10px); /* Box upar uthega */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--gold); /* Gold line dikhegi */
}

.service-box .icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-box:hover .icon {
    color: var(--gold); /* Icon gold ho jayega */
    transform: scale(1.1);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.read-more:hover i {
    margin-left: 10px; /* Teer aage badhega */
    color: var(--gold);
}
/* =========================================
   9. LATEST JOBS SECTION
   ========================================= */
.jobs-section {
    padding: 80px 0;
    background: #f4f6f8; /* Halka grey background separate dikhane ke liye */
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    position: relative; /* Badge ke liye */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Urgent Badge (Red color ka upar) */
.urgent-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: #ffebee;
    color: #d32f2f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite; /* Dhadakne wala effect */
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* Job Header (Flag + Title) */
.job-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.job-header .flag img {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.job-header h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.job-header p {
    font-size: 14px;
    color: #666;
}

/* Job Details (Salary, Food etc.) */
.job-details {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-details span {
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.job-details i {
    color: var(--gold);
    margin-right: 8px;
}

/* WhatsApp Button (Special Green) */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366; /* WhatsApp ka official color */
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E; /* Darker Green on hover */
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 18px;
    margin-right: 10px;
}

/* View All Button Center */
.view-all-btn {
    text-align: center;
    margin-top: 20px;
}
/* =========================================
   10. FOOTER SECTION
   ========================================= */
footer {
    background-color: #111; /* Almost Black */
    color: #fff;
    padding-top: 70px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    /* Automatic: Desktop par 4 column, Tablet par 2, Mobile par 1 */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}
.footer-logo span { color: var(--gold); }

.footer-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    height: 40px; width: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-col h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

/* Title ke niche choti gold line */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px; /* Hover par thoda aage khiskega */
}

/* Contact List Icons */
.contact-list i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 14px;
}

/* Copyright Bar */
.copyright {
    background: #000;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #222;
}
/* =========================================
   11. INNER PAGE HEADER (Chota Banner)
   ========================================= */
.page-header {
    height: 350px; /* Home page se chota */
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* MD Message Section */
.md-message-section { padding: 60px 0; background: #fff; }
.md-content { display: flex; align-items: center; gap: 50px; }
.md-img { flex: 1; }
.md-img img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left: 10px solid var(--gold); }
.md-text { flex: 1.5; }
.md-text h3 { color: var(--gold); margin-bottom: 10px; }
.md-text h2 { font-size: 32px; margin-bottom: 20px; color: var(--dark-blue); }
.signature { margin-top: 20px; width: 150px; opacity: 0.7; }

/* Mission Vision Cards */
.mission-section { padding: 60px 0; background: #f4f6f8; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.mission-box { background: #fff; padding: 40px; border-radius: 10px; text-align: center; transition: 0.3s; border-bottom: 3px solid transparent; }
.mission-box:hover { transform: translateY(-10px); border-bottom: 3px solid var(--gold); }
.mission-box i { font-size: 40px; color: var(--primary-blue); margin-bottom: 20px; }
.mission-box h3 { margin-bottom: 15px; color: var(--dark-blue); }

/* Certificate Section */
.cert-section { padding: 60px 0; text-align: center; }
.cert-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.cert-img { width: 200px; border: 1px solid #ddd; padding: 10px; border-radius: 5px; transition: 0.3s; }
.cert-img:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Inner Page Mobile Responsive */
@media (max-width: 768px) {
    .page-header h1 { font-size: 32px; }
    .md-content { flex-direction: column; }
    .md-img { width: 100%; }
    .md-text { width: 100%; text-align: center; }
    .md-img img { border-left: none; border-bottom: 10px solid var(--gold); }
}

/* =========================================
   14. SERVICES PAGE SPECIFIC
   ========================================= */

/* Industries Grid */
.industries-section { padding: 80px 0; background: #fff; text-align: center; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.industry-card img {
    width: 100%; 
    height: 220px; /* FIXED HEIGHT */
    object-fit: cover; /* CROP AND FIT */
    transition: 0.5s;
}

/* Hover par image zoom hogi */
.industry-card:hover img { transform: scale(1.1); }

/* Text image ke upar aayega */
.ind-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    padding: 20px;
    text-align: left;
}

.ind-content h3 { font-size: 20px; color: var(--gold); margin-bottom: 5px; }
.ind-content p { font-size: 13px; opacity: 0.9; }

/* Process Flow (Steps) */
.process-section { padding: 80px 0; background: #f4f6f8; text-align: center; }

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap; /* Mobile par tutne ke liye */
}

.step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    width: 220px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-blue);
}

.step-number {
    background: var(--gold);
    color: #000;
    width: 40px; height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 700;
    margin: -50px auto 20px; /* Box se upar nikalne ke liye */
}

.step h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark-blue); }
.step p { font-size: 13px; color: #666; }

.step-arrow { font-size: 24px; color: #ccc; }

/* Services Page Mobile Fix */
@media (max-width: 768px) {
    .process-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; } /* Teer niche ghum jayega */
    .step { width: 100%; margin-bottom: 20px; }
}
/* =========================================
   15. BRANCHES PAGE STYLES
   ========================================= */

/* Head Office Special Box */
.head-office-section { padding: 50px 0; }

.head-office-box {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.ho-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-gold {
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.ho-content h2 { font-size: 32px; color: var(--dark-blue); margin-bottom: 20px; }
.ho-content .address { font-size: 18px; color: #555; margin-bottom: 30px; line-height: 1.6; }
.ho-content .address i { color: var(--gold); margin-right: 10px; font-size: 24px; }

.ho-contacts { display: flex; gap: 20px; margin-bottom: 30px; }
.ho-contacts span { font-weight: 500; color: var(--dark-blue); }
.ho-contacts i { color: var(--primary-blue); margin-right: 5px; }

.ho-map { flex: 1; } /* Map aadha hissa lega */

/* Branches Grid */
.branches-section { padding: 50px 0; background: #f9f9f9; text-align: center; }

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.branch-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-left: 5px solid var(--primary-blue);
}

.branch-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-left: 5px solid var(--gold); }

.city-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.b-address { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.6; height: 80px; }

.b-contact { display: flex; justify-content: space-between; align-items: center; }
.b-contact a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--primary-blue); }
.map-link { color: var(--gold) !important; }
.b-contact a:hover { text-decoration: underline; }

/* Mobile Fix for Branches */
@media (max-width: 768px) {
    .head-office-box { flex-direction: column; }
    .ho-content { padding: 30px; }
    .ho-map iframe { height: 250px; }
    .ho-contacts { flex-direction: column; gap: 10px; }
}

/* =========================================
   12. CONTACT PAGE STYLES
   ========================================= */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Upar se align ho */
}

/* Left: Info Box */
.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.info-item {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.info-item .icon {
    width: 50px; height: 50px;
    background: #f4f6f8;
    color: var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-right: 20px;
    transition: 0.3s;
}

.info-item:hover .icon {
    background: var(--gold);
    color: #000;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: #666;
}

.social-links-contact { margin-top: 40px; }
.social-links-contact a {
    display: inline-block;
    height: 40px; width: 40px;
    background: var(--primary-blue);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s;
}
.social-links-contact a:hover { background: var(--gold); color: #000; }

/* Right: Form Box */
.contact-form-box {
    flex: 1.2; /* Thoda chauda */
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-box h3 { margin-bottom: 20px; color: var(--dark-blue); }

.contact-form-box input, .contact-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact-form-box input:focus, .contact-form-box textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.2);
}

.input-group {
    display: flex;
    gap: 20px;
}

.map-section iframe {
    filter: grayscale(20%); /* Map ko thoda classy grey look dene ke liye */
}

/* Contact Page Mobile Fix */
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .input-group { flex-direction: column; gap: 0; }
}

/* =========================================
   16. CLIENTS PAGE STYLES
   ========================================= */

.clients-intro {
    text-align: center;
    padding: 40px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-blue);
}

.client-category-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.bg-light { background-color: #f9f9f9; }

.category-title {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid var(--gold);
}

.category-title i { margin-right: 10px; color: var(--gold); }

.client-grid {
    display: grid;
    /* Responsive Grid: Jitni jagah hogi utne box aayenge */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.client-logo-box {
    background: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s;
}

.client-logo-box img {
    width: 100%;       /* Fill the width of the box */
    height: 100%;      /* Fill the height of the box */
    object-fit: contain; /* ✨ MAGIC LINE: Logo ko ratio maintain karke fit karega */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
    padding: 10px;     /* Breathing room */
}

/* Hover Effect: Color wapas aa jayega */
.client-logo-box:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.client-logo-box:hover img {
    filter: grayscale(0%); /* Original Color */
    opacity: 1;
}

/* Mobile Fix for Clients */
@media (max-width: 768px) {
    .client-grid { grid-template-columns: repeat(2, 1fr); } /* Mobile par 2 logo ek line me */
}
/* =========================================
   17. JOBS PAGE STYLES (Sidebar + Cards)
   ========================================= */

.jobs-listing-section { padding: 60px 0; background: #f4f6f8; }

.jobs-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* --- Left Sidebar --- */
.jobs-sidebar {
    flex: 1; /* Choti width */
    max-width: 300px;
}

.filter-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.filter-box h3 { font-size: 18px; margin-bottom: 20px; color: var(--dark-blue); border-bottom: 1px solid #eee; padding-bottom: 10px; }

.filter-group { margin-bottom: 20px; }
.filter-group label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 10px; }
.filter-group input[type="text"] {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; outline: none;
}

.checkbox-group label {
    display: flex; align-items: center; gap: 10px;
    font-weight: 400; font-size: 14px; color: #555;
    margin-bottom: 8px; cursor: pointer;
}

.upload-cv-box {
    background: var(--dark-blue);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}
.upload-cv-box h3 { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.upload-cv-box p { font-size: 13px; margin-bottom: 20px; opacity: 0.8; }
.btn-outline-dark {
    border: 1px solid #fff; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 5px; display: inline-block; transition: 0.3s;
}
.btn-outline-dark:hover { background: #fff; color: var(--dark-blue); }


/* --- Right Jobs List --- */
.jobs-list-container { flex: 3; /* Badi width */ }

.results-count { margin-bottom: 20px; font-size: 15px; color: #666; }

.job-list-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    transition: 0.3s;
    border-left: 5px solid transparent;
}

.job-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--gold);
}

.job-card-header { display: flex; align-items: center; margin-bottom: 15px; position: relative; }

.job-icon {
    width: 50px; height: 50px;
    background: #eef2f6; color: var(--primary-blue);
    border-radius: 50%;
    text-align: center; line-height: 50px; font-size: 20px;
    margin-right: 15px;
}

.job-info h3 { font-size: 20px; color: var(--dark-blue); margin-bottom: 3px; }
.job-info .company { font-size: 14px; color: #888; font-weight: 500; }

.urgent-tag {
    position: absolute; right: 0; top: 0;
    background: #ffebee; color: red;
    padding: 5px 10px; border-radius: 20px; font-size: 12px; font-weight: 700;
}

.job-meta {
    display: flex; gap: 20px; margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.job-meta span { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.job-meta i { color: var(--gold); }

.job-actions { display: flex; justify-content: flex-end; gap: 15px; align-items: center; }
.view-details { text-decoration: none; color: #666; font-size: 14px; font-weight: 600; }
.apply-wa {
    background: #25D366; color: #fff; text-decoration: none;
    padding: 10px 20px; border-radius: 5px; font-weight: 600; font-size: 14px;
    transition: 0.3s;
}
.apply-wa:hover { background: #128C7E; }

/* Pagination */
.pagination { margin-top: 30px; text-align: center; }
.pagination a {
    display: inline-block; padding: 10px 15px; border: 1px solid #ddd;
    margin: 0 5px; text-decoration: none; color: #333; border-radius: 5px;
}
.pagination a.active, .pagination a:hover { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

/* Mobile Fix for Jobs Page */
@media (max-width: 768px) {
    .jobs-layout { flex-direction: column; }
    .jobs-sidebar { width: 100%; max-width: 100%; }
    .jobs-list-container { width: 100%; }
    .job-meta { flex-wrap: wrap; gap: 10px; }
    .job-actions { flex-direction: column; width: 100%; }
    .apply-wa, .view-details { width: 100%; text-align: center; }
}
/* =========================================
   18. POLICY PAGE STYLES
   ========================================= */
.policy-section {
    padding: 60px 0;
    background: #fff;
}

.policy-container {
    max-width: 900px; /* Text zyada faila na ho, beech me rahe */
    margin: auto;
}

.policy-box {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.policy-box:last-child {
    border-bottom: none; /* Last wale ke niche line nahi chahiye */
}

.policy-box h2 {
    font-size: 26px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-box h2 i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 22px;
}

.policy-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-box ul {
    list-style: none;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-blue);
}

.policy-box ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Bullet Point ki jagah Arrow */
.policy-box ul li::before {
    content: '\f0da'; /* FontAwesome Arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .policy-box h2 { font-size: 22px; }
    .policy-box ul { padding: 15px; }
}
/* =========================================
   19. COPYRIGHT BAR UPDATE
   ========================================= */
.copyright {
    background: #000;
    padding: 15px 0;
    border-top: 1px solid #222;
    font-size: 13px;
}

.copyright-wrapper {
    display: flex;
    justify-content: space-between; /* Text Left, Link Right */
    align-items: center;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--gold); /* Hover par Gold hoga */
}

/* Mobile Fix: Ek ke niche ek aa jayenge */
@media (max-width: 768px) {
    .copyright-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .bottom-links a { margin: 0 10px; }
}
/* =========================================
   20. PREMIUM SERVICE PAGES STYLES
   ========================================= */

/* --- A. TIMELINE DESIGN (Recruitment Page) --- */
.timeline-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.timeline-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

/* Beech ki Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #f1f1f1;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-box {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-box::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left { left: 0; }
.timeline-right { left: 50%; }

.timeline-right::after { left: -10px; }

.content-card {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-blue);
    transition: 0.3s;
}

.content-card:hover { transform: scale(1.03); border-top-color: var(--gold); }
.content-card h2 { font-size: 20px; margin-bottom: 10px; color: var(--dark-blue); }
.content-card p { font-size: 14px; color: #666; line-height: 1.6; }
.step-number {
    position: absolute; top: -15px; right: 20px;
    background: var(--primary-blue); color: #fff;
    padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 12px;
}

/* --- B. MODERN GRID (Visa/Immigration Page) --- */
.service-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fancy-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

/* Hover Effect: Blue Background ayega */
.fancy-card:hover {
    background: var(--primary-blue);
    transform: translateY(-10px);
}

.fancy-card:hover h3, .fancy-card:hover p, .fancy-card:hover i {
    color: #fff;
}

.fancy-card i {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
    transition: 0.4s;
}

.fancy-card h3 { font-size: 22px; color: var(--dark-blue); margin-bottom: 15px; transition: 0.4s; }
.fancy-card p { color: #666; font-size: 15px; line-height: 1.7; transition: 0.4s; }

/* Mobile Fix for Timeline */
@media (max-width: 768px) {
    .timeline-container::after { left: 31px; }
    .timeline-box { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-right { left: 0; }
    .timeline-box::after { left: 21px; }
    .timeline-left::after { left: 21px; }
}
/* =========================================
   21. TICKETING PAGE STYLES (Boarding Pass)
   ========================================= */

/* Travel Intro */
.travel-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* The Ticket Look (Boarding Pass) */
.ticket-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    border: 1px solid #eee;
}

/* Left Side (Blue) */
.ticket-left {
    background: var(--primary-blue);
    width: 30%;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-right: 2px dashed rgba(255,255,255,0.3); /* Phadne wali line */
}

/* Katta hua circle (Top/Bottom) - Ticket effect */
.ticket-left::before, .ticket-left::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    background: #f9f9f9; /* Background color se match hona chahiye */
    border-radius: 50%;
    right: -15px;
}
.ticket-left::before { top: -15px; }
.ticket-left::after { bottom: -15px; }

.ticket-airline-logo i { font-size: 50px; margin-bottom: 10px; color: var(--gold); }
.ticket-class { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

/* Right Side (Details) */
.ticket-right {
    width: 70%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.route-city h2 { font-size: 32px; color: var(--dark-blue); margin: 0; }
.route-city p { font-size: 14px; color: #888; }

.plane-icon { color: var(--gold); font-size: 24px; transform: rotate(90deg); }

.ticket-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.meta-item h4 { font-size: 12px; color: #888; text-transform: uppercase; margin-bottom: 5px; }
.meta-item p { font-size: 16px; font-weight: 600; color: #333; }

/* Features Grid (Small Icons) */
.travel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.travel-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}
.travel-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.travel-card i { font-size: 30px; color: var(--primary-blue); margin-bottom: 15px; }
.travel-card h4 { font-size: 18px; color: var(--dark-blue); }

/* Mobile Fix */
@media (max-width: 768px) {
    .ticket-wrapper { flex-direction: column; }
    .ticket-left { width: 100%; border-right: none; border-bottom: 2px dashed rgba(255,255,255,0.3); }
    .ticket-right { width: 100%; }
    .ticket-left::before, .ticket-left::after { display: none; } /* Mobile par circle hata diya styling ke liye */
    .flight-route { text-align: center; }
    .plane-icon { transform: rotate(0deg); margin: 0 10px; }
}
/* =========================================
   22. GALLERY PAGE STYLES (Filter & Hover)
   ========================================= */

.gallery-section {
    padding: 60px 0;
    background: #fff;
}

/* --- 1. Filter Buttons --- */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
    border: 2px solid transparent; /* Border jagah banaye rakhega */
}

/* Hover aur Active state */
.filter-btn:hover, .filter-btn.active {
    color: var(--primary-blue);
    border-color: var(--gold);
    background: #f9f9f9;
}

/* --- 2. Gallery Grid --- */
.gallery-grid {
    display: grid;
    /* Responsive Grid */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Gallery Item Box */
.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    /* Animation ke liye zaruri hai */
    opacity: 1;
    transition: all 0.4s ease;
    transform: scale(1);
}

/* JS jab 'hide' class lagayega to ye hoga */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    display: none; /* Jagah bhi chod dega */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Photo pichkegi nahi */
    transition: 0.5s;
}

/* --- 3. Hover Overlay Effect --- */
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 47, 0.8); /* Dark Blue transparent layer */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Pehle chupa rahega */
    transition: 0.4s;
}

.overlay-text {
    text-align: center;
    color: #fff;
    transform: translateY(20px); /* Thoda niche se upar aayega */
    transition: 0.4s;
}

.overlay-text h4 { font-size: 20px; color: var(--gold); margin-bottom: 5px; }
.overlay-text p { font-size: 14px; }

/* Mouse lane par kya hoga */
.gallery-item:hover img { transform: scale(1.1); /* Image Zoom hogi */ }
.gallery-item:hover .overlay { opacity: 1; /* Overlay dikhega */ }
.gallery-item:hover .overlay-text { transform: translateY(0); /* Text upar aayega */ }
/* =========================================
   7. MOBILE RESPONSIVE (BULLETPROOF VERSION)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Global Containers */
    .container { width: 90%; margin: auto; }
    
    /* 2. Header & Menu */
    header { position: relative; background: var(--dark-blue); }
    .navbar { flex-direction: column; padding: 15px; background: transparent; border: none; }
    .logo { margin-bottom: 15px; }
    .menu { flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; }
    .menu li { margin: 5px 8px; }
    .btn-login { display: block; width: 100%; text-align: center; margin-top: 15px; }

    /* 3. Hero Section */
    .hero { min-height: auto; padding-top: 40px; padding-bottom: 80px; text-align: center; }
    .hero-container { flex-direction: column; }
    .hero-text { padding-right: 0; margin-bottom: 40px; }
    .hero-text h1 { font-size: 32px; line-height: 1.3; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn-glow, .btn-outline { margin: 0; width: 100%; }
    
    .hero-card { margin-top: 30px; justify-content: center; }
    .glass-card { width: 100%; padding: 25px; }

    /* 4. CLIENT SLIDER */
    .slide img { max-width: 100px; }

    /* 5. ABOUT SECTION (The Fix 🛠️) */
    .about-container { 
        flex-direction: column; 
    }

    /* Images Container: Hawa me nahi, Zameen par */
    .about-images { 
        width: 100%;
        height: auto !important; /* Height automatic hogi content ke hisab se */
        display: flex;
        flex-direction: column; /* Ek ke niche ek */
        align-items: center;
        gap: 20px; /* Images ke beech gap */
        margin-bottom: 40px;
    }

    /* Images ko simple rakho */
    .img-1, .img-2 {
        position: relative; /* Absolute hata diya */
        width: 100%;
        top: auto; left: auto; right: auto; bottom: auto; /* Reset position */
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Badge ko sabse niche lagao */
    .exp-badge {
        position: relative;
        bottom: auto; left: auto;
        width: 100%;
        margin-top: 10px;
        transform: none; /* Animation hata di mobile par stability ke liye */
        animation: none;
    }

    /* Text Section */
    .about-text { 
        width: 100%; 
        text-align: center; 
        padding-top: 10px;
    }

    .features-list { 
        text-align: left; 
        display: inline-block; 
        margin-top: 15px;
    }
    
    .stats-box { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 30px; 
    }
}