/* ===========================
   COLOR VARIABLES & THEMING
   =========================== */
:root {
    --primary: #002855;
    --primary-light: #1a4d80;
    --primary-dark: #001a33;
    --gold: #d4af37;
    --gold-light: #e8c547;
    --accent: #0066cc;
    --accent-light: #e6f2ff;
    --white: #ffffff;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

/* ===========================
   COLOR UTILITY CLASSES
   =========================== */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-gold-light {
      background-color: rgba(212,175,55,0.15) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-accent-light {
    background-color: var(--accent-light) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-accent {
   color: hsl(43 65% 52%) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.border-gold {
    border: 4px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 2px;
    display: block;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar a {
    font-size:14px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--gold);
}

.navbar-light {
    background-color: var(--white) !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 1rem;
}

.nav-link-custom {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
}

.dropdown-item {
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}
/* ===== MOBILE TOPBAR FIX ===== */
/* ===== FINAL TOPBAR MOBILE FIX ===== */
@media (max-width:576px){

    /* bootstrap grid ko ignore karo */
    .top-bar .row{
        display:flex !important;
        flex-wrap:nowrap !important;
        align-items:center !important;
        justify-content:space-between !important;
    }

    /* columns shrink ho jaye */
    .top-bar .col-12{
        flex:0 0 auto !important;
        width:auto !important;
        max-width:none !important;
    }

    /* LEFT icons ek line me */
    .top-bar .small{
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        gap:10px !important;
    }

    /* RIGHT buttons ek line me (IMPORTANT) */
    .top-bar .justify-content-md-end{
        display:flex !important;
        flex-direction:row !important;
        flex-wrap:nowrap !important;
        align-items:center !important;
        gap:6px !important;
    }

    /* Loveable size buttons */
    .top-bar .btn{
        padding:10px 10px !important;
        font-size:11px !important;
        white-space:nowrap !important;
    }
        .btn-gold {
        background: #d4a017 !important;
        color: #12284a !important;
        padding: 8px 25px !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        border: none !important;
        height: 40px !important;
}
}




/* ===========================
   BUTTONS
   =========================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary);
    border: none;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    height: 40px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    margin-top: 0;
}

.carousel {
    height: 100%;
}

.carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--gold);
    width: 32px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.service-card {
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-card-highlighted {
    box-shadow: var(--shadow-lg);
}

.service-card-highlighted:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: var(--light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: var(--accent-light);
    transform: scale(1.05);
}

.stat-item h3 {
    margin-bottom: 0.5rem;
}

.stat-box {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

/* ===========================
   CARDS & SECTIONS
   =========================== */
.card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

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

.section-padding {
    padding: 5rem 0;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ===========================
   SOCIAL ICONS
   =========================== */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--primary);
    color: var(--white);
}

footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold);
}

footer h5 {
    color: var(--gold);
}

/* ===========================
   FORMS
   =========================== */
.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hover-gold {
    transition: color 0.3s ease;
}

.hover-gold:hover {
    color: var(--gold) !important;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-80 {
    opacity: 0.8;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }

    .carousel-item {
        height: 100%;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link-custom {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .top-bar .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-slider {
       height:50vh;         
        min-height:300px;
    }
    .hero-content h1{
        font-size:22px !important;      
        line-height:1.3;
        margin-bottom:8px;
    }

    .carousel-item {
        background-attachment: scroll;
    }

    h1,
    .display-4,
    .display-5,
    .h1 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .lead {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .row g-5 {
        --bs-gutter-x: 1.5rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ===========================
   ACCESSIBILITY
   =========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    body {
        background-color: var(--white);
    }

    a[href]:after {
        content: none !important;
    }

    .no-print {
        display: none !important;
    }
}



/* Hero Slider */

.hero-btns{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap; 
}

.hero-slider{
    position:relative;
    height:85vh;
    min-height:500px;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:#0c1e4c;
    opacity:.70;
}

.hero-content{
    position:relative;
    z-index:2;
    height:85vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;   /* CENTER */
    color:#fff;
}
.hero-content h1{
    font-size:50px;
    font-weight:700;

    color:#fff;
}
.btn-post{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,0.6);
    font-size:12px;
    padding:10px 22px;
    font-weight:600;
    transition:.3s;
}

.btn-post:hover{
      background:rgba(255,255,255,0.1);
    color:#fff;
    border:1px solid rgba(255,255,255,0.6);

}


.hero-content p{
    font-size:14px;
    color:rgba(255,255,255,0.75); 
}

/* ==== ROUND ARROWS (LIKE LOVABLE) ==== */
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    cursor:pointer;
    z-index:5;
    transition:.3s;
}

.hero-arrow:hover{
    background:#d4af37;
    color:#0c1e4c;
}

.hero-prev{ left:20px; }
.hero-next{ right:20px; }


/* Why Us */

.why-us{
    background:#eef2f7;
    padding:80px 0;
}

.why-label{
    color:#d4af37;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.why-heading{
    font-size:36px;
    font-weight:700;
    color:#0c1e4c;
    margin-top:8px;
}

.why-line{
    width:60px;
    height:4px;
    background:#d4af37;
    margin:14px auto 0;
    border-radius:10px;
}

/* BOX */
.why-box h6{
    font-weight:600;
    color:#0c1e4c;
    margin-top:10px;
}

.why-box p{
    font-size:14px;
    color:#64748b;
}

/* ICON CIRCLE */
.why-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(212,175,55,0.12);  /* same light gold */
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 12px;
    transition:.3s;
}

.why-icon i{
    font-size:26px;
    color:#d4af37;
}

.why-box:hover .why-icon{
    background:rgba(212,175,55,0.22);
}



/* Career section */
.careers-section{
    background:#f8fafc;
}

/* Heading */
.career-subtitle{
    color:#d4a42c;
    font-weight:600;
    letter-spacing:1px;
    font-size:13px;
}

.career-title{
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-top:8px;
}

.career-divider{
    width:60px;
    height:4px;
    background:#d4a42c;
    margin:12px auto 0;
    border-radius:10px;
}

/* Cards */
.job-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:22px;
    transition:0.3s;
}

.job-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-color:#d4a42c55;
}

