﻿/* =========================================
   CSS Reset & Base Styles
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #100D7F;
    --dark-blue: #0f2444;
    --red: #C00B1E;
    --dark-red: #B76922;
    --light-red: #FF727E;
    --orange-light: #fdf3eb;
    --text-dark: #232323;
    --text-muted: #222222;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    /* --font-family: "Manrope", sans-serif; */
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Golos Text", sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================
   Utility Classes
   ========================================= */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: var(--orange);
}

.text-dark {
    color: var(--text-dark);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.position-relative {
    position: relative;
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-left {
    padding-left: 3rem;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.align-center {
    align-items: center;
}

/* Grid System */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gap-small {
    gap: 25px;
}

/* Text-align */


.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/* text-justify */

.text-justify {
    text-align: justify;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    background: linear-gradient(90deg, #CC0917 0%, #1E2383 100%);
    border: 1px solid #DE2328;
    border-radius: 10px;
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    margin-top: 30px;
    padding: 11px 23px;
    background: linear-gradient(90deg, #d10a17 0%, #211b78 100%);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500; */
}

.btn-pill {
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(90deg, #CC0917 0%, #1E2383 100%);
    border: 0px solid transparent;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1E2383 0%, #CC0917 100%);
    border: 0px solid transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background: #fff;
    border: 1px solid #1E2383;
    color: var(----primary-blue);
}

.btn-orange {
    background: linear-gradient(90deg, #D4853B 0%, #BA6B24 100%);
    border: 2px solid #BB6D25;
    color: var(--white);
}

.btn-orange:hover {
    background: linear-gradient(90deg, #BA6B24 0%, #D4853B 100%);
    border-color: #d1651c;
}

.btn-outline-blue {
    background: linear-gradient(90deg, #153D7B 0%, #406EB6 100%);
    border: 2px solid rgba(253, 254, 255, 0.64);
    color: var(--white);
}

.btn-outline-blue:hover {
    background: linear-gradient(90deg, #406EB6 0%, #153D7B 100%);
    border: 2px solid rgba(253, 254, 255, 0.64);
}


.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.icon-right {
    margin-left: 8px;
}

/* Badges */
.badge {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-outline {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.badge-bg {
    display: inline-block;
    background: linear-gradient(90deg, #EAE9FF 0%, #F6F6F6 100%);
    color: #26227E;
    border: none;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: normal;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 3.1rem;
    margin-bottom: 1.5rem;
}

.section-title .text-red {
    color: var(--red);
}

.section-title .text-orange-light {
    color: var(--light-orange);
}

.sub-heading {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =========================================
   Header & Navigation
   ========================================= */
/* .header {
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
} */


/* .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 5%;
	border-radius: 20px;
	padding: 10px 15px;
	background: #fff;
	transition: all ease-in-out 0.4s;

    box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.15);
} */

/* .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all ease-in-out 0.4s;
	margin: 30px auto;
} */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* margin: 30px 0; */
    /* border-radius: 20px; */
    /* padding: 10px 15px; */
    /* background: #fff; */
    transition: all ease-in-out 0.4s;
    /* max-width: 1600px; */
    /* border: 1px solid #FFCAD2; */
    /* box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.15); */
    /* max-width: 1600px; */
    margin: 30px auto;
}

.header.sticky-header {
    /* background: #fff;
	margin: 0;
	padding: 10px 15px;
	border-radius: 0;
	box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
	width: 100%;
	max-width: 100%; */

    background: #fff;
    margin: 0 auto;
    /* padding: 12px 5%; */
    border-radius: 0;
    box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 100%;
}

/* .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 15px 15px;
    background: #fff;
}

.header.sticky-header .header-container {
    margin: 0 auto;
    border-radius: 0px;
    background: transparent;
}


.logo img {
    max-width: 240px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list>li>a {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0px;
    border-radius: 6px;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 4px;
}

.nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
}

.nav-list>li>a:hover::after,
.nav-list>li>a.active::after {
    transform: scaleX(1);
}



.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--primary-blue);
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown li a:hover {
    background-color: var(--orange-light);
    color: var(--orange);
}

/* Sub-Dropdown (Flyout Right) */
.has-sub-dropdown {
    position: relative;
}

.sub-dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
}

.has-sub-dropdown:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.has-sub-dropdown:hover>a .sub-dropdown-icon {
    transform: rotate(90deg);
}

.sub-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.sub-dropdown li a:hover {
    background-color: var(--orange-light);
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-close-btn {
    display: none !important;
}

.mobile-overlay {
    display: none !important;
}

/* =========================================
   Hero Slider
   ========================================= */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    min-height: 1000px;
    background-image: url('../img/hero-section-fix-bg-img.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-slider-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(90deg, rgba(5, 7, 12, 0.88) 0%, rgba(20, 22, 54, 0.84) 46%, rgba(15, 18, 119, 0.78) 100%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.55) 0%, rgba(25, 22, 92, 0.92) 58%, rgba(51, 23, 116, 0.88) 100%); */
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.8836) 0%, rgba(37, 33, 115, 0.94) 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.hero-slider-section::after {
    content: '';
    position: absolute;
    right: -115px;
    bottom: 0;
    width: 560px;
    height: 73%;
    background: linear-gradient(142deg, rgba(156, 31, 128, 0.68) 0%, rgba(83, 31, 122, 0.72) 100%);
    clip-path: polygon(70.1% 216px, 100% 0px, 100% 100%, 65px 100.00%);
    z-index: 1;
    pointer-events: none;
}


.hero-slider-section .hero-slider,
.hero-slider-section .owl-stage-outer,
.hero-slider-section .owl-stage,
.hero-slider-section .owl-item {
    min-height: 100%;
    z-index: 2;
}

.hero-slider-section .owl-stage {
    display: flex;
}

.hero-slider-section .owl-item {
    display: flex;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 1000px;
    padding: 214px 0 135px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
}



.hero-slide .container {
    position: relative;
    z-index: 2;
    max-width: 1650px;
}

.hero-slide-grid {
    justify-content: space-between;
    gap: 58px;
}

.hero-content {
    flex: 0 0 52%;
    max-width: 850px;
    color: var(--white);
}







.hero-slider .owl-item.active .hero-content .hero-title {
    animation: 1s .1s fadeInDown both
}

.hero-slider .owl-item.active .hero-content .hero-desc {
    animation: 1s .9s fadeInUp both
}

/* .homeSlider .owl-item.active .caption-wrap p {
    animation: 1s .9s fadeInUp both
} */

.hero-visual .hero-people-card,
.hero-visual .hero-map-card {
    animation: 1s .9s fadeInRight both
}

.hero-slider .owl-item.active .hero-content .hero-buttons {
    animation: 1s 1.2s zoomIn both
}

/* =========================================
   Inner Page Hero Banner
   ========================================= */
.inner-hero {
    background-size: cover;
    background-position: top center;
    position: relative;
    padding: 220px 0 150px;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.8836) 0%, rgba(37, 33, 115, 0.94) 100%);
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255);
    font-size: 15px;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--red);
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .separator {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}


.hero-title {
    font-size: clamp(4.6rem, 4.2vw, 4.2rem);
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.hero-title .text-red {
    color: #ed111e;
}

.hero-desc {
    max-width: 790px;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 400;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    margin-bottom: 32px;
    padding: 10px 22px;
    background: #fff;
    color: #c70d1a;
    border: 0;
    border-radius: 999px;
    font-size: 1.82rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content .btn {
    min-height: 54px;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 1.3rem;
    line-height: 1;
}

.hero-content .btn-orange {
    background: linear-gradient(90deg, #d60a17 0%, #241f82 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-content .btn-outline-blue {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-visual {
    position: relative;
    flex: 0 0 42%;
    min-height: 640px;
    margin-top: 0;
    z-index: 2;
}

.hero-people-card {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 655px);
    height: 588px;
    overflow: hidden;
    border-top-right-radius: 52px;
    box-shadow: none;
}

.hero-people-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-map-card {
    position: absolute;
    left: -118px;
    bottom: 0;
    width: 267px;
    height: 290px;
    overflow: hidden;
    border: 2px solid rgba(124, 159, 236, 0.85);
    border-radius: 24px;
    background: #022976;
}

.hero-map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--orange);
    color: #FFF;
}

.hero-slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin: 0;
}

.hero-slider.owl-theme .owl-dots .owl-dot {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    border: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.hero-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span {
    width: 16px;
    border-radius: 50%;
    background: #ed111e;
    box-shadow: none;
}

/* =========================================
   About Section
   ========================================= */


.about-section {
    background: linear-gradient(248.2deg, #FFFFFF 66.39%, #DAD9FF 99.57%);
}

.about-images {
    width: 100%;
    max-width: 770px;
    min-height: 660px;
    padding: 0 40px 0px 132px;
    isolation: isolate;
}

.about-images .inner-big-img-div {
    width: min(100%, 592px);
    margin-left: auto;
    background: #050b14;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 42px rgba(4, 11, 25, 0.24);
}

.about-images .inner-big-img-div img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

.about-images .experience-card {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 3;
    width: 292px;
    min-height: 194px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #ff0b11 0%, #ae0004 100%);
    border: 2px solid #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(86, 0, 3, 0.26);
    color: #ffffff;
}

.about-images .experience-card strong span.counter,
.about-images .experience-card strong {
    color: #ffffff;
    font-family: "Golos Text", sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

.about-images .experience-card strong span.counter {
    margin-top: 0px;
}

.about-images .experience-card span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 16px;
    text-align: center;
}

.about-images .floating-img {
    position: absolute;
    right: 0;
    bottom: 26px;
    z-index: 3;
    width: 286px;
    background: #ffffff;
    border: 6px solid #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 36px rgba(10, 22, 44, 0.22);
}

.about-images .floating-img img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

.about-content p {
    /* color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 500; */
}

p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-weight: 500;
}

/* =========================================
   Services Section
   ========================================= */

.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.9) 0%, rgba(18, 20, 47, 0.9) 42%, rgba(28, 24, 105, 0.9) 100%), url(../img/services-section-bg.jpg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.services-section .container {}

.services-section .section-title {
    /* margin-bottom: 34px;
    color: #ffffff;
    font-size: 3.15rem;
    font-weight: 800;
    line-height: 1.15; */
}

.services-page-section {
    background: #ffffff !important;
}

.services-slider {
    padding-bottom: 54px;
}

.services-slider .owl-stage {
    display: flex;
}

.services-slider .owl-item {
    display: flex;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.services-page-card {
    position: relative;
    width: 100%;
    /* min-height: 394px; */
    background: #F3F3FA;
    border: 0;
    box-shadow: none;
    border-radius: 15px;
    padding: 20px 20px 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.services-page-img {
    position: relative;
    /* height: 450px; */
    overflow: hidden;
    border-radius: 12px;
    background: #eef1f5;
}

.services-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-page-icon {
    position: absolute;
    right: 20px;
    bottom: 74px;
    width: 81px;
    height: 81px;
    margin: 0;
    background: #ffffff;
    border: 0;
    border-radius: 14px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-page-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.services-page-title {
    margin: 22px 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #211b78;
    line-height: 1.2;
    text-align: center;
}

.service-card {
    position: relative;
    width: 100%;
    min-height: 394px;
    background: #ffffff;
    border: 0;
    box-shadow: none;
    border-radius: 15px;
    padding: 20px 20px 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.service-card .service-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    background: #eef1f5;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card .icon-box {
    position: absolute;
    right: 20px;
    bottom: 74px;
    width: 81px;
    height: 81px;
    margin: 0;
    background: #ffffff;
    border: 0;
    border-radius: 14px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card .icon-box img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.service-card .card-title {
    margin: 22px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #211b78;
    line-height: 1.2;
    text-align: center;
}

.service-card .card-desc {
    margin-bottom: 0;
}

.services-slider.owl-theme .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.services-slider.owl-theme .owl-dots .owl-dot {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
}

.services-slider.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.services-slider.owl-theme .owl-dots .owl-dot.active span,
.services-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #ed111e;
}

/* =========================================
   Projects Section
   ========================================= */

.projects-section {
    background: url(../img/industries-counter-section-bg.jpg), #FFFFFF;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.projects-section .container {
    /* max-width: 1720px; */
}

.projects-section .section-title {
    /* margin-bottom: 34px;
    color: #111111;
    font-size: 3.05rem;
    font-weight: 800;
    line-height: 1.15; */
}

.projects-section .section-title .text-red {
    color: #c90b1e;
}

.industries-slider {
    padding-bottom: 22px;
}

.industries-slider .owl-stage {
    display: flex;
}

.industries-slider .owl-item {
    display: flex;
    padding: 12px;
}

.project-item {
    width: 100%;
    /* min-height: 202px; */
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(18, 20, 36, 0.12);
    overflow: visible;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 3px 12px rgba(18, 20, 36, 0.12);
}

.project-item img {
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    object-fit: contain;
    border-radius: 0;
}

.project-info {
    padding: 15px 0 0 0;
    background: #f1f6f9;
}

.project-title {
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: var(--font-main);
    color: #111111;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.project-desc {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.projects-slider .owl-nav {
    display: none;
    margin-top: 0;
    text-align: center;
}

.projects-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background: var(--primary-blue) !important;
    color: white !important;
    border-radius: 50% !important;
    margin: 0 5px;
}

.projects-slider .owl-nav button:hover {
    background: var(--orange) !important;
}

.projects-slider.owl-theme .owl-dots {
    text-align: center;
    margin: 34px 0 0 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.projects-slider.owl-theme .owl-dots .owl-dot {
    outline: none;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
}

.projects-slider.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #211b78;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.projects-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #c90b1e;
    transform: scale(1.15);
}

.projects-slider.owl-theme .owl-dots .owl-dot.active span {
    width: 16px;
    border-radius: 50%;
    background: #e1061a;
    box-shadow: none;
}

/* =========================================
   Facts Section
   ========================================= */
.facts-section {
    margin-top: 18px;
    position: relative;
    z-index: 5;
}




.facts-box {
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 34px rgba(58, 25, 94, 0.14);
    background: url(../img/some-facts-about-us-bg.png), linear-gradient(91.21deg, #1B1668 0%, #C40B1C 99.89%);
    /* background:
        url(../img/some-facts-about-us-bg.jpg),
        linear-gradient(105deg, #211b78 0%, #5b176d 30%, #b30c28 68%, #e11120 100%); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-blend-mode: soft-light, normal; */
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    min-height: 96px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    padding: 0 25px 0 0;
}

.facts-grid .counter-box:last-child {
    border-right: 0;
    padding-right: 0px;
}

.counter-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.counter-icon i {
    font-size: 24px;
    color: var(--orange);
}

.counter-number {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    text-align: left;
    line-height: normal;
    padding-bottom: 2px;
}

.counter-label {
    color: rgba(255, 255, 255);
    font-size: 16px;
    line-height: 1.4;
    text-transform: none;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* =========================================
   Latest Job Vacancies Section
   ========================================= */

.latest-jobs-section {
    overflow: hidden;
    background: #ffffff;
}

.latest-jobs-layout {
    display: grid;
    grid-template-columns: 41.2% 58.8%;
    min-height: 712px;
}

.latest-jobs-image {
    min-height: 712px;
}

.latest-jobs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.latest-jobs-content {
    padding: 60px 7.1% 30px 8.6%;
    background: url(../img/bg-job-vacancies-bg.png) repeat;
}

.latest-jobs-content .section-title {
    /* margin-bottom: 20px;
    color: #151515;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15; */
}

.job-vacancies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 20px;
}

.job-vacancy-card {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 17px;
    min-height: 142px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(199, 11, 30, 0.34);
    border-radius: 5px;
}

.job-vacancy-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3FA;
    border-radius: 5px;
}

.job-vacancy-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.job-vacancy-info h3 {
    margin: 0 0 9px;
    color: #202020;
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.job-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5b5b5b;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1;
}

.job-meta img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 30px;
    padding: 5px 15px;
    background: #d10a17;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.job-apply-btn:hover {
    background: #211b78;
    color: #ffffff;
}

.latest-jobs-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    margin-top: 30px;
    padding: 11px 23px;
    background: linear-gradient(90deg, #d10a17 0%, #211b78 100%);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
}

.latest-jobs-view-btn:hover {
    background: linear-gradient(90deg, #211b78 0%, #d10a17 100%);
    color: #ffffff;
}

@media (max-width: 1500px) {
    .latest-jobs-content {
        padding: 52px 5.5% 30px 6.5%;
    }

    .latest-jobs-content .section-title {
        font-size: 2.65rem;
    }

    .job-vacancy-card {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 14px;
        padding: 17px 16px;
    }

    .job-vacancy-icon {
        width: 60px;
        height: 60px;
    }

    .job-vacancy-info h3 {
        font-size: 1.02rem;
    }

    .job-meta {
        gap: 10px;
    }

    .job-meta span {
        font-size: 0.84rem;
    }
}

@media (max-width: 1200px) {
    .latest-jobs-layout {
        grid-template-columns: 1fr;
    }

    .latest-jobs-image {
        min-height: 420px;
    }

    .latest-jobs-content {
        padding: 48px 24px 54px;
    }
}

@media (max-width: 768px) {

    .latest-jobs-image {
        min-height: 320px;
    }

    .latest-jobs-content .section-title {
        font-size: 2rem;
    }

    .job-vacancies-grid {
        grid-template-columns: 1fr;
    }

    .latest-jobs-view-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .latest-jobs-content {
        padding: 38px 16px 44px;
    }

    .job-vacancy-card {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
    }

    .job-vacancy-icon {
        width: 52px;
        height: 52px;
    }

    .job-vacancy-icon img {
        width: 34px;
        height: 34px;
    }
}

/* =========================================
   Vacancies Page
   ========================================= */
.vacancies-page-section {
    background: #fff;
}

.vacancies-page-header {
    /* max-width: 930px; */
    margin: 0 auto 42px;
}

.vacancies-page-header p {
    /* max-width: 850px; */
    margin: 0 auto;
    color: #4d4d4d;
    font-size: 1.08rem;
    line-height: 1.8;
}

.vacancies-page-layout {
    width: 100%;
}

.vacancies-page-list {
    width: 100%;
}

.vacancies-page-list .job-vacancies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.vacancies-page-list .job-vacancy-card {
    align-items: flex-start;
    min-height: 150px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid rgba(199, 11, 30, 0.36);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vacancies-page-list .job-vacancy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 27, 120, 0.34);
    box-shadow: 0 16px 34px rgba(18, 16, 64, 0.1);
}

.vacancies-page-list .job-vacancy-icon {
    margin-top: 2px;
}

.vacancies-page-list .job-location {
    align-items: flex-start;
    line-height: 1.45;
}

.vacancies-page-list .job-location img {
    flex: 0 0 18px;
    margin-top: 1px;
}

.vacancies-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
}

.pagination-btn,
.pagination-dots {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(33, 27, 120, 0.18);
    border-radius: 6px;
    background: #ffffff;
    color: #211b78;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(90deg, #CC0917 0%, #1E2383 100%);
    border-color: transparent;
    color: #ffffff;
}

.pagination-arrow {
    font-size: 0.95rem;
}

.pagination-dots {
    border-color: transparent;
    color: #686868;
    background: transparent;
}

@media (max-width: 991px) {
    .vacancies-page-list .job-vacancies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vacancies-page-header {
        margin-bottom: 28px;
    }

    .vacancies-page-header p {
        font-size: 1rem;
    }

    .vacancies-page-list .job-vacancy-card {
        padding: 20px;
    }

    .vacancies-pagination {
        margin-top: 30px;
    }
}

@media (max-width: 479px) {
    .vacancies-page-list .job-vacancy-card {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 14px;
    }

    .pagination-btn,
    .pagination-dots {
        width: 38px;
        height: 38px;
        font-size: 0.92rem;
    }
}

/* =========================================
   Job Details Page
   ========================================= */
.job-details-section {
    background: #eef1f6;
}

.job-detail-card,
.job-content-card {
    overflow: hidden;
    margin-bottom: 24px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 120, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(18, 16, 64, 0.06);
}

.job-detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid #edf0f5;
}

.job-detail-title-row h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--primary-blue);
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.job-detail-title-row h2 i {
    color: var(--red);
    font-size: 1rem;
}

.job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.98rem;
    font-weight: 700;
}

.job-back-link:hover {
    color: var(--red);
}

.job-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 70px;
    padding: 6px 24px 28px;
}

.job-detail-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-height: 46px;
    padding-top: 18px;
    color: #2d3440;
    font-size: 1rem;
    line-height: 1.55;
}

.job-detail-meta-item strong {
    flex: 0 0 auto;
    color: #1f2530;
    font-weight: 800;
}

.job-detail-location {
    display: inline-flex;
    padding: 3px 9px;
    background: #f3f3fa;
    border-radius: 4px;
    color: #211b78;
    font-weight: 700;
}

.job-posted-strip {
    display: flex;
    gap: 6px;
    padding: 16px 24px;
    background: #f2f2fb;
    border-left: 4px solid var(--red);
    color: var(--primary-blue);
    font-size: 1rem;
}

.job-posted-strip strong {
    color: var(--red);
}

.job-content-card {
    padding: 28px 28px 30px;
}

.job-content-card h3,
.job-content-card h4 {
    margin-bottom: 14px;
    color: #1f2530;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.job-content-card h3 {
    font-size: 1.18rem;
}

.job-content-card h4 {
    margin-top: 18px;
    font-size: 1.05rem;
}

.job-content-card p {
    /* color: #333b48; */
    font-size: 1rem;
    line-height: 1.75;
}

.job-detail-list {
    margin: 0 0 16px;
    padding-left: 0;
    list-style: none;
}

.job-detail-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.job-detail-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d10a17;
}

.job-detail-note a {
    color: #211b78;
    font-weight: 800;
}

.key-skills-wrap {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #edf0f5;
}

.key-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.key-skills-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    background: #f7f7fb;
    border: 1px solid rgba(33, 27, 120, 0.08);
    border-radius: 4px;
    color: #222;
    font-size: 0.95rem;
    font-weight: 600;
}

.job-apply-panel {
    padding: 30px 34px 34px;
    background: #f2f2fb;
    border: 1px solid #e1e1f2;
    border-top: 4px solid var(--red);
    border-radius: 8px;
    color: var(--primary-blue);
}

.job-apply-panel h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-blue);
    font-family: "Manrope", sans-serif;
    font-size: 1.85rem;
}

