/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #061b42;
    color: white;
    font-size: 13px;
}

.top-bar-content {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: white;

    box-shadow: 0 3px 15px rgba(0,0,0,.10);
}

.nav-container {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo h2 {
    color: #082b68;
    font-size: 19px;
    line-height: 1.1;
}

.logo span {
    color: #e3a514;
    font-size: 12px;
    font-weight: bold;
}


/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 28px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: #222;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 30px 0;

    font-size: 15px;
    font-weight: 600;

    transition: .3s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: #e3a514;
}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 285px;

    background: white;

    list-style: none;

    border-radius: 0 0 8px 8px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;

    transition: .25s;
}


/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* DROPDOWN ITEMS */

.dropdown-menu li {
    border-bottom: 1px solid #e8e8e8;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;

    padding: 14px 20px;

    color: #333;

    background: #fff;

    font-size: 14px;

    transition: .25s;
}

.dropdown-menu a:hover {
    color: #ff5b00;

    background: #f5f5f5;

    padding-left: 27px;
}


/* =====================================================
   GET QUOTE
===================================================== */

.quote-btn {
    background: #e3a514 !important;

    color: #111 !important;

    padding: 11px 18px !important;

    border-radius: 6px;
}

.quote-btn:hover {
    background: #c78d0b !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-btn {
    display: none;

    background: #082b68;
    color: white;

    border: none;

    font-size: 22px;

    padding: 8px 12px;

    border-radius: 6px;

    cursor: pointer;
}


/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider {
    height: 840px;

    position: relative;

    overflow: hidden;

    background: #061b42;
}

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition: opacity .7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 36%; /* Bas dhyaan se ye ek line add karni hai */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(0,20,50,.90),
            rgba(0,20,50,.55),
            rgba(0,20,50,.15)
        );
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-tag {
    display: inline-block;

    background: #e3a514;

    color: #111;

    padding: 7px 15px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: bold;

    margin-bottom: 15px;
}

.hero-content h3 {
    font-size: clamp(30px,4vw,50px);

    line-height: 1.1;

    max-width: 600px;

    margin-bottom: 18px;
}

.hero-content p {
    max-width: 650px;

    font-size: 15px;

    margin-bottom: 25px;
}


/* =====================================================
   BUTTON
===================================================== */

.btn {
    display: inline-block;

    background: #e3a514;

    color: #111;

    padding: 12px 22px;

    border-radius: 7px;

    font-weight: bold;

    border: 2px solid #e3a514;

    transition: .3s;
}

.btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.btn-outline {
    background: transparent;

    color: white;

    border-color: white;

    margin-left: 7px;
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.2);

    color: white;

    font-size: 20px;

    cursor: pointer;

    z-index: 5;
}

.slider-arrow:hover {
    background: #e3a514;
    color: #111;
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}


/* =====================================================
   SLIDER DOTS
===================================================== */

.slider-dots {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 10;
}

.slider-dot {
    width: 11px;
    height: 11px;

    border: none;

    border-radius: 50%;

    background: white;

    opacity: .5;

    cursor: pointer;
}

.slider-dot.active {
    background: #e3a514;

    opacity: 1;
}

/* =====================================================
   SECTION
===================================================== */

.section {
    padding: 100px 0;
}

.light-bg {
    background: #f5f8fc;
}

.section-label {
    color: #e3a514;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;
}

.section-heading {
    text-align: center;

    margin-bottom: 40px;
}

.section-heading h3,
.two-column h3 {
    color: #082b68;

    font-size: 38px;

    line-height: 1.2;

    margin: 8px 0 15px;
}

.section-heading p {
    max-width: 600px;

    margin: auto;

    color: #687386;
}


/* =====================================================
   TWO COLUMN
===================================================== */

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.two-column p {
    color: #687386;

    margin-bottom: 15px;
}

.image-box {
    overflow: hidden;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.image-box img {
    width: 100%;

    min-height: 350px;

    object-fit: cover;
}

.motto {
    border-left: 5px solid #e3a514;

    background: #f5f8fc;

    color: #082b68;

    padding: 12px 18px;

    font-weight: bold;
}


/* =====================================================
   SERVICES
===================================================== */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}

.service-card {
    background: white;

    padding: 25px;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

    border: 1px solid #e7ebf1;

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #e3a514;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    background: #edf3ff;

    border-radius: 12px;

    font-size: 24px;

    margin-bottom: 15px;
}

.service-card h3 {
    color: #082b68;

    margin-bottom: 8px;
}

.service-card p {
    color: #687386;

    font-size: 14px;
}

.center-btn {
    text-align: center;

    margin-top: 35px;
}


/* =====================================================
   SERVICE DETAIL
===================================================== */

.service-detail-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 25px;
}

.service-detail {
    display: flex;

    gap: 20px;

    padding: 30px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    border-left: 5px solid #e3a514;

    scroll-margin-top: 100px;
}