.job-card.highlight{
    border-color:#d4a42c;
    box-shadow:0 5px 18px rgba(212,164,44,0.2);
}

.job-card h3{
    font-size:18px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:10px;
}
.job-card h3:hover{
   
    color:#d4a42c;
    margin-bottom:10px;
}

/* Meta */
.job-meta{
    font-size:14px;
    color:#6b7280;
    margin-bottom:15px;
    display:flex;
    gap:15px;
}

.job-meta i{
    margin-right:5px;
}

/* Apply Button */
.apply-btn{
    background:#0c1e4c !important;
    color:#fff !important;
    border:none;
    padding:7px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    transition:0.3s;
}

.apply-btn:hover{
    background:#1c326f;
}

/* View All */
.view-all-btn{
    background:#d4a42c;
    color:#0c1e4c;
    border:none;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.view-all-btn:hover{
    background:#e5b842;
}



/* Testimonial */

.testimonial-section{
    background:#12284a;
    padding:80px 0;
    color:#fff;
}

.sub-title{
    color:#d4a017;
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:1px;
}

.main-title{
    font-size:40px;
    font-weight:700;
    color:#fff;
}

.divider{
    width:70px;
    height:4px;
    background:#d4a017;
    margin:15px auto;
    border-radius:10px;
}

.testimonial-card{
    background:#f5f5f5;
    padding:40px;
    border-radius:20px;
    max-width:650px;
    margin:auto;
}

.stars{
    color:#d4a017;
    font-size:20px;
    margin-bottom:10px;
}

.testimonial-text{
    font-size:18px;
    font-style:italic;
    color:#222 !important;
}

.client-name{
    color:#d4a017;
    margin-top:15px;
    font-weight:600;
}

/* arrows */

.slider-nav{
    margin-top:30px;
    text-align:center;
}

.custom-arrow{
    color:#fff;
   font-size:16px !important;
}

/* default swiper absolute positioning hatao */
.swiper-button-prev,
.swiper-button-next{
    position:relative !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    margin:0;
    
}

/* arrows ko center karo */
.slider-nav{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:25px;
}

/* round button style */
.custom-arrow{
    width:45px;
    height:45px;
    background:#1f3556;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.custom-arrow:hover{
    background:#d4a017;
}


/* About */
.about-section{
    background:#f5f6f8;
    padding: 90px 0;
}

.about-tag{
    color:#d4a017;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.about-title{
    font-size:36px;
    font-weight:700;
    color:#12284a;
    margin:10px 0 20px;
}

.about-text{
    color:#6c757d;
    line-height:1.8;
}

.about-btn{
    background:#12284a;
    color:#fff;
    border-radius:50px;
    padding:12px 25px;
    margin-top:10px;
    font-weight:600;
}

.about-btn:hover{
    background:#1f3556;
    color:#fff;
}

/* STAT CARDS */

.stat-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    border:1px solid #e5e5e5;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.stat-card h3{
    color:#d4a017;
    font-weight:700;
}