.job-apply-panel h2 i {
    color: var(--red);
}

.job-apply-message {
    margin-bottom: 24px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e1e1f2;
    border-radius: 5px;
    color: #1f2530;
    font-size: 1.05rem;
    line-height: 1.7;
}

.job-apply-actions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.job-apply-actions .btn {
    min-width: 0;
    min-height: 48px;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 7px 16px rgba(22, 20, 111, 0.16);
}

.job-apply-actions .btn:nth-child(n+4) {
    grid-column: auto;
}

.job-apply-action i:first-child {
    font-size: 1.1rem;
}

.job-apply-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 20, 111, 0.22);
}

.job-action-arrow {
    margin-left: 2px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .job-detail-meta-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .job-apply-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .job-apply-actions .btn,
    .job-apply-actions .btn:nth-child(n+4) {
        grid-column: span 1;
    }

    .job-apply-actions .btn:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .job-apply-actions {
        grid-template-columns: 1fr;
    }

    .job-apply-actions .btn,
    .job-apply-actions .btn:nth-child(n+4),
    .job-apply-actions .btn:last-child {
        grid-column: 1;
    }

    .job-detail-title-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .job-detail-meta-grid {
        padding: 2px 18px 22px;
    }

    .job-detail-meta-item {
        flex-direction: column;
        gap: 2px;
        min-height: 0;
        padding-top: 15px;
    }

    .job-posted-strip,
    .job-content-card,
    .job-apply-panel {
        padding-left: 18px;
        padding-right: 18px;
    }

    .job-apply-panel h2 {
        font-size: 1.45rem;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    position: relative;
    padding: 62px 0 28px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgb(24, 15, 99) 0%, rgba(26, 18, 108, 0.91) 52%, rgba(14, 11, 72, 0.98) 100%), url(../img/footer-bg.jpg);


    /* background: url(../img/footer-bg.jpg), linear-gradient(180deg, #2B217B 1.28%, #120E3D 100%); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 5px solid #d10a17;
}

.footer .container {
    max-width: 1600px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(210px, 0.65fr) minmax(0, 1.35fr);
    gap: 72px;
    margin-bottom: 34px;
}

.footer-logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 30px;
}

.footer-desc {
    max-width: 630px;
    font-size: 18px;
    margin-bottom: 24px;
    padding-right: 0;
    color: #fff;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.social-btn:hover {
    background: #d10a17;
    border-color: #d10a17;
    color: #ffffff;
}

.footer-title {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-title span {
    color: #ff686f;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 18px;
}

.contact-info li a {
    color: #fff;
    font-size: 18px;
}

.footer-links a {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #ffffff;
}

.footer-links a i {
    display: none;
}

.footer-links a:hover {
    color: #ff686f;
}

.footer-links a:hover i {
    transform: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
}

.contact-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    background: linear-gradient(180deg, #141042 0%, #2A2078 100%);
    border: 1px solid #ff686f;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.contact-info a:hover {
    color: #ff686f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.23);
    padding-top: 28px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-bottom p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.footer-bottom a {
    color: #ff686f;
}







.about-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 40px 54px;
    align-items: center;
}

.about-page-media {
    position: relative;
    min-width: 0;
}

.about-page-media-img-div {
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(15, 36, 68, 0.16);
    border: 6px solid #fff;
    overflow: hidden;
}

.about-page-media-img-div img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-page-badge {
    position: absolute;
    right: -22px;
    bottom: 34px;
    width: 240px;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-left: 5px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(15, 36, 68, 0.25);
}

.about-page-badge strong {
    display: block;
    color: var(--light-orange);
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.about-page-badge span {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px;
}

.about-page-copy p {
    /* margin-bottom: 16px;
    line-height: 1.8; */
}

