.logo-header img{
    width: 210px !important;
    max-width: 250px !important;
}

.dz-box.style-1 .title {
    color: white;
}

.DZ-theme-btn.DZ-bt-support-now,
.DZ-theme-btn.DZ-bt-buy-now,
.styleswitcher .switcher-btn-bx {
    display: none;
}

.content-inner-2,
.content-inner{
    padding-top: 20px !important;
}


.ts-project-gallery__title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 30px;
    position: relative;
}

/* small underline accent */
.ts-project-gallery__title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #111;
    display: block;
    margin: 12px auto 0;
    opacity: 0.8;
}
/* ================================
   GALLERY PAGINATION
================================ */
.ts-gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

/* pagination buttons */
.ts-gallery-pagination button,
.ts-gallery-pagination a {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* hover */
.ts-gallery-pagination button:hover,
.ts-gallery-pagination a:hover {
    border-color: #111;
    color: #111;
}

/* active page */
.ts-gallery-pagination .active {
    background: #111;
    color: #fff;
    border-color: #111;
    pointer-events: none;
}

/* disabled */
.ts-gallery-pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* arrows (prev / next) */
.ts-gallery-pagination .arrow {
    font-size: 13px;
    letter-spacing: 0.1em;
}


.about-history-pills .nav-link {
    background: #f1f1f1;
    color: #555;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    margin: 0 8px;
    min-width: 90px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.about-history-pills .nav-link:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.text-muted{
	color: black !important;
}

.about-history-pills .nav-link.active {
    background: var(--primary, #EA5501);
    color: white;
    border-color: var(--primary, #EA5501);
    box-shadow: 0 8px 20px rgba(234, 85, 1, 0.3);
}

.about-history-pane .tab-pane {
    animation: fadeIn 0.6s ease-in-out;
}

.about-history-pane .bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-left: 5px solid var(--primary, #EA5501);
}

.history-img img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive: Stack pills vertically on small screens */
@media (max-width: 576px) {
    .about-history-pills {
        flex-direction: column;
        align-items: center;
    }
    .about-history-pills .nav-link {
        margin: 8px 0;
        width: 120px;
    }
}

    /* RESET SAFE */
.project-hero-section {
    padding: 0;
    overflow-x: hidden; /* prevents scroll */
}

/* FULL WIDTH IMAGE */
.hero-media {
    position: relative;
    width: 100%;
}

/* CONTROLLED HEIGHT */
.hero-media img {
    width: 100%;
    height: 600px;        /* CONTROL HEIGHT HERE */
    object-fit: cover;
    display: block;
}

/* TITLE BOX */
.hero-title-box {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 12px 20px;
}

.hero-title-box h2 {
    margin: 0;
    font-size: 28px;
    color: #000;
    font-weight: 600;
}

/* DESCRIPTION */
.project-hero-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
@media (max-width: 768px) {
    .hero-media img {
        height: 260px;
    }

    .hero-title-box h2 {
        font-size: 20px;
    }
}


    /* Resources Section Styles */
    .resources-section {
        padding: 100px 0;
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    .resources-section .section-head {
        margin-bottom: 60px;
    }
    .resources-section .title {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }
    .resources-section .title span.text-primary {
        color: #127ec3;
    }
    .resources-section .dz-separator {
        height: 4px;
        width: 80px;
        background: #127ec3;
        margin: 20px auto;
        position: relative;
    }
    .resources-section .dz-separator::before,
    .resources-section .dz-separator::after {
        content: '';
        position: absolute;
        height: 4px;
        width: 20px;
        background: #127ec3;
        top: 0;
    }
    .resources-section .dz-separator::before {
        left: -30px;
    }
    .resources-section .dz-separator::after {
        right: -30px;
    }

    .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .resource-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .resource-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .resource-preview {
        height: 220px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .resource-preview::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
        transition: all 0.4s;
    }

    .resource-card:hover .resource-preview::after {
        background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
    }

    .resource-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .resource-title {
        font-size: 22px;
        font-weight: 600;
        color: #222;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .resource-desc {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .download-btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 28px;
        background: #127ec3;
        color: #fff;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

    .download-btn:hover {
        background: #127ec3;
        transform: translateX(10px);
        color: #fff;
    }

    .download-btn i {
        margin-right: 10px;
        font-size: 18px;
    }

    .download-btn.disabled {
        background: #ccc;
        cursor: not-allowed;
        pointer-events: none;
    }

    .download-btn.disabled i {
        margin-right: 10px;
    }

    @media (max-width: 768px) {
        .resources-grid {
            grid-template-columns: 1fr;
        }
         .scroltop{
        display: none;
    }
        .resources-section .title {
            font-size: 34px;
        }
    }

/* Force style-2 hover state to be always visible */
.dz-box.style-2 .dz-info {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* If overlay dark layer appears only on hover */
.dz-box.style-2::after,
.dz-box.style-2::before {
    opacity: 1 !important;
}

/* Media overlay (image zoom / dark overlay) */
.dz-box.style-2 .dz-media::after {
    opacity: 1 !important;
}

/* View button (lightbox icon) */
.dz-box.style-2 .view-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}
/* Category View Button */
.category-view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #127ec3;
    border: 2px solid #127ec3;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.category-view-btn:hover {
    background: #127ec3;
    color: #fff;
}
.shine-btn {
    position: relative;
    overflow: hidden;
}

/* Shine layer */
.shine-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

/* Animation */
.shine-btn:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
/* ===== FLOATING EXPRESS ORDER BUTTON ===== */
.express-float-btn {
    position: fixed;
    bottom: 18px;
    right: 8%;
    z-index: 9999;

    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
    overflow: hidden;

    animation: floatPulse 2.5s infinite;
}

/* Shine Effect */
.express-float-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
}

/* Hover (mobile tap feedback) */
.express-float-btn:active {
    transform: scale(0.96);
}

/* Floating pulse */
@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Shine animation */
@keyframes shineMove {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* ===== DESKTOP HIDE ===== */
@media (min-width: 1391px) {
    .express-float-btn {
        display: none;
    }
}
@media (max-width: 1391px) {
    .contact-dis {
        display: none;
    }
}
/* ===== FLOATING BUTTON BASE ===== */
.float-action-btn {
    position: fixed;
    right: 8%;
    z-index: 9999;

    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
    overflow: hidden;

    animation: floatPulse 2.5s infinite;
}

/* Shine Effect */
.float-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
}

/* Tap feedback */
.float-action-btn:active {
    transform: scale(0.96);
}

/* ===== EXPRESS ORDER (BOTTOM) ===== */
.express-float-btn {
    bottom: 18px;
}

/* ===== CONTACT US (ABOVE EXPRESS) ===== */
.contact-float-btn {
    bottom: 78px; /* adjust spacing if needed */
}

/* ===== DESKTOP HIDE ===== */
@media (min-width: 1391px) {
    .float-action-btn {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes shineMove {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}



		.rs-contact-nine {
			padding: 80px 0;
			background: #f8f8f8;
		}
		.rs-contact-wrapper {
			display: flex;
			flex-wrap: wrap;
			gap: 30px;
			justify-content: center;
		}
		.rs-contact-item {
			background: #fff;
			padding: 30px;
			border-radius: 10px;
			box-shadow: 0 5px 20px rgba(0,0,0,0.08);
			text-align: center;
			min-width: 240px;
			flex: 1 1 220px;
			max-width: 300px;
		}
		.rs-contact-icon {
			margin-bottom: 20px;
		}
		.rs-contact-icon svg {
			width: 50px;
			height: 50px;
			padding: 12px;
			background: #127ec3;
			border-radius: 50%;
		}
		.rs-contact-icon svg path {
			fill: #fff;
		}
		.rs-contact-title {
			font-size: 20px;
			margin-bottom: 15px;
			color: #222;
		}
		.rs-contact-content p,
		.rs-contact-content a {
			font-size: 16px;
			color: #555;
			line-height: 1.6;
			text-decoration: none;
		}
		.rs-contact-content a:hover {
			color: #127ec3;
		}
		@media (max-width: 991px) {
			.rs-contact-wrapper {
				gap: 20px;
			}
			.rs-contact-item {
				padding: 25px;
			}
		}
		
		/* Hide Contact button below 990px */
@media (max-width: 991px) {
    .contact-btn {
        display: none;
    }
}


                /* ===============================
           PAGE BASE
        =============================== */

        .rh-capabilities-page {
            background: #fff;
        }

        /* ===============================
           TOP HERO
        =============================== */

        .rh-capabilities-hero {
            background: #5f6973;
            padding: 60px 0;
            text-align: center;
        }

        .rh-capabilities-hero h1 {
            color: #fff;
            font-size: 36px;
            letter-spacing: 4px;
            margin: 0;
            font-weight: 600;
        }

        /* ===============================
           INTRO SECTION
        =============================== */

        .rh-capabilities-intro {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 20px;
            display: flex;
            gap: 80px;
        }

        .rh-cap-intro-left {
            flex: 1.2;
        }

        .rh-cap-intro-left h2 {
            font-size: 28px;
            letter-spacing: 1px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .rh-cap-intro-left p {
            font-size: 16px;
            line-height: 1.9;
            color: #555;
            max-width: 620px;
        }

        .rh-cap-intro-right {
            flex: 0.8;
        }

        .rh-capability-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rh-capability-links li {
            margin-bottom: 26px;
        }

        .rh-capability-links a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 17px;
            color: #2c3e50;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .rh-capability-links a span {
            color: #f0a500;
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .rh-capability-links a:hover span {
            transform: translateX(6px);
        }

        /* ===============================
           CAPABILITY SECTIONS
        =============================== */

        .rh-cap-section {
            padding: 80px 0;
        }

        .rh-cap-title-bar {
            background: #5f6973;
            padding: 26px 0;
            text-align: center;
        }

        .rh-cap-title-bar h3 {
            color: #fff;
            letter-spacing: 2px;
            font-size: 36px;
            margin: 0;
            font-weight: 600;
        }

        .rh-cap-row {
            max-width: 1300px;
            margin: 0 auto;
            padding: 70px 20px;
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .rh-cap-row.reverse {
            flex-direction: row-reverse;
        }

        .rh-cap-text {
            flex: 1;
            font-size: 16px;
            line-height: 1.9;
            color: #555;
        }

        .rh-cap-view-link {
            display: inline-block;
            margin-top: 22px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            color: #000;
            border-bottom: 2px solid #000;
            padding-bottom: 4px;
            transition: 0.3s ease;
        }

        .rh-cap-view-link:hover {
            opacity: 0.7;
        }

        .rh-cap-image {
            flex: 1;
        }

        .rh-cap-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===============================
           MOBILE
        =============================== */

        @media (max-width: 900px) {
            .rh-capabilities-intro,
            .rh-cap-row,
            .rh-cap-row.reverse {
                flex-direction: column;
                gap: 40px;
            }

            .rh-cap-title-bar h3 {
                font-size: 22px;
            }
        }

        .icon-bx-wraper.style-1 .sub-title{
            color: white !important;
        }

                /* ===============================
           TOP SERVICES INTRO SECTION
        =============================== */

        .rh-services-page {
            background: #fff;
        }

        .rh-services-hero {
            background: #5f6973;
            padding: 60px 0;
            text-align: center;
        }

        .rh-services-hero h1 {
            color: #fff;
            letter-spacing: 4px;
            font-size: 36px;
            margin: 0;
            font-weight: 600;
        }

        .rh-services-intro {
            max-width: 1300px;
            margin: 0 auto;
            padding: 50px 20px;
            display: flex;
            gap: 80px;
        }

        .rh-intro-left {
            flex: 1.2;
        }

        .rh-intro-left h2 {
            font-size: 28px;
            letter-spacing: 1px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .rh-intro-left p {
            font-size: 16px;
            line-height: 1.9;
            color: #555;
            max-width: 620px;
        }

        .rh-intro-right {
            flex: 0.8;
        }

        .rh-service-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rh-service-links li {
            margin-bottom: 26px;
        }

        .rh-service-links a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 17px;
            color: #2c3e50;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .rh-service-links a span {
            color: #f0a500;
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .rh-service-links a:hover span {
            transform: translateX(6px);
        }

        .rh-services-divider {
            height: 70px;
            background: #4b545d;
        }

        /* ===============================
           SERVICE DETAIL SECTIONS
        =============================== */

        .rh-service-section {
            padding: 80px 0;
        }

        .rh-service-title-bar {
            background: #5f6973;
            padding: 26px 0;
            text-align: center;
        }

        .rh-service-title-bar h3 {
            color: #fff;
            letter-spacing: 2px;
            font-size: 26px;
            margin: 0;
            font-weight: 600;
        }

        .rh-service-row {
            max-width: 1300px;
            margin: 0 auto;
            padding: 70px 20px;
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .rh-service-row.reverse {
            flex-direction: row-reverse;
        }

        .rh-service-text {
            flex: 1;
            font-size: 16px;
            line-height: 1.9;
            color: #555;
        }

        .rh-service-image {
            flex: 1;
        }

        .rh-service-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* MOBILE */
        @media (max-width: 900px) {
            .rh-services-intro,
            .rh-service-row,
            .rh-service-row.reverse {
                flex-direction: column;
                gap: 40px;
            }

            .rh-service-title-bar h3 {
                font-size: 22px;
            }
        }
        
            .careers-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, rgba(18, 126, 195, 0.95), rgba(13, 102, 160, 0.9)), url('images/careers-hero-bg.jpg');
        background-size: cover;
        background-position: center;
        color: #ffffff;
        text-align: center;
    }

    .careers-hero svg path {
        fill: #ffffff;
    }

    .careers-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin: 20px 0 15px;
        line-height: 1.2;
    }

    .careers-hero p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.95;
    }

    .openings-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .jobs-section {
        padding: 100px 0;
        background: #f8fafc;
    }

    .jobs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .job-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.4s ease;
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
    }

    .job-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(18, 126, 195, 0.15);
        border-color: #127ec3;
    }

    .job-title {
        font-size: 24px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 12px;
    }

    .job-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        font-size: 15px;
        color: #127ec3;
        font-weight: 500;
    }

    .job-meta span {
        display: flex;
        align-items: center;
    }

    .job-meta span::before {
        content: '●';
        margin-right: 8px;
        font-size: 12px;
    }

    .job-desc {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 30px;
        flex-grow: 1;
    }

    .apply-btn {
        align-self: flex-start;
        background: #127ec3;
        color: #ffffff;
        border: none;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .apply-btn:hover {
        background: #0d66a0;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(18, 126, 195, 0.3);
    }

    #application-form-section {
        padding: 100px 0;
        background: #ffffff;
    }

    .apply-container {
        max-width: 900px;
        margin: 0 auto;
        background: #f8fafc;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .apply-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .apply-header h2 {
        font-size: 36px;
        color: #333333;
        margin-bottom: 12px;
    }

    .current-job {
        font-size: 18px;
        color: #127ec3;
        font-weight: 600;
    }

    .current-job strong {
        color: #333333;
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333333;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        font-size: 16px;
        transition: border 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #127ec3;
        box-shadow: 0 0 0 3px rgba(18, 126, 195, 0.15);
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .file-upload-wrapper {
        border: 2px dashed #e2e8f0;
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        cursor: pointer;
        background: #ffffff;
        transition: all 0.3s ease;
    }

    .file-upload-wrapper:hover {
        border-color: #127ec3;
        background: #f0f7ff;
    }

    .file-upload-wrapper strong {
        display: block;
        font-size: 18px;
        color: #333333;
        margin-bottom: 8px;
    }

    .file-upload-wrapper small {
        color: #64748b;
    }

    #file-info {
        margin-top: 12px;
        color: #127ec3;
        font-weight: 500;
    }

    .form-actions {
        text-align: center;
        margin-top: 40px;
    }

    .submit-application {
        background: #127ec3;
        color: #ffffff;
        border: none;
        padding: 16px 48px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-application:hover {
        background: #0d66a0;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(18, 126, 195, 0.3);
    }

    @media (max-width: 992px) {
        .form-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .careers-hero h1 {
            font-size: 38px;
        }
        .apply-container {
            padding: 30px;
        }
        .jobs-grid {
            grid-template-columns: 1fr;
        }
        .careers-hero {
            padding: 100px 0 60px;
        }
    }
    
    .rh-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.rh-section-title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Button alignment fix */
.rh-section-head .btn {
    white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rh-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rh-section-title {
        font-size: 28px;
    }
}

.site-header.style-2 .logo-header{
    margin-left: 0px
}

@media only screen and (max-width: 1680px) {
    .site-header.style-2 .header-nav .nav > li > a {
        padding: 42px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .section-head.style-1 h2, .section-head.style-1 .h2 {
        font-size: 17px;
    }
}

#pointer-ring,
#pointer-dot{
    display: none;
}

      /* Full-width dark bar */
        .services-header {
            width: 100%;
            background-color: #5b6670;
            /* dark grey like image */
            padding: 30px 0;
        }

        /* Title styling */
        .services-header .title {
            color: #ffffff;
            font-size: 48px;
            font-weight: 500;
            letter-spacing: 6px;
            margin: 0;
            text-transform: uppercase;
        }

        /* Optional separator (can remove if not needed) */
        .services-header .dz-separator {
            width: 60px;
            height: 3px;
            background: #ffffff;
            margin: 18px auto 0;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .services-header .title {
                font-size: 32px;
                letter-spacing: 4px;
            }
        }
        
        	/* ===== Layout ===== */
	.contact-container{
		max-width:1200px;
		margin:70px auto;
		padding:0 20px;
	}
	.contact-grid{
		display:grid;
		grid-template-columns:1.1fr 0.9fr;
		gap:60px;
	}

	/* ===== Form ===== */
	.contact-form label{
		font-size:13px;
		font-weight:500;
		margin-bottom:6px;
		display:block;
		color:#333;
	}
	.contact-form input,
	.contact-form textarea{
	
		padding:12px;
		border:1px solid #d6dee5;
		border-radius:3px;
		background:#f7fafc;
		font-size:14px;
	}
	.contact-form textarea{
		min-height:140px;
		resize:vertical;
	}
	.form-row{
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:20px;
	}
	.form-group{
		margin-bottom:18px;
	}

	/* ===== Instruction Text ===== */
	.form-note{
		font-size:13px;
		color:#555;
		line-height:1.6;
		margin:20px 0;
	}
	.form-note a{
		color:#127ec3;
		text-decoration:none;
	}

	/* ===== Checkbox ===== */
	.checkbox-wrap{
		display:flex;
		align-items:flex-start;
		gap:8px;
		font-size:13px;
		color:#444;
		margin-bottom:15px;
	}

	/* ===== Button ===== */
	.submit-btn{
		background:#127ec3;
		border:none;
		color:#fff;
		padding:11px 26px;
		font-size:14px;
		font-weight:600;
		cursor:pointer;
		border-radius:3px;
	}
	.submit-btn:hover{
		background:#d9a428;
	}

	/* ===== Right Info ===== */
	.contact-info{
		font-size:14px;
	}
	.big-phone{
		font-size:26px;
		font-weight:600;
		margin-bottom:30px;
		color:#333;
	}
	.info-block{
		margin-bottom:22px;
	}
	.info-block strong{
		display:block;
		font-weight:600;
		margin-bottom:6px;
	}
	.info-block span{
		color:#555;
		line-height:1.6;
	}

	/* ===== Map ===== */
	.map-wrap{
		margin-top:40px;
		border:1px solid #e5e5e5;
	}
	.map-wrap iframe{
		width:100%;
		height:360px;
		border:0;
	}


	/* ===== Responsive ===== */
	@media(max-width:900px){
		.contact-grid{
			grid-template-columns:1fr;
		}
	}