.stat-card p{
    color:#6c757d;
    font-size:14px;
    margin:0;
}




/* contact and hero */
/* HERO */
.contact-hero{
    background:#12284a;
    padding:50px 0;
    color:#fff;
}

.hero-title{
    font-size:48px;
    font-weight:700;
    color:#fff;
    
}

.hero-subtitle{
    opacity:.8;
}

/* SECTION */
.section-title{
    font-size:26px;
    font-weight:700;
    color:#12284a;
}

/* CONTACT ITEMS */
.contact-item{
    gap:15px;
}

.icon-box{
    width:50px;
    height:50px;
    background:#f3e6c7;   /* light yellow bg */
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SVG icon color */
.icon-svg{
    width:22px;
    height:22px;
    color:#d4a017;   /* gold/yellow icon */
}


/* MAP */
.map-box{
    height:260px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #eee;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* FORM CARD */
.form-card{
    background:#fff;
    padding:35px;
    border-radius:12px;
    border:1px solid #eee;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

/* INPUT */
.custom-input{
    border-radius:10px;
    height:45px;
}

textarea.custom-input{
    height:auto;
}

/* BUTTON */
.contact-btn{
    background:#d4a017;
    color:#12284a;
    padding:12px 35px;
    border-radius:50px;
    font-weight:600;
}

.contact-btn:hover{
    background:#e5b52c;
}


/* about */
.section-space{
    padding:90px 0;
}

.about-hero{
    background:#12284a;
    color:#fff;
    padding:50px 0;
}

.hero-title{
    font-size:48px;
    font-weight:700;
}

.hero-sub{
    opacity:.8;
    max-width:700px;
    margin:auto;
}

.section-title{
    font-weight:700;
    color:#12284a;
}

.bg-secondary-custom{
    background:#f5f6f8;
}

.card-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    border:1px solid #eee;
}

.value-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    border:1px solid #eee;
    transition:.3s;
}

.value-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-color:#d4a01755;
}

.divider{
    width:70px;
    height:4px;
    background:#d4a017;
    margin:15px auto;
    border-radius:10px;
}

.about-cta{
    background:#12284a;
    color:#fff;
    padding:90px 0;
}

.btn-gold{
    background:#d4a017;
    border-radius:50px;
    padding:8px 25px;
    font-weight:600;
}
.company-overview-section{
    background:#f3f5f7;
    padding:80px 0;
}

.company-inner{
    max-width:1000px;   
}

.company-title{
    font-size:36px;
    font-weight:700;
    color:#12284a;
    margin-bottom:22px;
}

.company-text{
    color:#6b7c93;
    line-height:1.9;
    margin-bottom:18px;
    font-size:17px;
}

.about-icon{
    width:30px;
    height:30px;
    color:#d4a017;   /* gold icon */
}

/* CTA SECTION */
.cta-section{
    background:#002855;   /* dark navy */
    padding:90px 0;
    color:#fff;
}

.cta-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.cta-sub{
    max-width:600px;
    margin:0 auto 35px;
    opacity:.85;
    font-size:16px;
    line-height:1.8;
}