.about-page-copy {
    min-width: 0;
}

.business-partner-card {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 255, 0.96) 100%);
    border: 1px solid rgba(201, 11, 30, 0.18);
    border-left: 5px solid #c90b1e;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(20, 22, 62, 0.08);
}

.business-partner-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.business-partner-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(90deg, #d10a17 0%, #211b78 100%);
    border-radius: 12px;
    font-size: 26px;
}

.business-partner-heading h3 {
    margin: 0;
    color: #151515;
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
}

.business-partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.business-partner-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.business-partner-item i {
    margin-top: 5px;
    color: #c90b1e;
    font-size: 22px;
}

.about-values-section {
    position: relative;
    overflow: hidden;
    background: #f7f8fe;
}

.about-values-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #4d4d4d;
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.about-value-card {
    position: relative;
    /* min-height: 330px; */
    padding: 28px 22px 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(33, 27, 120, 0.08);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(18, 20, 54, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 11, 30, 0.24);
    box-shadow: 0 22px 44px rgba(18, 20, 54, 0.14);
}

.about-value-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #d10a17 0%, #211b78 100%);
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-value-number {
    position: absolute;
    top: 24px;
    right: 22px;
    color: rgba(33, 27, 120, 0.1);
    font-family: "Golos Text", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.about-value-card h5 {
    color: #151515;
    font-size: 1.28rem;
    margin-bottom: 14px;
    line-height: 1.25;
}

.about-value-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.about-value-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 20px;
    color: #222;
    font-size: 0.96rem;
    line-height: 1.55;
    font-weight: 500;
}

