=========================================================
   TOP BAR
========================================================= 
.top-bar {
    background: var(--navy-950);
    color: #cfd6ee;
    font-size: 13.5px;
    padding: 9px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 1200px;
}

.left-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info i {
    color: var(--amber-500);
    font-size: 13px;
}

.divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .18);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd6ee;
    font-size: 12.5px;
    transition: .25s;
}

.top-bar .social-icons a:hover {
    background: var(--amber-500);
    color: #fff;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-header {
    position: relative;
    overflow: hidden;
    padding: 20px 5% 58px;
    color: #fff;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(700px 380px at 88% -20%, rgba(255, 122, 41, .32), transparent 60%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
}

.page-header-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: auto;
}

.page-header .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 14px;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
}



/* =========================================================
   NAVBAR
========================================================= */
.navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 5%;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:220px;      /* apne hisaab se */
    height:60px;
    display:block;
}

/* .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--indigo-500), var(--navy-800));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
} */

/* .logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--navy-900);
    line-height: 1.1;
}

.logo-text em {
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-500);
} */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink-900);
    transition: .2s;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    background: rgba(54, 84, 255, .08);
    color: var(--indigo-600);
}

.nav-links>li>a i {
    font-size: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 230px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
    border-top: 3px solid var(--indigo-600);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
}

.dropdown-menu li a:hover {
    background: var(--cream-50);
    color: var(--indigo-600);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-900);
    color: #fff;
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: .25s;
    white-space: nowrap;
}

.call-btn:hover {
    background: var(--indigo-600);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy-900);
    cursor: pointer;
}

.home-btn{
    text-decoration:none;
    background:#2962ff;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.home-btn:hover{
    background:#0d47a1;
}
.top-bar{
    width:100%;
    background:#0b2a66;
    color:#fff;
    height:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:40 40px;
    margin-bottom:2px;
}

.left-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.info{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.info i{
    color:rgb(245, 241, 241);
    font-size:15px;
}

.divider{
    width:2px;
    height:20px;
    background:rgba(18, 5, 5, 0.3);
}

.social-icons{
    display:flex;
    gap:15px;
}

.top-bar .social-icons a{
    width:34px;
    height:34px;
    background:rgba(255,255,255,.15);

    border-radius:5px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:rgb(246, 243, 243);
    text-decoration:none;
    font-size:16px;

    transition:.3s;
}

.social-icons a:hover{
    background:#d70606;
    color:#0b2a66;
}
@media(max-width:767px){

    .top-bar{

        flex-direction:column;
        align-items:flex-start;
        gap:15px;

        padding:15px 20px;
    }

    .left-info{

        flex-direction:column;
        align-items:flex-start;
        width:100%;
        gap:12px;

    }

    .divider{
        display:none;
    }

    .info{
        font-size:14px;
    }

    .social-icons{

        width:100%;
        justify-content:center;

    }

}
/*====================================
        GALLERY SECTION
====================================*/

.gallery-section{
    width:100%;
    padding:20px 0;
    background:#fff;
}

/*====================================
        GALLERY HEADING
====================================*/

.gallery-heading{
    max-width:1200px;
    margin:0 auto 5px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 15px;
}

.gallery-line{
    flex:1;
    height:2px;
    background:#cfd8e6;
}

.gallery-title{
    position:relative;
    font-size:28px;
    font-weight:700;
    color:#0d2d74;
    text-transform:uppercase;
    white-space:nowrap;
    padding-bottom:15px;
}

.gallery-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:50px;
    height:4px;
    background:#e60000;
    border-radius:30px;
}

/*====================================
        GALLERY CONTAINER
====================================*/

.gallery-container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

/*====================================
        GALLERY CARD
====================================*/

.gallery-card{
    position:relative;
    height:175px;
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/*====================================
        IMAGE
====================================*/

.gallery-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card:hover .gallery-image{
    transform:scale(1.08);
}

/*====================================
        OVERLAY
====================================*/

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    background:#0d2d74;
    padding:14px 10px;
    text-align:center;
}