/* BUTTON WRAP */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* GOLD BUTTON */
.btn-gold{
    background:#d4a017;
    color:#12284a;
    padding:8px 25px;
    border-radius:50px;
    font-weight:600;
    border:none;
    height:40px;
}

.btn-gold:hover{
    background:#e3b42b;
    color:#12284a;
}

/* OUTLINE BUTTON */
.btn-outline-light-custom{
    border:1px solid rgba(255,255,255,0.5);
    color:#fff;
    padding:8px 25px;
    border-radius:50px;
    font-weight:600;
}

.btn-outline-light-custom:hover{
    background:rgba(255,255,255,0.1);
    color:#fff;
}



/* about */
.section-space{
    padding:90px 0;
}

.apply-hero{
    background:#12284a;
    color:#fff;
    padding:50px 0;
}

.hero-title{
    font-size:48px;
    font-weight:700;
}

.hero-sub{
    opacity:.8;
    max-width:700px;
    margin:auto;
}

/* apply */
.apply-form-section{
    padding:60px 0;
    background:#f6f7f9;
}

.apply-form-card{
    background:#fff;
    border-radius:14px;
    padding:35px;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    max-width:850px;
    margin:auto;
}

.apply-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* 2 fields per row */
.apply-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.apply-form-input{
    width:100%;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    outline:none;
}

.apply-form-input:focus{
    border-color:#0c1e4c;
}

.apply-form-label{
    margin-bottom:6px;
    font-size:14px;
    font-weight:500;
}

.apply-form-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:10px 12px;
    min-height:100px;
    resize:none;
}

.apply-form-submit-wrap{
    text-align:center;
}

.apply-form-btn{
    background:#d4a017;
    color:#0c1e4c;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.apply-form-btn:hover{
    background:#e2b22b;
}

/* MOBILE */
@media(max-width:768px){
    .apply-form-grid{
        grid-template-columns:1fr;
    }
}


/* Job */


/* about */
.section-space{
    padding:90px 0;
}

.job-hero{
    background:#12284a;
    color:#fff;
    padding:50px 0;
}

.hero-title{
    font-size:48px;
    font-weight:700;
}

.hero-sub{
    opacity:.8;
    max-width:700px;
    margin:auto;
}

.post-job-section{
    padding:60px 0;
    background:#f6f7f9;
}

.post-job-card{
    background:#fff;
    border-radius:14px;
    padding:35px;
    border:1px solid #e5e7eb;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    max-width:900px;
    margin:auto;
}

.post-job-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* 2 fields per row */
.post-job-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.post-job-input{
    width:100%;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    outline:none;
}

.post-job-input:focus{
    border-color:#0c1e4c;
}

.post-job-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:12px;
    min-height:130px;
    resize:none;
}

.post-job-submit-wrap{
    text-align:center;
}

.post-job-btn{
    background:#d4a017;
    color:#0c1e4c;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.post-job-btn:hover{
    background:#e2b22b;
}

/* MOBILE */
@media(max-width:768px){
    .post-job-grid{
        grid-template-columns:1fr;
    }
}




/* insurance */
.section-space{
    padding:90px 0;
}

.insurance-hero{
    position:relative;
    padding:80px 0;             
    text-align:center;
    overflow:hidden;
}

/* background image */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* blue overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,30,76,0.75);   /* bg-primary/80 */
    z-index:2;
}