.about-value-card li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #c90b1e;
    border-radius: 50%;
}

.about-strength-card {
    margin-top: 32px;
    padding: 30px 34px;
    display: grid;
    /* grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr); */
    /* gap: 28px; */
    align-items: center;
    color: #ffffff;
    background: linear-gradient(100deg, #211b78 0%, #6c145f 45%, #d10a17 100%);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(33, 27, 120, 0.2);
}

/* .about-strength-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-strength-heading span {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d10a17;
    background: #ffffff;
    border-radius: 16px;
    font-size: 1.7rem;
    font-weight: 900;
}

.about-strength-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.3;
} */

.about-strength-card p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

.mission-vision-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 255, 0.98)),
        url(../img/industries-counter-section-bg.jpg);
    background-size: cover;
    background-position: center;
}

.mission-vision-header {
    max-width: 900px;
    margin: 0 auto 38px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.mission-vision-card {
    position: relative;

    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(33, 27, 120, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 46px rgba(18, 20, 54, 0.1);
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #d10a17 0%, #211b78 100%);
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 170px;
    height: 170px;
    background: rgba(33, 27, 120, 0.06);
    border-radius: 50%;
}

.vision-card::before {
    background: linear-gradient(180deg, #211b78 0%, #d10a17 100%);
}

.mission-vision-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #d10a17 0%, #211b78 100%);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.mission-vision-label {
    color: #c90b1e;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.mission-vision-card h3 {
    color: #151515;
    font-size: 1.55rem;
    line-height: 1.35;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mission-vision-card p {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}








/* MEDIA CSS START */

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1599px) {
    .header {
        margin: 20px 15px;
        padding: 0;
    }

    .logo img {
        max-width: 200px;
    }

    .nav-list {
        gap: 30px;
    }

    .nav-list>li>a {
        padding: 8px 0px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .header-action .btn {
        padding: 10px 20px;
    }
}


@media (max-width: 1199px) {
    .logo img {
        max-width: 200px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-list>li>a {
        padding: 8px 0px;
        font-size: 18px;

    }
}


@media (min-width: 992px) and (max-width: 1450px) {
    .contact-page-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px;
    }

    .contact-method-list {
        gap: 14px;
    }

    .contact-method-card {
        gap: 12px;
        padding: 18px;
    }

    .contact-method-card i {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 16px;
    }

    .contact-method-card h5 {
        font-size: 18px;
    }

    .contact-method-card p,
    .contact-method-card a {
        font-size: 14px;
    }

    .contact-form-panel {
        padding: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact-method-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }

    .services-section .section-title {
        font-size: 2.7rem;
    }

    .service-card {
        min-height: 360px;
    }

    .service-card .service-img {
        height: 260px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 0.7fr;
        gap: 42px;
    }

    .footer-contact-col {
        grid-column: 1 / -1;
    }

    .footer-desc {
        font-size: 1.05rem;
    }

    .contact-info li a {
        font-size: 1.25rem;
    }

    .counter-box {
        gap: 10px;
        padding: 10px;
        flex-direction: column;
    }

    .counter-icon {
        width: 70px;
        height: 70px;
        border-radius: 5px;
        padding: 10px;
    }

    .counter-number {
        font-size: 2rem;
        margin-bottom: 0;
        text-align: center;
    }

    .counter-label {
        font-size: 16px;
    }

}

@media (max-width: 991px) {

    .logo img {
        max-width: 150px;
    }

    .header-container {
        width: 100%;
    }

    /* .grid-2-col,
    .grid-3-col,
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    } */

    .grid-2-col,
    .grid-3-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 520px;
        min-height: 470px;
        padding: 0 0 24px 54px;
        margin: 0 auto;
    }

    .p-left {
        padding-left: 0;
        margin-top: 30px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        padding: 80px 20px 30px;
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-list>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
    }

    .dropdown-icon,
    .sub-dropdown-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin: -8px 0 -8px 10px;
        border-radius: 50%;
        background: rgba(212, 133, 59, 0.12);
        color: var(--orange);
        cursor: pointer;
    }

    .header-action {
        display: none;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
        border-radius: 0;
    }

    /* Remove hover - use click only on mobile */
    .has-dropdown:hover .dropdown {
        display: none;
    }

    .has-dropdown.active>.dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sub-dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
        min-width: auto;
    }

    /* Remove hover - use click only on mobile */
    .has-sub-dropdown:hover>.sub-dropdown {
        display: none;
    }

    .has-sub-dropdown.active>.sub-dropdown {
        display: block;
    }

    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Mobile close button inside nav */
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
        background: #f0f0f0;
    }

    .inner-hero {
        padding: 150px 0 58px;
    }

    .about-images {
        max-width: 640px;
        min-height: 560px;
        padding-left: 90px;
    }

    .about-images .experience-card {
        top: 38px;
        width: 230px;
        min-height: 150px;
        padding: 22px;
    }

    .about-images .experience-card strong {
        font-size: 64px;
    }

    .about-images .experience-card span {
        font-size: 21px;
    }

    .about-images .floating-img {
        width: 40%;
        bottom: 22px;
        border-width: 5px;
        border-radius: 22px;
    }

    .facts-box {
        padding: 30px;
    }

    .hero-slide {
        padding: 120px 0 100px;
    }

    .service-card .card-title {
        font-size: 18px;
    }

    .nav-list {
        gap: 0;
    }

}