.gallery-card-title{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin:0;
    line-height:1.3;
}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:767px){

.gallery-container{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:767px){

.gallery-container{
    grid-template-columns:repeat(2,1fr);
}

.gallery-title{
    font-size:30px;
}

.gallery-card{
    height:170px;
}

.gallery-card-title{
    font-size:17px;
}

}

@media(max-width:767px){

.gallery-container{
    grid-template-columns:1fr;
}

.gallery-heading{
    gap:10px;
}

.gallery-title{
    font-size:26px;
}

.gallery-line{
    display:none;
}

}
/*====================================
      GALLERY INFO SECTION
====================================*/

.gallery-info-section{

    max-width:1400px;
    margin:45px auto 0;
    padding:35px 25px;

    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:18px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

/*====================================
        INFO BOX
====================================*/

.gallery-info-box{

    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:10px 15px;

}

.gallery-info-box:not(:last-child){

    border-right:1px solid #ececec;

}

/*====================================
          ICON
====================================*/

.gallery-info-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    flex-shrink:0;

}

.red-icon{

    color:#e60000;

}

.blue-icon{

    color:#dde1e9;

}

/*====================================
         CONTENT
====================================*/

.gallery-info-title{

    font-size:20px;
    color:#0d2d74;
    font-weight:700;
    line-height:1.35;
    margin-bottom:15px;

}

.gallery-info-text{

    font-size:16px;
    color:#0a0202;
    line-height:1.7;
    margin-bottom:22px;

}

/*====================================
          BUTTON
====================================*/

.gallery-info-btn{

    display:inline-block;

    text-decoration:none;

    padding:13px 28px;

    border-radius:6px;

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.red-btn{

    background:#e60000;

}

.blue-btn{

    background:#0d2d74;

}

.gallery-info-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 18px rgba(0,0,0,.15);

}

/*====================================
         RESPONSIVE
====================================*/

@media(max-width:767px){

.gallery-info-section{

grid-template-columns:1fr;

}

.gallery-info-box{

border-right:none !important;

border-bottom:1px solid #eee;

padding-bottom:25px;

}

.gallery-info-box:last-child{

border-bottom:none;

}

}

@media(max-width:767px){

.gallery-info-box{

flex-direction:column;
align-items:center;
text-align:center;

}

.gallery-info-icon{

font-size:38px;

}

.gallery-info-title{

font-size:18px;

}

}
/*====================================
        CONTACT SECTION
====================================*/

.contact-section{
    width:100%;
    padding:0px 0;
    background:#fff;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:280px .8fr 380px;
    gap:50px;
    border:1px solid #e8e8e8;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

/*====================================
        SECTION TITLES
====================================*/

.contact-title,
.contact-form-title,
.contact-location-title{
    font-size:26px;
    font-weight:700;
    color:#0d2d74;
    text-align:center;
    margin-bottom:15px;
}

/*====================================
        CONTACT INFO
====================================*/

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-bottom:8px;
}

.contact-icon{
    width:15px;
    height:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2962ff;
    font-size:18px;
    flex-shrink:0;
}

.contact-text span{
    font-size:18px;
    line-height:1;
    color:#222;
}

/* ==========================
   HR SUPPORT PAGE
========================== */

@media (max-width: 992px) {

    /* Hero */
    .ms-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ms-hero-visual img {
        width: 100%;
        max-width: 500px;
        margin: auto;
        display: block;
    }

    .sv-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* About */
    .hr-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hr-feature-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Triple Section */
    .cc-triple-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .sv-footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
}


@media (max-width:768px){

    /* Top Bar */

    .sv-topbar{
        display:none;
    }

    /* Hero */

    .ms-hero{
        padding:70px 0;
    }

    .ms-hero h1{
        font-size:34px;
        line-height:1.3;
    }

    .lead{
        font-size:16px;
    }

    .sv-hero-actions{
        flex-direction:column;
    }

    .sv-hero-actions .btn{
        width:100%;
        justify-content:center;
    }

    /* Feature */

    .hr-feature{
        width:100%;
    }

    /* Service */

    .hr-services-grid{
        grid-template-columns:1fr;
    }

    /* Strip */

    .hr-strip-grid{
        grid-template-columns:1fr;
    }

    /* CTA */

    .sv-cta-inner{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .cs-cta-actions{
        width:100%;
    }

    .cs-cta-actions .btn{
        width:100%;
    }

    /* Footer */

    .sv-footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}


@media (max-width:576px){

    .ms-hero h1{
        font-size:28px;
    }

    .cs-about-copy h2{
        font-size:28px;
    }

    .sv-section-head h2{
        font-size:28px;
    }

    .cc-panel-box{
        padding:22px;
    }

}

/*====================================
        SOCIAL ICONS
====================================*/

.contact-social{
    display:flex;
    gap:18px;
    margin-top:none;
}

.contact-social a{
    width:38px;
    height:38px;
    border-radius:10%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:.3s;
}

.contact-social a:nth-child(1){background:#1d4ed8;}
.contact-social a:nth-child(2){background:#d946ef;}
.contact-social a:nth-child(3){background:#0284c7;}
.contact-social a:nth-child(4){background:#dc2626;}

.contact-social a:hover{
    transform:translateY(-5px);
}

/*====================================
        CONTACT FORM
====================================*/

.contact-form-row{
    display:grid;
    grid-template-columns:.5fr .5fr;
    gap:28px;
    margin-bottom:8px;
    overflow:none;
}

.contact-input,
.contact-select{
    width:100%;
    height:36px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 8px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus{
    border-color:#2962ff;
}

.contact-textarea{
    width:100%;
    height:20px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:18px;
    font-size:16px;
    resize:none;
    outline:none;
    margin-bottom:20px;
}

.contact-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:8px;
    background:#e60000;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#0d2d74;
}

/*====================================
        MAP
====================================*/

.contact-map{
    position:relative;
    width:100%;
    height:180px;
    overflow:hidden;
    border-radius:5px;
}

.contact-map img{
    width:100%;
    height:70%;
    object-fit:cover;
    display:block;
}
/*====================================
      LOCATION ADDRESS CARD
====================================*/

.contact-location{
    position:relative;
}

.contact-location-card{

    position:absolute;

    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:270px;
    height:180px;

    background:#fff;

    padding:15px;

    border-radius:5px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.contact-location-card h3{

    color:#e60000;
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:18px;

}

.contact-location-card p{

    color:#333;
    font-size:18px;
    line-height:1.2;

}

/*====================================
      HOVER EFFECTS
====================================*/

.contact-container{

    transition:.35s;

}

.contact-container:hover{

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.contact-input:hover,
.contact-select:hover,
.contact-textarea:hover{

    border-color:#2962ff;

}

.contact-item:hover .contact-icon{

    transform:scale(1.15);

}

.contact-icon{

    transition:.3s;

}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(230,0,0,.25);

}

/*====================================
      RESPONSIVE
====================================*/

@media(max-width:767px){

.contact-container{

grid-template-columns:1fr;

}

.contact-info{

order:1;

}

.contact-form{

order:2;

}

.contact-location{

order:3;

}

.contact-map{

height:350px;

}

.contact-location-card{

left:50%;

transform:translateX(-50%);

}

}

@media(max-width:767px){

.contact-container{

padding:20px;

}

.contact-form-row{

grid-template-columns:1fr;

}

.contact-title,
.contact-form-title,
.contact-location-title{

font-size:30px;

}

.contact-map{

height:200px;

}

.contact-location-card{

position:absolute;

width:85%;

padding:18px;

}

.contact-location-card h3{

font-size:20px;

}

.contact-location-card p{

font-size:16px;

}

.contact-social{

justify-content:center;

}

}

@media(max-width:767px){

.contact-section{

padding:60px 15px;

}

.contact-container{

padding:18px;

gap:25px;

}

.contact-item{

gap:15px;

}

.contact-icon{

font-size:24px;

}

.contact-text span{

font-size:16px;

}

.contact-btn{

height:52px;

font-size:16px;

}

.contact-map{

height:260px;

}

.contact-location-card{

top:25px;

}

}
/* =========================================================

   APPLY MODAL — popup form (screenshot style)

========================================================= */

.apply-modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 1000;

    background: rgba(8, 24, 51, .55);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

}



.apply-modal-overlay.active {

    display: flex;

}



.apply-modal {

    position: relative;

    width: 100%;

    max-width: 640px;

    max-height: 90vh;

    overflow-y: auto;

    background: #E3F2FD;

    border-radius: 24px;

    padding: 40px 36px;

    box-shadow: 0 30px 70px rgba(0,0,0,.35);

    animation: applyModalPop .25s ease;

}



@keyframes applyModalPop {

    from { transform: scale(.92); opacity: 0; }

    to   { transform: scale(1); opacity: 1; }

}



.apply-modal-close {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 44px;

    height: 44px;

    border: none;

    border-radius: 10px;

    background: var(--indigo-600);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .2s;

}



.apply-modal-close:hover {

    background: var(--navy-900);

}



.apply-modal-logo {

    display: flex;

    justify-content: center;

    margin-bottom: 18px;

}



.apply-modal-logo img {

    width: 220px;

    height: auto;

}



.apply-modal-subtitle {

    text-align: center;

    font-size: 19px;

    color: var(--navy-900);

    font-weight: 500;

    margin-bottom: 26px;

}



.apply-modal-form {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.apply-modal-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

}



.apply-modal-field {

    display: flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    border-radius: 100px;

    padding: 14px 22px;

}



.apply-modal-field i {

    color: var(--indigo-600);

    font-size: 16px;

    flex-shrink: 0;

}



.apply-modal-field input,

.apply-modal-field select {

    border: none;

    outline: none;

    width: 100%;

    background: transparent;

    font-family: var(--font-body);

    font-size: 15px;

    color: var(--ink-900);

}



.apply-modal-message {

    border-radius: 20px;

    align-items: flex-start;

    padding: 16px 22px;

}



.apply-modal-message i {

    margin-top: 3px;

}



.apply-modal-message textarea {

    border: none;

    outline: none;

    width: 100%;

    resize: vertical;

    min-height: 24px;

    max-height: 140px;

    background: transparent;

    font-family: var(--font-body);

    font-size: 15px;

    color: var(--ink-900);

}



.apply-modal-agree {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14.5px;

    color: var(--ink-900);

    cursor: pointer;

}



.apply-modal-agree input {

    display: none;

}



.apply-modal-checkbox {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid var(--line);

    flex-shrink: 0;

    position: relative;

}



.apply-modal-agree input:checked + .apply-modal-checkbox::after {

    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    background: var(--indigo-600);

}



.apply-modal-agree a {

    color: var(--indigo-600);

    font-weight: 600;

}



.apply-modal-submit {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: none;

    background: var(--indigo-600);

    color: #fff;

    padding: 16px;

    border-radius: 100px;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;

}



.apply-modal-submit:hover {

    background: var(--navy-900);

}



/* ===================== RESPONSIVE ===================== */

@media (max-width: 600px) {

    .apply-modal {

        padding: 30px 20px;

        border-radius: 18px;

    }



    .apply-modal-row {

        grid-template-columns: 1fr;

    }



    .apply-modal-logo img {

        width: 170px;

    }



    .apply-modal-subtitle {

        font-size: 16px;

    }



    .apply-modal-field,

    .apply-modal-message {

        padding: 12px 18px;

    }

}
/* Mobile view me top bar hide */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}