/* content */
.hero-inner{
    position:relative;
    z-index:3;
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.hero-inner h1{
    font-size:48px;     /* text-4xl md:text-5xl */
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.hero-inner p{
    font-size:18px;
    color:rgba(255,255,255,0.85);
    max-width:650px;
    margin:auto;
}

/* responsive */
@media(max-width:768px){
    .hero-inner h1{
        font-size:36px;
    }
}

/* Insurance type */


/* ===== INSURANCE TYPES ===== */
.insurance-types{
    padding:80px 0;
    background:#f6f7f9;
    text-align:center;
}

/* heading */
.insurance-types .section-title{
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:10px;
}

.insurance-types .gold-line{
    width:70px;
    height:4px;
    background:#d4a017;
    margin:10px auto 40px;
    border-radius:10px;
}

/* grid fix (agar bootstrap col use kar rahe ho) */
.insurance-types .row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.insurance-types .col{
    flex:0 0 calc(25% - 20px);
    max-width:calc(25% - 20px);
}

/* card */
.insurance-types .insurance-card{
    background:#fff;
    border:1px solid #e3e6eb;
    border-radius:14px;
    padding:35px 25px;
    transition:.3s ease;
    height:100%;
}

.insurance-types .insurance-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* icon circle */
.insurance-types .icon-circle{
    width:55px;
    height:55px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#f3efe5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.insurance-types .icon-circle svg{
    width:26px;
    height:26px;
}

/* title */
.insurance-types .insurance-card h3{
    font-size:18px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:10px;
}

/* text */
.insurance-types .insurance-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .insurance-types .col{
        flex:0 0 calc(50% - 20px);
        max-width:calc(50% - 20px);
    }
}

@media(max-width:576px){
    .insurance-types .col{
        flex:0 0 100%;
        max-width:100%;
    }
}


/* Why insurance */
.why-insurance{
    padding:80px 0;
    background:#f5f7fb;
}

.container-small{
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.why-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

/* list */
.why-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* item */
.why-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:16px 20px;
    border-radius:10px;
    border:1px solid #e6e9ef;
    font-size:16px;
    color:#0c1e4c;
}

/* icon */
.check-icon{
    width:22px;
    height:22px;
    flex-shrink:0;
}

.check-icon svg{
    width:100%;
    height:100%;
}

.insurance-enquiry-section{
    padding:80px 0;
    background:#f6f7f9;
}

.insurance-enquiry-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

.insurance-enquiry-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:35px;
    max-width:900px;
    margin:auto;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.insurance-enquiry-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.insurance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.insurance-input{
    width:100%;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    outline:none;
    appearance:none;
}

.insurance-input:focus{
    border-color:#d4a017;
    box-shadow:0 0 0 2px rgba(212,160,23,.15);
}

.insurance-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:10px 12px;
    min-height:110px;
    resize:none;
}

.insurance-submit{
    text-align:center;
}

.insurance-btn{
    background:#d4a017;
    color:#0c1e4c;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.insurance-btn:hover{
    background:#e2b22b;
}

/* MOBILE */
@media(max-width:768px){
    .insurance-grid{
        grid-template-columns:1fr;
    }
}


/* Faq */
.faq-section{
    padding:80px 0;
    background:#f5f7fb;
}

.faq-container{
    max-width:900px;
}

.faq-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

/* custom accordion */
.custom-acc{
    border:1px solid #e6e9ef;
    border-radius:10px;
    margin-bottom:10px;
    overflow:hidden;
}

.custom-btn{
    background:#fff !important;
    color:#0c1e4c !important;
    font-weight:500;
    box-shadow:none !important;
    padding:16px 20px;
}

.custom-btn:not(.collapsed){
    background:#fff !important;
}

.accordion-body{
    font-size:14px;
    color:#6b7280;
}



/* Professional */

.section-space{
    padding:90px 0;
}

.professional-hero{
    position:relative;
    padding:80px 0;             
    text-align:center;
    overflow:hidden;
}

/* background image */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* blue overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,30,76,0.75);   /* bg-primary/80 */
    z-index:2;
}

/* content */
.hero-inner{
    position:relative;
    z-index:3;
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.hero-inner h1{
    font-size:48px;     /* text-4xl md:text-5xl */
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.hero-inner p{
    font-size:18px;
    color:rgba(255,255,255,0.85);
    max-width:650px;
    margin:auto;
}

/* responsive */
@media(max-width:768px){
    .hero-inner h1{
        font-size:36px;
    }
}

/* ===== PROFESSIONAL SERVICES ===== */

.professional-services{
    padding:80px 0;
    background:#f6f7f9;
}

.professional-services .ps-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.professional-services .ps-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:30px;
    transition:.3s ease;
}

.professional-services .ps-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-color:rgba(212,160,23,.3);
}

.professional-services .ps-icon{
    width:56px;
    height:56px;
    background:#f3efe5;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.professional-services .ps-icon svg{
    width:26px;
    height:26px;
}