.big-icon {
    min-width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    background: #edf3ff;

    border-radius: 12px;

    font-size: 28px;
}

.service-detail h2 {
    color: #082b68;

    margin-bottom: 8px;
}

.service-detail p {
    color: #687386;
}


/* =====================================================
   PAGE HEADER
===================================================== */

.page-header {
    background:
        linear-gradient(
            110deg,
            rgb(64, 64, 190)
        );

    padding: 75px 0;

    text-align: center;

    color: white;
}

.page-header h1 {
    font-size: 48px;

    margin-bottom: 8px;
}

.page-header p {
    opacity: .85;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    background: white;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    border-bottom: 4px solid transparent;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-bottom-color: #e3a514;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #edf3ff;
    color: #082b68;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.feature-card:hover .feature-icon {
    background: #082b68;
    color: white;
}

.feature-card h3 {
    color: #082b68;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #687386;
    font-size: 14.5px;
}

/* --- WHY CHOOSE US (RESPONSIVE) --- */

@media(max-width: 950px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.image-box {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.image-box img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 25px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 15px;

    background: white;

    box-shadow: 0 8px 25px rgba(0,0,0,.10);
}

.gallery-item img {
    width: 100%;

    height: 350px;

    object-fit: cover;

    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px;

    font-weight: bold;

    color: #082b68;

    background: white;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 30px;
}

.contact-info,
.contact-form {
    padding: 30px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    border: 1px solid #e7ebf1;
}

.contact-info h2,
.contact-form h2 {
    color: #082b68;

    margin: 8px 0 25px;
}

.contact-item {
    display: flex;

    gap: 15px;

    margin-bottom: 25px;
}

.contact-item > span {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    background: #edf3ff;

    border-radius: 10px;
}

.contact-item h3 {
    color: #082b68;

    font-size: 17px;
}

.contact-item p {
    color: #687386;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    font-weight: bold;

    margin-bottom: 6px;

    color: #27364d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #d8dee8;

    border-radius: 7px;

    outline: none;

    font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #082b68;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    background:
        linear-gradient(
            110deg,
            #082b68,
            #0c4c9b
        );

    color: white;

    text-align: center;

    padding: 55px 25px;

    border-radius: 20px;
}

.cta h2 {
    font-size: 38px;

    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 22px;

    color: #dbe7fb;
}
/* Container & Section Setup FOUNDER  */
.leadership-section {
    padding: 70px 0;
    background-color: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card Main Layout & Modern Shadow */
.leader-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 45px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Hover Effect */
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

/* Image Container */
.leader-img-box {
    flex: 0 0 380px; /* Fixed proportional width */
    height: 420px;    /* Sufficient height for portrait photos */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Photo Styling - Head Crop Fix */
.leader-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Prevents head cropping */
    transition: transform 0.5s ease;
}

/* Image Hover Zoom Effect */
.leader-card:hover .leader-img-box img {
    transform: scale(1.05);
}

/* Right Side Content */
.leader-info {
    flex: 1;
}

.leader-tag {
    color: #e3a514;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.leader-name {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 22px 0;
}

/* Quote Text */
.quote-box {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.quote-icon {
    color: #e3a514;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.quote-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Accent Signature Block */
.signature-box {
    border-left: 4px solid #e3a514;
    padding-left: 14px;
    margin-bottom: 28px;
}

.signature-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.signature-box p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #e3a514;
    font-weight: 600;
}

/* Pill Button */
.btn-readmore {
    display: inline-block;
    background-color: #0b1354;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(11, 19, 84, 0.2);
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: #e3a514;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

/* Responsive Handling */
@media (max-width: 950px) {
    .leader-card {
        flex-direction: column;
        gap: 30px;
    }
    .leader-img-box {
        flex: initial;
        width: 100%;
        height: 380px;
    }
}



/* =====================================================
   FOOTER STYLES
===================================================== */
.footer {
    background-color: #061b42; /* Dark blue background */
    color: #d1d5db;
    padding: 60px 0 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #e3a514; /* Gold accent */
}

/* About Column */
.footer-about p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-text {
    color: #e3a514;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #e3a514;
    color: #061b42;
    transform: translateY(-3px);
}

/* Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: #e3a514;
    font-size: 12px;
}

.footer-links a:hover {
    color: #e3a514;
    transform: translateX(5px); /* Hover par thoda aage khiskega */
}

/* Contact Info */
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: #e3a514;
    font-size: 18px;
    margin-top: 4px;
}

/* Copyright Bar */
.copyright {
    background-color: #03102a; /* Slightly darker shade */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}

.copyright strong {
    color: #ffffff;
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 950px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 950px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background: white;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li > a {
        padding: 15px 25px;

        border-bottom: 1px solid #eee;
    }


    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        transform: none;

        opacity: 1;

        visibility: visible;

        box-shadow: none;

        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 13px 40px;

        background: #f7f7f7;
    }

    .quote-btn {
        width: fit-content;

        margin: 10px 20px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        height: 70px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-slider {
        height: 620px;
    }

    .image-box img {
        min-height: 280px;
    }

    .leader-card {
        padding: 24px;
    }

    .mp-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

}


@media(max-width: 650px) {

    .top-bar-content {
        justify-content: center;

        flex-wrap: wrap;

        padding: 8px 0;
    }

    .hero-slider {
        height: 550px;
    }

    .section {
        padding: 45px 0;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .logo h2 {
        font-size: 16px;
    }

    .logo span {
        font-size: 10px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .service-detail {
        flex-direction: column;
        padding: 22px;
    }

    .image-box img {
        min-height: 220px;
    }

    .leader-name {
        font-size: 26px;
    }

    .leader-img-box {
        height: 300px;
    }

    .mp-intro-img {
        height: 260px;
    }

    .mp-cta-box,
    .cta {
        padding: 35px 20px;
        border-radius: 14px;
    }

    .cta h2,
    .mp-cta-box h2 {
        font-size: 26px;
    }

    .hero-content h3 {
        font-size: 30px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-content .btn,
    .hero-content .btn-outline {
        padding: 10px 16px;
        font-size: 14px;
    }

    .service-grid,
    .service-detail-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        display: block;
    }

    .team-card img {
        width: 100%;

        height: 330px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .section-heading h2,
    .two-column h2 {
        font-size: 30px;
    }

}


/* =====================================================
   EXTRA SMALL PHONES
===================================================== */

@media(max-width: 400px) {

    .container {
        padding: 0 16px;
    }

    .hero-slider {
        height: 480px;
    }

    .hero-content h3 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-content .btn,
    .hero-content .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin: 8px 0 0;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section {
        padding: 35px 0;
    }

    .logo h2 {
        font-size: 14px;
    }

    .logo span {
        display: none;
    }

    .page-header {
        padding: 55px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .leader-img-box,
    .mp-intro-img {
        height: 230px;
    }

    .leader-name {
        font-size: 22px;
    }

    .mp-card,
    .service-card,
    .feature-card {
        padding: 22px 16px;
    }

}

/* Page Header / Banner Fix */
.page-header {
    background: 
       rgb(63, 63, 151),
        url('/image/header-bg.jpg'); /* Silhouette/Header bg photo path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 17px;
    color: #f1f5f9;
}

/* Manpower Intro Section */
.mp-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.mp-intro-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mp-intro-text {
    flex: 1;
}

.mp-sub-tag {
    color: #f97316;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.mp-intro-text h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 15px;
}

.mp-intro-text p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mp-feature-list {
    list-style: none;
    padding: 0;
}

.mp-feature-list li {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-feature-list li i {
    color: #f97316;
    font-size: 18px;
}

/* Intro Image Hover Box */
.mp-intro-img {
    flex: 1;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mp-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.mp-intro-img:hover img {
    transform: scale(1.05);
}

/* Categories Section */
.mp-categories-section {
    padding: 70px 0;
    background-color: #f8fafc;
}

.mp-title-box {
    text-align: center;
    margin-bottom: 45px;
}

.mp-title-box h2 {
    font-size: 32px;
    color: #0f172a;
}

.mp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Category Card Styling */
.mp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.mp-icon {
    width: 65px;
    height: 65px;
    background-color: #fff7ed;
    color: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.mp-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
}

.mp-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Box */
.mp-cta-box {
    background: #e3a514;
    color: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin: 50px auto;
}

.mp-cta-box h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.mp-cta-box p {
    color: #cbd5e1;
    font-size: 16px;
    margin-bottom: 25px;
}

.mp-btn-cta {
    display: inline-block;
    background-color: navy;
    color: #ffffff;
    padding: 13px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: background 0.3s ease;
}

.mp-btn-cta:hover {
    background-color: #c7805a;
}

/* Responsive Fixes */
@media (max-width: 950px) {
    .mp-intro-grid {
        flex-direction: column;
    }
    .mp-intro-img {
        width: 100%;
    }
}
@media (max-width: 950px) {
    /* Jab dropdown par click hone ke baad .active class lagegi tab ye sub-menu dikhega */
    .dropdown.active .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        background-color: #f1f5f9;
        margin-top: 5px;
    }
}
@media (max-width: 950px) {
    /* Mobile me desktop ka hover transform cancel karna zaroori hai */
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
        position: static !important;
        transform: none !important; /* Ye line dropdown ko left bhagne se rokegi */
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        box-shadow: none !important;
        background-color: #f1f5f9 !important;
        margin-top: 5px !important;
    }

    /* Arrow icon par click hone wale bugs ko rokne ke liye */
    .dropdown-toggle i {
        pointer-events: none; 
    }
}