@media (max-width: 768px) {

    .grid-2-col,
    .grid-3-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }



    .badge,
    .badge-bg {
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 14px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: normal;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .business-partner-list {
        grid-template-columns: 1fr;
    }

    .business-partner-card {
        padding: 22px 18px;
    }

    .business-partner-heading {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 44px 0 24px;
    }

    .footer-contact-col {
        grid-column: auto;
    }

    .footer-logo {
        width: 280px;
    }

    .footer-title {
        font-size: 1.55rem;
        margin-bottom: 18px;
    }

    .footer-links a,
    .contact-info li {
        font-size: 1rem;
    }

    .contact-info li a {
        font-size: 1.08rem;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .contact-icon img {
        width: 28px;
        height: 28px;
    }

    .facts-box {
        text-align: center;
    }

    .counter-box {
        flex-direction: column;
        gap: 10px;
    }

    .about-images {
        max-width: 520px;
        min-height: 470px;
        padding: 0 0 24px 54px;
        margin: 0 auto;
    }

    .about-images .experience-card {
        top: 28px;
        width: 180px;
        min-height: 118px;
        padding: 16px;
        border-radius: 14px;
    }

    .about-images .experience-card strong {
        font-size: 50px;
    }

    .about-images .experience-card span {
        font-size: 17px;
        margin-top: 8px;
    }

    .about-images .floating-img {
        width: 42%;
        border-width: 4px;
        border-radius: 18px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .services-section {
        padding: 64px 0;
    }

    .services-section .section-title {
        font-size: 2.35rem;
    }

    .services-slider {
        padding-bottom: 48px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .services-slider .service-card,
    .services-page-card {
        padding: 16px 16px 18px;
    }

    .service-card .service-img,
    .services-page-img {
        height: 240px;
    }

    .service-card .icon-box,
    .services-page-icon {
        right: 16px;
        bottom: 72px;
        width: 68px;
        height: 68px;
    }

    .service-card .icon-box img,
    .services-page-icon img {
        width: 38px;
        height: 38px;
    }

    .service-card .card-title,
    .services-page-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 575px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 390px;
        padding-left: 34px;
    }

    .about-images .experience-card {
        top: 18px;
        width: 145px;
        min-height: 96px;
        padding: 12px;
    }

    .about-images .experience-card strong {
        font-size: 40px;
    }

    .about-images .experience-card span {
        font-size: 14px;
        margin-top: 6px;
    }

    .about-images .floating-img {
        bottom: 18px;
        width: 44%;
        border-width: 3px;
        border-radius: 14px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 30px;
    }
}

/* =========================================
   Hero Slider Responsive Refinements
   ========================================= */
@media (max-width: 1450px) {
    .hero-slider-section {
        min-height: 850px;
    }

    .hero-slide {
        min-height: 850px;
        padding: 180px 0 115px;
    }

    .hero-title {
        font-size: 3.7rem;
    }

    .hero-content .badge {
        min-height: 54px;
        font-size: 1.2rem;
    }

    .hero-desc {
        font-size: 1.18rem;
    }

    .hero-visual {
        min-height: 535px;
    }

    .hero-people-card {
        height: 495px;
    }

    .hero-map-card {
        left: -88px;
        bottom: -44px;
        width: 225px;
        height: 245px;
    }

    .section-title {
        font-size: 2.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 1200px) {
    .hero-slide-grid {
        gap: 34px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        flex-basis: 50%;
    }

    .hero-visual {
        flex-basis: 46%;
        min-height: 470px;
    }

    .hero-people-card {
        height: 430px;
    }

    .hero-map-card {
        left: -50px;
        width: 190px;
        height: 205px;
        border-radius: 20px;
    }
}

@media (max-width: 991px) {
    .hero-slider-section {
        min-height: auto;
    }

    .hero-slide {
        min-height: auto;
        padding: 145px 0 95px;
    }

    .hero-slide-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        flex-basis: auto;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3.15rem;
    }

    .hero-desc {
        max-width: 680px;
    }

    .hero-visual {
        flex-basis: auto;
        width: 100%;
        min-height: 520px;
        margin-top: 8px;
    }

    .hero-people-card {
        width: 82%;
        height: 480px;
        right: 0;
    }

    .hero-map-card {
        left: 6%;
        bottom: -18px;
        width: 230px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 145px 0 95px;
    }

    .hero-slide::after {
        width: 340px;
        height: 42%;
        right: -145px;
    }

    .hero-content .badge {
        min-height: 0;
        padding: 11px 18px;
        font-size: 1rem;
        text-align: left;
    }

    .hero-title {
        font-size: 2.55rem;
        line-height: 1.22;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-content .btn {
        min-height: 48px;
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-people-card {
        width: 92%;
        height: 350px;
        border-top-right-radius: 34px;
    }

    .hero-map-card {
        width: 160px;
        height: 172px;
        left: 0;
        bottom: 0;
        border-radius: 18px;
    }

    .hero-slider.owl-theme .owl-dots {
        bottom: 34px;
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 2.15rem;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero-visual {
        min-height: 310px;
    }

    .hero-people-card {
        width: 100%;
        height: 280px;
    }

    .hero-map-card {
        width: 125px;
        height: 136px;
    }
}

/* =========================================
   Inner Pages Responsive Refinements
   ========================================= */
@media (max-width: 1200px) {
    .inner-hero {
        padding: 150px 0 80px;
    }

    .inner-hero-title {
        font-size: 2.6rem;
    }



}

@media (max-width: 991px) {
    .section {
        padding: 50px 0;
    }

    .inner-hero {
        padding: 135px 0 70px;
    }

    .inner-hero-title {
        font-size: 2.25rem;
    }

    .breadcrumbs {
        flex-wrap: wrap;
        row-gap: 6px;
        line-height: 1.5;
    }

    .cta-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 42px 0;
    }

    .inner-hero {
        padding: 150px 0 58px;
    }

    .inner-hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .breadcrumbs {
        gap: 7px;
        font-size: 13px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }



    .facts-box {
        padding: 28px 18px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-section {
        padding: 42px 16px;
    }

    .cta-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 479px) {
    .inner-hero {
        padding: 150px 0 58px;
    }

    .inner-hero-title {
        font-size: 1.55rem;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .small-title {
        font-size: 1.25rem;
    }

}

/* =========================================
   Industries & Facts Responsive Refinements
   ========================================= */
@media (max-width: 1400px) {
    .projects-section .section-title {
        font-size: 2.75rem;
    }

    .about-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .project-item {
        min-height: 190px;
    }

    .project-item img {
        width: 82px;
        height: 82px;
    }

    .facts-box {
        padding: 58px 34px;
    }

    .facts-section .counter-box {
        gap: 18px;
        padding-right: 18px;
        flex-direction: row;
    }

    .facts-section .counter-icon {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
        padding: 0;
        border-radius: 0;
    }

    .facts-section .counter-number {
        font-size: 2.35rem;
        text-align: left;
    }

    .facts-section .counter-label {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .projects-section {
        padding: 64px 0;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-strength-card {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-card {
        min-height: auto;
    }

    .projects-section .section-title {
        font-size: 2.25rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .facts-section .counter-box {
        border-right: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .projects-section .section-title {
        font-size: 1.95rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-strength-card {
        padding: 24px 20px;
    }

    .about-strength-heading {
        align-items: flex-start;
    }

    .mission-vision-header {
        margin-bottom: 26px;
    }

    .mission-vision-card {
        padding: 30px 24px;
    }

    .mission-vision-card h3 {
        font-size: 1.28rem;
    }

    .mission-vision-card p {
        font-size: 1rem;
    }

    .project-item {
        min-height: 175px;
    }

    .facts-box {
        padding: 34px 24px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .facts-section .counter-box {
        justify-content: flex-start;
    }
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #15325c 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(200, 121, 49, 0.08);
    border-radius: 50%;
}

.cta-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 2;
}

.cta-btn-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 42px 16px;
    }

    .cta-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================
   About Intro Responsive Refinements
   ========================================= */
@media (max-width: 1200px) {
    .about-page-grid {
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
        gap: 34px;
    }

    .about-page-media-img-div img {
        height: 430px;
    }

    .about-page-badge {
        right: -10px;
        bottom: 22px;
        width: 205px;
        padding: 18px;
    }

    .about-page-badge strong {
        font-size: 38px;
    }

    .about-page-badge span {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-page-media {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }

    .about-page-copy {
        text-align: left;
    }

    .business-partner-card {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .about-page-intro {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .about-page-media-img-div {
        border-width: 4px;
        border-radius: 16px;
    }

    .about-page-media-img-div img {
        height: 350px;
    }

    .about-page-badge {
        right: 12px;
        bottom: 12px;
        width: 170px;
        padding: 14px;
        border-left-width: 4px;
    }

    .about-page-badge strong {
        font-size: 32px;
    }

    .about-page-badge span {
        font-size: 14px;
        line-height: 1.3;
    }

    .about-page-copy p {
        font-size: 16px;
        line-height: 1.75;
        text-align: left;
    }

    .business-partner-card {
        padding: 18px;
        border-left-width: 4px;
    }

    .business-partner-heading h3 {
        font-size: 1.2rem;
    }

    .business-partner-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 22px;
    }

    .business-partner-item {
        font-size: 16px;
    }

    .business-partner-item i {
        font-size: 18px;
    }
}

@media (max-width: 479px) {
    .about-page-grid {
        gap: 22px;
    }

    .about-page-media-img-div img {
        height: 280px;
    }

    .about-page-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-page-badge strong {
        flex: 0 0 auto;
        font-size: 34px;
        text-align: left;
    }

    .about-page-badge span {
        margin-top: 0;
        font-size: 15px;
    }

    .business-partner-heading {
        flex-direction: column;
        gap: 10px;
    }

    .business-partner-list {
        gap: 12px;
    }
}











/* Contact Us Page */
.contact-hero {
    background-position: center 42%;
}

.contact-hero::before {
    background: linear-gradient(90deg, rgba(18, 14, 61, .94), rgba(31, 24, 112, .72));
}

.contact-page-section {
    background: linear-gradient(180deg, #f7f7fc 0%, #fff 100%);
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 48px;
}

.contact-intro .section-title {
    margin: 14px 0 14px;
}

.contact-intro p {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 38px;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
    border-radius: 20px;
}

.contact-info-panel {
    padding: 38px;
    color: #fff;
    background: linear-gradient(145deg, #17105f 0%, #2b2388 100%);
    box-shadow: 0 20px 50px rgba(27, 20, 104, .18);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    right: -110px;
    bottom: -110px;
    border: 42px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    pointer-events: none;
}

.contact-eyebrow {
    display: block;
    color: #d20a25;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-panel .contact-eyebrow {
    color: #ff8797;
}

.contact-info-panel h3,
.contact-form-panel h3 {
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    margin-bottom: 12px;
}

.contact-panel-copy,
.contact-form-panel>p {
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact-panel-copy {
    color: rgba(255, 255, 255, .76);
}

.contact-form-panel>p {
    color: #697080;
}

.contact-method-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.contact-method-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-width: 0;
    padding: 20px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    transition: transform .25s ease, background .25s ease;
}

.contact-method-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .13);
}

.contact-method-card>i {
    display: inline-flex;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #d20a25, #a5071c);
    border-radius: 12px;
}

.contact-method-card h5 {
    color: #fff;
    font-size: 1rem;
    margin: 1px 0 6px;
}

.contact-method-card p,
.contact-method-card a {
    color: rgba(255, 255, 255, .74);
    font-size: .88rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.contact-method-card a:hover {
    color: #fff;
}

.contact-form-panel {
    padding: 38px;
    background: #fff;
    border: 1px solid #e6e6f1;
    box-shadow: 0 20px 50px rgba(31, 24, 112, .09);
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    color: #25233d;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form label span {
    color: #cc0921;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    color: #25233d;
    background: #fafaff;
    border: 1px solid #dcdcea;
    border-radius: 9px;
    padding: 13px 14px;
    font: inherit;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: #2b2388;
    box-shadow: 0 0 0 3px rgba(43, 35, 136, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9699a8;
}

.contact-submit {
    border: 0;
    cursor: pointer;
    min-width: 178px;
    gap: 10px;
}

.contact-privacy {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #858896;
    font-size: .77rem;
    margin-top: 14px;
}

.contact-map-section {
    height: 430px;
    position: relative;
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.75);
}

.contact-map-overlay-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.contact-map-card {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(390px, 100%);
    margin-bottom: 28px;
    padding: 20px 22px;
    color: #fff;
    background: rgba(24, 16, 95, .95);
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .2);
    pointer-events: auto;
}

.contact-map-card>i {
    color: #ff5167;
    font-size: 28px;
}

.contact-map-card span,
.contact-map-card strong {
    display: block;
}

.contact-map-card span {
    color: #c9c7e3;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-map-card strong {
    margin: 3px 0 7px;
}

.contact-map-card a {
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
}

.contact-map-card a i {
    margin-left: 5px;
    font-size: .72rem;
}

@media (max-width: 991px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .contact-intro {
        margin-bottom: 36px;
    }
}

@media (max-width: 575px) {
    .contact-page-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .contact-method-list,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 23px 18px;
        border-radius: 14px;
    }

    .contact-method-card {
        padding: 16px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-map-section {
        height: 390px;
    }

    .contact-map-overlay-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-map-card {
        margin-bottom: 18px;
    }
}

/* Contact page: overview row and dual recruitment forms */
.contact-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.35fr) minmax(300px, .65fr);
    gap: 24px;
    align-items: stretch;
}

.contact-info-wide {
    padding: 30px;
    border-radius: 18px;
}

.contact-info-wide h3 {
    margin-bottom: 22px;
}

.contact-method-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.contact-method-row .contact-method-card {
    display: block;
    padding: 16px 12px;
    min-height: 178px;
}

.contact-method-row .contact-method-card>i {
    width: 40px;
    height: 40px;
    margin-bottom: 13px;
    font-size: 15px;
}

.contact-method-row .contact-method-card h5 {
    font-size: .9rem;
    margin-bottom: 7px;
}

.contact-method-row .contact-method-card p,
.contact-method-row .contact-method-card a {
    font-size: .75rem;
    line-height: 1.55;
}

.contact-map-panel {
    min-height: 292px;
    position: relative;
    overflow: hidden;
    background: #e9e9f2;
    border: 1px solid #e0e0eb;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(31, 24, 112, .09);
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 292px;
    border: 0;
    filter: saturate(.75);
}

.contact-directions {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    color: #fff;
    background: linear-gradient(90deg, #d10a17, #211b78);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(24, 16, 95, .25);
    font-size: .82rem;
    font-weight: 700;
}

.contact-directions:hover {
    color: #fff;
    transform: translateY(-2px);
}

.contact-forms-heading {
    max-width: 720px;
    margin: 70px auto 34px;
}

.contact-forms-heading .section-title {
    margin: 12px 0 10px;
}

.contact-forms-heading p {
    color: #697080;
}

.dual-contact-forms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.enquiry-form-panel {
    padding: 30px;
    border-top: 4px solid #d10a17;
    border-radius: 18px;
}

.candidate-form-panel {
    border-top-color: #211b78;
}

.enquiry-form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 112px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid #ececf3;
}

.enquiry-form-icon {
    display: inline-flex;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #d10a17, #211b78);
    border-radius: 13px;
    font-size: 20px;
}

.enquiry-form-header h3 {
    margin: 1px 0 5px;
    font-size: 1.45rem;
}

.enquiry-form-header p {
    color: #222;
    font-size: 0.90rem;
    line-height: 1.55;
    margin: 0;
}

.enquiry-form-panel .contact-form-row {
    gap: 14px;
}

.enquiry-form-panel .contact-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form-panel .contact-form input,
.enquiry-form-panel .contact-form select,
.enquiry-form-panel .contact-form textarea {
    padding: 11px 12px;
    font-size: .85rem;
}

.enquiry-form-panel .contact-form textarea {
    min-height: 122px;
}

@media (max-width: 1399px) {
    .contact-overview-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 320px;
    }

    .contact-method-row .contact-method-card {
        min-height: 165px;
    }
}

@media (max-width: 1199px) {
    .contact-method-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-method-row .contact-method-card {
        min-height: 150px;
    }

    .dual-contact-forms {
        grid-template-columns: 1fr;
    }

    .enquiry-form-header {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .contact-method-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-wide,
    .enquiry-form-panel {
        padding: 22px 18px;
    }

    .contact-forms-heading {
        margin-top: 50px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 479px) {
    .contact-method-row {
        grid-template-columns: 1fr;
    }

    .contact-method-row .contact-method-card {
        min-height: 0;
        display: flex;
    }

    .contact-method-row .contact-method-card>i {
        flex: 0 0 40px;
        margin-bottom: 0;
    }

    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 280px;
    }

    .enquiry-form-header {
        display: block;
    }

    .enquiry-form-icon {
        margin-bottom: 14px;
    }
}

/* Contact overview: equal desktop columns */
.contact-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-info-wide {
    padding: 24px;
}

.contact-method-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

.contact-method-row .contact-method-card {
    padding: 13px 8px;
    min-height: 182px;
}

.contact-method-row .contact-method-card>i {
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    font-size: 13px;
}

.contact-method-row .contact-method-card h5 {
    font-size: .78rem;
    margin-bottom: 6px;
}

.contact-method-row .contact-method-card p,
.contact-method-row .contact-method-card a {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .contact-overview-grid {
        grid-template-columns: 1fr;
    }

    .contact-method-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .contact-method-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .contact-method-row {
        grid-template-columns: 1fr;
    }

    .contact-method-row .contact-method-card {
        min-height: 0;
        padding: 16px;
    }

    .contact-method-row .contact-method-card>i {
        width: 40px;
        height: 40px;
    }

    .contact-method-row .contact-method-card h5 {
        font-size: .9rem;
    }

    .contact-method-row .contact-method-card p,
    .contact-method-row .contact-method-card a {
        font-size: .78rem;
    }
}

/* Keep all five Reach Our Team cards in one row on tablet and desktop */
@media (min-width: 768px) {
    .contact-method-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Reach Our Team: stacked reference cards */
.contact-info-wide {
    color: #10294c;
    background: #f4f6f9;
    box-shadow: 0 20px 50px rgba(16, 41, 76, .08)
}

.contact-info-wide::after {
    display: none
}

.contact-info-panel .contact-eyebrow {
    color: #d10a17
}

.contact-info-wide h3 {
    color: #10294c
}

.contact-method-row {
    grid-template-columns: 1fr;
    gap: 14px
}

.contact-method-row .contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 17px 20px;
    color: #10294c;
    background: #fff;
    border: 0;
    border-left: 4px solid #d10a17;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(16, 41, 76, .07)
}

.contact-method-row .contact-method-card:hover {
    background: #fff;
    transform: translateX(3px);
    box-shadow: 0 12px 26px rgba(16, 41, 76, .11)
}

.contact-method-row .contact-method-card>i {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin: 0;
    color: #fff;
    background: #10294c;
    border-radius: 50%;
    font-size: 17px
}

.contact-method-row .contact-method-card h5 {
    color: #10294c;
    font-size: 1rem;
    margin: 0 0 5px
}

.contact-method-card p,
.contact-method-card a {
    color: #303b4c;
    font-size: .84rem;
    line-height: 1.5
}

.contact-method-row .contact-method-card a:hover {
    color: #d10a17
}

@media(max-width:575px) {
    .contact-method-row .contact-method-card {
        min-height: 88px;
        padding: 15px
    }

    .contact-method-row .contact-method-card>i {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 15px
    }
}

/* Restore original brand colors for stacked contact cards */
.contact-info-wide {
    color: #fff;
    background: linear-gradient(145deg, #17105f 0%, #2b2388 100%);
    box-shadow: 0 20px 50px rgba(27, 20, 104, .18)
}

.contact-info-wide::after {
    display: block
}

.contact-info-panel .contact-eyebrow {
    color: #ff8797
}

.contact-info-wide h3 {
    color: #fff
}

.contact-method-row .contact-method-card {
    color: #fff;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .13);
    border-left: 4px solid #d10a25;
    box-shadow: none
}

.contact-method-row .contact-method-card:hover {
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 10px 24px rgba(10, 6, 55, .18)
}

.contact-method-row .contact-method-card>i {
    color: #fff;
    background: linear-gradient(135deg, #d20a25, #a5071c)
}

.contact-method-row .contact-method-card h5 {
    color: #fff
}

.contact-method-card p,
.contact-method-card a {
    color: rgb(255, 255, 255)
}

.contact-method-row .contact-method-card a:hover {
    color: #fff
}

.contact-method-card p {
    margin-bottom: 0;
}