.professional-services .ps-card h3{
    font-size:20px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:10px;
}

.professional-services .ps-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .professional-services .ps-grid{
        grid-template-columns:1fr;
    }
}


/* ===== SERVICE ENQUIRY ===== */

.service-enquiry-section{
    padding:80px 0;
    background:#f6f7f9;
}

.service-enquiry-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

.service-enquiry-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:35px;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
    max-width:900px;
    margin:auto;
}

.service-enquiry-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-enquiry-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.service-enquiry-input{
    width:100%;
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    outline:none;
}

.service-enquiry-input:focus{
    border-color:#0c1e4c;
}

.service-enquiry-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:10px 12px;
    min-height:100px;
    resize:none;
}

.service-enquiry-submit{
    text-align:center;
}

.service-enquiry-btn{
    background:#d4a017;
    color:#0c1e4c;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.service-enquiry-btn:hover{
    background:#e2b22b;
}

/* MOBILE */
@media(max-width:768px){
    .service-enquiry-grid{
        grid-template-columns:1fr;
    }
}
/* service enquiry select same look */
.service-enquiry-input{
    appearance:none;
}

.service-enquiry-input:focus{
    border-color:#d4a017;
    box-shadow:0 0 0 2px rgba(212,160,23,.15);
}




/* Loan */

/* Professional */

.section-space{
    padding:90px 0;
}

.loan-hero{
    position:relative;
    padding:80px 0;             
    text-align:center;
    overflow:hidden;
}

/* background image */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* blue overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,30,76,0.75);   /* bg-primary/80 */
    z-index:2;
}

/* content */
.hero-inner{
    position:relative;
    z-index:3;
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.hero-inner h1{
    font-size:48px;     /* text-4xl md:text-5xl */
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.hero-inner p{
    font-size:18px;
    color:rgba(255,255,255,0.85);
    max-width:650px;
    margin:auto;
}

/* responsive */
@media(max-width:768px){
    .hero-inner h1{
        font-size:36px;
    }
}


/* types of loan */

.loan-types-section{
    padding:80px 0;
    background:#f6f7f9;
}

.loan-types-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#0c1e4c;
}

.loan-types-line{
    width:70px;
    height:4px;
    background:#d4a017;
    margin:12px auto 40px;
    border-radius:20px;
}

.loan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.loan-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:25px;
    transition:all .3s ease;
}

.loan-card:hover{
    border-color:#d4a017;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.loan-icon{
    width:48px;
    height:48px;
    border-radius:10px;
    background:rgba(212,160,23,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.loan-icon svg{
    width:22px;
    height:22px;
}

.loan-card h3{
    font-size:17px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:6px;
}

.loan-card p{
    font-size:14px;
    color:#6b7280;
}

/* Responsive */
@media(max-width:992px){
    .loan-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .loan-grid{
        grid-template-columns:1fr;
    }
}


/* loan */
.loan-enquiry-section{
    padding:80px 0;
    background:#f6f7f9;
}

.loan-enquiry-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

.loan-enquiry-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:35px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    max-width:950px;
    margin:auto;
}

.loan-enquiry-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.loan-enquiry-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.loan-input{
    height:42px;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:0 12px;
    font-size:14px;
    outline:none;
    background:#fff;
}

.loan-input:focus{
    border-color:#d4a017;
    box-shadow:0 0 0 2px rgba(212,160,23,.15);
}

.loan-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:10px 12px;
    min-height:110px;
    resize:none;
}

.loan-submit{
    text-align:center;
}

.loan-btn{
    background:#d4a017;
    color:#0c1e4c;
    border:none;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.loan-btn:hover{
    background:#e2b22b;
}

/* Mobile */
@media(max-width:768px){
    .loan-enquiry-grid{
        grid-template-columns:1fr;
    }
}

/* loan process */

.simple-process-section{
    padding:80px 0;
    background:#f6f7f9;
}

.simple-process-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:40px;
}

.simple-process-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.process-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.process-circle{
    width:48px;
    height:48px;
    background:#d4a017;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#0c1e4c;
    font-size:18px;
}

.process-step p{
    margin-top:10px;
    font-size:14px;
    font-weight:500;
    color:#0c1e4c;
}

.process-arrow svg{
    width:22px;
    height:22px;
    color:#94a3b8;
}

/* MOBILE */
@media(max-width:768px){

    .simple-process-wrapper{
        flex-direction:column;
    }

    .process-arrow{
        transform:rotate(90deg);
    }
}




/* placement */

.section-space{
    padding:90px 0;
}

.placement-hero{
    position:relative;
    padding:80px 0;             
    text-align:center;
    overflow:hidden;
}

/* background image */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* blue overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(12,30,76,0.75);   /* bg-primary/80 */
    z-index:2;
}

/* content */
.hero-inner{
    position:relative;
    z-index:3;
    max-width:900px;
    margin:auto;
    padding:0 15px;
}

.hero-inner h1{
    font-size:48px;     /* text-4xl md:text-5xl */
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.hero-inner p{
    font-size:18px;
    color:rgba(255,255,255,0.85);
    max-width:650px;
    margin:auto;
}

/* responsive */
@media(max-width:768px){
    .hero-inner h1{
        font-size:36px;
    }
}


/* ===== Placement Stats ===== */
.placement-stats-section{
    padding:60px 0;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
}

.placement-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.placement-stat-item{
    text-align:center;
}

.placement-stat-item h3{
    font-size:40px;
    font-weight:700;
    color:#d4a017;   /* gold */
    margin-bottom:5px;
}

.placement-stat-item p{
    font-size:14px;
    color:#64748b;
    margin:0;
}

/* TABLET */
@media(max-width:992px){
    .placement-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:576px){
    .placement-stat-item h3{
        font-size:28px;
    }
}


/* why placement */

.placement-why{
    background:#f6f7f9;
    padding:80px 0;
}

.placement-why-head{
    text-align:center;
    margin-bottom:50px;
}

.placement-why-head h2{
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
}

.placement-why-head span{
    width:60px;
    height:4px;
    background:#d4a017;
    display:block;
    margin:12px auto 0;
    border-radius:4px;
}

.placement-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.placement-why-box{
    text-align:center;
}

.placement-why-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(212,160,23,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    transition:.3s;
}

.placement-why-icon svg{
    width:28px;
    height:28px;
}

.placement-why-box:hover .placement-why-icon{
    background:rgba(212,160,23,0.25);
}

.placement-why-box h3{
    font-size:18px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:8px;
}

.placement-why-box p{
    font-size:14px;
    color:#6b7280;
    line-height:1.5;
}

/* responsive */
@media(max-width:992px){
    .placement-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .placement-why-grid{
        grid-template-columns:1fr;
    }
}


/* openings */

.openings-section{
    padding:70px 0;
    background:#f6f7f9;
}

.openings-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    flex-wrap:wrap;
    gap:10px;
}

.openings-header h2{
    font-size:28px;
    font-weight:700;
    color:#0c1e4c;
}

.openings-filter{
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:8px 12px;
    background:#fff;
}

.openings-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.opening-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:22px;
    transition:.3s;
}

.opening-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    border-color:#d4a01755;
}

.opening-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.opening-top h3{
    font-size:18px;
    color:#0c1e4c;
}

.opening-badge{
    font-size:12px;
    background:#f7f1df;
    color:#d4a017;
    padding:4px 10px;
    border-radius:20px;
}

.opening-company{
    font-size:14px;
    color:#64748b;
    margin-bottom:8px;
}

.opening-desc{
    font-size:14px;
    color:#64748b;
    margin-bottom:12px;
}

.opening-meta{
    display:flex;
    gap:14px;
    font-size:13px;
    color:#64748b;
    margin-bottom:15px;
    flex-wrap:wrap;
}



.opening-meta svg{
    width:14px;
    height:14px;
}

.opening-btn{
    background:#0c1e4c;
    color:#fff;
    padding:8px 16px;
    border-radius:20px;
    font-size:13px;
    text-decoration:none;
    display:inline-block;
}

.opening-btn:hover{
    background:#132b66;
}


.openings-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.openings-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.opening-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:26px;
}

.opening-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.opening-badge{
    background:#f4ede2;
    color:#d4a017;
    padding:4px 12px;
    border-radius:20px;
    font-size:12px;
}

.opening-company{
    color:#64748b;
    margin-bottom:8px;
}

.opening-desc{
    color:#64748b;
    font-size:14px;
    margin-bottom:12px;
}

.opening-meta{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    font-size:13px;
    color:#64748b;
    margin-bottom:18px;
}

.opening-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.opening-meta svg{
    width:14px;
    height:14px;
}

.opening-btn{
    background:#0c2340;
    color:#fff;
    padding:8px 16px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
}
/* MOBILE */
@media(max-width:768px){
    .openings-grid{
        grid-template-columns:1fr;
    }

    .opening-card{
    width:100%;
}
}

/* how */

.how-section{
    padding:80px 0;
    background:#f6f7f9;
}

.how-header{
    text-align:center;
    margin-bottom:50px;
}

.how-header h2{
    font-size:34px;
    font-weight:700;
    color:#0c1e4c;
}

.how-line{
    width:60px;
    height:4px;
    background:#d4a017;
    margin:12px auto 0;
    border-radius:10px;
}

.how-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.how-number{
    width:56px;
    height:56px;
    background:#d4a017;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-size:20px;
    font-weight:700;
    color:#0c1e4c;
}

.how-item h3{
    font-size:18px;
    font-weight:600;
    color:#0c1e4c;
    margin-bottom:6px;
}

.how-item p{
    font-size:14px;
    color:#64748b;
}

/* MOBILE */
@media(max-width:992px){
    .how-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .how-grid{
        grid-template-columns:1fr;
    }
}


/* ===== SUCCESS STORIES ===== */

.success-section{
    background:#f3f6fb;
    padding:80px 0;
}

.success-title{
    font-weight:700;
    color:#0c1e4c;
    font-size:32px;
}

.success-line{
    width:60px;
    height:4px;
    background:#d4a017;
    margin:12px auto 0;
    border-radius:20px;
}

.success-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:28px 22px;
    transition:.3s;
}

.success-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.success-text{
    font-size:14px;
    color:#64748b;
    font-style:italic;
    margin-bottom:10px;
}

.success-name{
    color:#d4a017;
    font-weight:600;
    font-size:14px;
}

/* ===== APPLY FORM ===== */

.apply-section{
    background:#f3f6fb;
    padding:80px 0;
}

.apply-title{
    font-size:32px;
    font-weight:700;
    color:#0c1e4c;
    margin-bottom:30px;
}

.apply-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:35px;
    max-width:900px;
    margin:auto;
}

.apply-input{
    height:48px;
    border-radius:10px;
    border:1px solid #d1d5db;
    font-size:14px;
}

.apply-input:focus{
    box-shadow:none;
    border-color:#d4a017;
}

textarea.apply-input{
    height:auto;
}

.upload-label{
    font-size:14px;
    color:#0c1e4c;
    font-weight:500;
    margin-bottom:6px;
    display:block;
}

.apply-btn{
    background:#d4a017;
    color:#000;
    border-radius:40px;
    padding:12px 40px;
    font-weight:600;
    border:none;
}

.apply-btn:hover{
    background:#e6b325;
}




.job-marquee{
    overflow:hidden;
    background:#f4c542;
    padding:10px 0;
    font-weight:600;
}
.marquee-link{
    color:#000 !important;
    text-decoration:none;
    display:block;
}

.marquee-content{
    white-space:nowrap;
    display:inline-block;
    padding-left:100%;
    animation:scroll 30s linear infinite;
    color:#000 !important;
}

.job-marquee:hover .marquee-content{
    animation-play-state: paused;
}

@keyframes scroll{
    0%{transform:translateX(0)}
    100%{transform:translateX(-100%)}
}


.whatsapp-btn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
}

/* Hover */
.whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

/* Pulse animation */
.whatsapp-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#25D366;
    animation:pulse 1.8s infinite;
    z-index:-1;
}
